From 9fd71476dfa01b1ab406ba90858017ef67fd5bd8 Mon Sep 17 00:00:00 2001 From: marvim Date: Sun, 11 Feb 2024 05:14:16 +0000 Subject: [PATCH] deps src: Automatic update --- .../download-treesitter-bash.cmake | 34 +- .../extract-treesitter-bash.cmake | 2 +- .../treesitter-bash-urlinfo.txt | 4 +- .../.github/workflows/pack.yml | 5 +- src/treesitter-bash/Cargo.toml | 7 +- src/treesitter-bash/binding.gyp | 4 +- src/treesitter-bash/bindings/rust/README.md | 2 +- src/treesitter-bash/grammar.js | 52 +- src/treesitter-bash/package.json | 21 +- src/treesitter-bash/script/parse-examples | 33 +- src/treesitter-bash/src/grammar.json | 216 +- src/treesitter-bash/src/node-types.json | 20 + src/treesitter-bash/src/parser.c | 427497 +++++++++------ src/treesitter-bash/src/scanner.c | 438 +- src/treesitter-bash/src/tree_sitter/parser.h | 10 +- src/treesitter-bash/test/corpus/commands.txt | 25 +- src/treesitter-bash/test/corpus/literals.txt | 42 +- .../test/corpus/statements.txt | 57 +- 18 files changed, 248095 insertions(+), 180374 deletions(-) diff --git a/src/treesitter-bash-stamp/download-treesitter-bash.cmake b/src/treesitter-bash-stamp/download-treesitter-bash.cmake index 1dc816fa1..e5454097a 100644 --- a/src/treesitter-bash-stamp/download-treesitter-bash.cmake +++ b/src/treesitter-bash-stamp/download-treesitter-bash.cmake @@ -22,16 +22,16 @@ function(check_file_hash has_hash hash_is_good) set("${has_hash}" TRUE PARENT_SCOPE) message(STATUS "verifying file... - file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz'") + file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz'") - file("SHA256" "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz" actual_value) + file("SHA256" "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz" actual_value) - if(NOT "${actual_value}" STREQUAL "8a86182b9dd66acdce27c1e272247882b5cf910dd8725fbb68a8bf9d808fecba") + if(NOT "${actual_value}" STREQUAL "7bba80ac64a18ec1b3f47e738e6a168f065c3cb4244234eff1b773816008f5a7") set("${hash_is_good}" FALSE PARENT_SCOPE) message(STATUS "SHA256 hash of - /home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz + /home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz does not match expected value - expected: '8a86182b9dd66acdce27c1e272247882b5cf910dd8725fbb68a8bf9d808fecba' + expected: '7bba80ac64a18ec1b3f47e738e6a168f065c3cb4244234eff1b773816008f5a7' actual: '${actual_value}'") else() set("${hash_is_good}" TRUE PARENT_SCOPE) @@ -71,40 +71,40 @@ function(sleep_before_download attempt) execute_process(COMMAND "${CMAKE_COMMAND}" -E sleep "${sleep_seconds}") endfunction() -if("/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz" STREQUAL "") +if("/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz" STREQUAL "") message(FATAL_ERROR "LOCAL can't be empty") endif() -if("https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.4.tar.gz" STREQUAL "") +if("https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.5.tar.gz" STREQUAL "") message(FATAL_ERROR "REMOTE can't be empty") endif() -if(EXISTS "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz") +if(EXISTS "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz") check_file_hash(has_hash hash_is_good) if(has_hash) if(hash_is_good) message(STATUS "File already exists and hash match (skip download): - file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz' - SHA256='8a86182b9dd66acdce27c1e272247882b5cf910dd8725fbb68a8bf9d808fecba'" + file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz' + SHA256='7bba80ac64a18ec1b3f47e738e6a168f065c3cb4244234eff1b773816008f5a7'" ) return() else() message(STATUS "File already exists but hash mismatch. Removing...") - file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz") + file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz") endif() else() message(STATUS "File already exists but no hash specified (use URL_HASH): - file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz' + file='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz' Old file will be removed and new file downloaded from URL." ) - file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz") + file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz") endif() endif() set(retry_number 5) message(STATUS "Downloading... - dst='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz' + dst='/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz' timeout='none' inactivity timeout='none'" ) @@ -115,7 +115,7 @@ foreach(i RANGE ${retry_number}) if(status_code IN_LIST download_retry_codes) sleep_before_download(${i}) endif() - foreach(url https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.4.tar.gz) + foreach(url https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.5.tar.gz) if(NOT url IN_LIST skip_url_list) message(STATUS "Using src='${url}'") @@ -126,7 +126,7 @@ foreach(i RANGE ${retry_number}) file( DOWNLOAD - "${url}" "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz" + "${url}" "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz" # no TIMEOUT # no INACTIVITY_TIMEOUT @@ -143,7 +143,7 @@ foreach(i RANGE ${retry_number}) check_file_hash(has_hash hash_is_good) if(has_hash AND NOT hash_is_good) message(STATUS "Hash mismatch, removing...") - file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz") + file(REMOVE "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz") else() message(STATUS "Downloading... done") return() diff --git a/src/treesitter-bash-stamp/extract-treesitter-bash.cmake b/src/treesitter-bash-stamp/extract-treesitter-bash.cmake index 4b63f79bb..2503b1030 100644 --- a/src/treesitter-bash-stamp/extract-treesitter-bash.cmake +++ b/src/treesitter-bash-stamp/extract-treesitter-bash.cmake @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.5) # Make file names absolute: # -get_filename_component(filename "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.4.tar.gz" ABSOLUTE) +get_filename_component(filename "/home/runner/work/deps/deps/neovim/deps/build/downloads/treesitter-bash/v0.20.5.tar.gz" ABSOLUTE) get_filename_component(directory "/home/runner/work/deps/deps/neovim/deps/build/src/treesitter-bash" ABSOLUTE) message(STATUS "extracting... diff --git a/src/treesitter-bash-stamp/treesitter-bash-urlinfo.txt b/src/treesitter-bash-stamp/treesitter-bash-urlinfo.txt index 38a997808..320bb6b03 100644 --- a/src/treesitter-bash-stamp/treesitter-bash-urlinfo.txt +++ b/src/treesitter-bash-stamp/treesitter-bash-urlinfo.txt @@ -6,7 +6,7 @@ method=url command=/usr/local/bin/cmake;-P;/home/runner/work/deps/deps/neovim/deps/build/src/treesitter-bash-stamp/download-treesitter-bash.cmake;COMMAND;/usr/local/bin/cmake;-P;/home/runner/work/deps/deps/neovim/deps/build/src/treesitter-bash-stamp/verify-treesitter-bash.cmake;COMMAND;/usr/local/bin/cmake;-P;/home/runner/work/deps/deps/neovim/deps/build/src/treesitter-bash-stamp/extract-treesitter-bash.cmake source_dir=/home/runner/work/deps/deps/neovim/deps/build/src/treesitter-bash work_dir=/home/runner/work/deps/deps/neovim/deps/build/src -url(s)=https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.4.tar.gz -hash=SHA256=8a86182b9dd66acdce27c1e272247882b5cf910dd8725fbb68a8bf9d808fecba +url(s)=https://github.com/tree-sitter/tree-sitter-bash/archive/v0.20.5.tar.gz +hash=SHA256=7bba80ac64a18ec1b3f47e738e6a168f065c3cb4244234eff1b773816008f5a7 no_extract= diff --git a/src/treesitter-bash/.github/workflows/pack.yml b/src/treesitter-bash/.github/workflows/pack.yml index 14a9c9b18..e65da6797 100644 --- a/src/treesitter-bash/.github/workflows/pack.yml +++ b/src/treesitter-bash/.github/workflows/pack.yml @@ -1,13 +1,14 @@ name: Pack on: + workflow_dispatch: release: types: - released env: - NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip -u ${{ secrets.GH_TOKEN }} - ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip -u ${{ secrets.GH_TOKEN }} + NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip -u ${{ secrets.GITHUB_TOKEN }} + ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip -u ${{ secrets.GITHUB_TOKEN }} jobs: test: diff --git a/src/treesitter-bash/Cargo.toml b/src/treesitter-bash/Cargo.toml index 284b9e1db..1f7116e6c 100644 --- a/src/treesitter-bash/Cargo.toml +++ b/src/treesitter-bash/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "tree-sitter-bash" description = "Bash grammar for tree-sitter" -version = "0.20.4" -authors = ["Max Brunsfeld ", + "Amaan Qureshi ", +] license = "MIT" readme = "bindings/rust/README.md" keywords = ["incremental", "parsing", "bash"] diff --git a/src/treesitter-bash/binding.gyp b/src/treesitter-bash/binding.gyp index 92d61b3cb..1bd8f54f4 100644 --- a/src/treesitter-bash/binding.gyp +++ b/src/treesitter-bash/binding.gyp @@ -16,7 +16,7 @@ ] } ], - 'variables': { - 'openssl_fips': '', + "variables": { + "openssl_fips": "", } } diff --git a/src/treesitter-bash/bindings/rust/README.md b/src/treesitter-bash/bindings/rust/README.md index b8a3e0133..f9a4f2e5b 100644 --- a/src/treesitter-bash/bindings/rust/README.md +++ b/src/treesitter-bash/bindings/rust/README.md @@ -9,7 +9,7 @@ way.) ```toml [dependencies] tree-sitter = "0.20.10" -tree-sitter-bash = "0.20.4" +tree-sitter-bash = "0.20.5" ``` Typically, you will use the [language][language func] function to add this diff --git a/src/treesitter-bash/grammar.js b/src/treesitter-bash/grammar.js index 29f4fdfba..865fe6223 100644 --- a/src/treesitter-bash/grammar.js +++ b/src/treesitter-bash/grammar.js @@ -68,6 +68,7 @@ module.exports = grammar({ $._special_variable_name, $._c_word, $._statement_not_subshell, + $._redirect, ], externals: $ => [ @@ -97,6 +98,8 @@ module.exports = grammar({ '<<', '<<-', /\n/, + '(', + 'esac', $.__error_recovery, ], @@ -179,7 +182,7 @@ module.exports = grammar({ $.subshell, )), - redirected_statement: $ => prec.dynamic(-1, prec(-1, choice( + redirected_statement: $ => prec.dynamic(-1, prec.right(-1, choice( seq( field('body', $._statement), field('redirect', choice( @@ -193,7 +196,7 @@ module.exports = grammar({ field('body', choice($.if_statement, $.while_statement)), $.herestring_redirect, ), - field('redirect', repeat1($.file_redirect)), + field('redirect', repeat1($._redirect)), $.herestring_redirect, ))), @@ -379,9 +382,11 @@ module.exports = grammar({ choice( $.compound_statement, $.subshell, - $.test_command), + $.test_command, + $.if_statement, + ), ), - field('redirect', optional($.file_redirect)), + field('redirect', optional($._redirect)), )), compound_statement: $ => seq( @@ -425,11 +430,26 @@ module.exports = grammar({ test_command: $ => seq( choice( seq('[', optional(choice($._expression, $.redirected_statement)), ']'), - seq('[[', $._expression, ']]'), + seq( + '[[', + choice( + $._expression, + alias($._test_command_binary_expression, $.binary_expression), + ), + ']]', + ), seq('((', optional($._expression), '))'), ), ), + _test_command_binary_expression: $ => prec(PREC.ASSIGN, + seq( + field('left', $._expression), + field('operator', '='), + field('right', alias($._regex_no_space, $.regex)), + ), + ), + declaration_command: $ => prec.left(seq( choice('declare', 'typeset', 'export', 'readonly', 'local'), repeat(choice( @@ -450,7 +470,7 @@ module.exports = grammar({ command: $ => prec.left(seq( repeat(choice( $.variable_assignment, - field('redirect', choice($.file_redirect, $.herestring_redirect)), + field('redirect', $._redirect), )), field('name', $.command_name), choice( @@ -518,7 +538,7 @@ module.exports = grammar({ optional(choice( alias($._heredoc_pipeline, $.pipeline), seq( - field('redirect', repeat1($.file_redirect)), + field('redirect', repeat1($._redirect)), optional($._heredoc_expression), ), $._heredoc_expression, @@ -566,6 +586,8 @@ module.exports = grammar({ $._literal, )), + _redirect: $ => choice($.file_redirect, $.herestring_redirect), + // Expressions _expression: $ => choice( @@ -828,8 +850,8 @@ module.exports = grammar({ number: $ => choice( /-?(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, - // the base can be an expansion - seq(/-?(0x)?[0-9]+#/, $.expansion), + // the base can be an expansion or command substitution + seq(/-?(0x)?[0-9]+#/, choice($.expansion, $.command_substitution)), ), simple_expansion: $ => seq( @@ -838,6 +860,7 @@ module.exports = grammar({ $._simple_variable_name, $._multiline_variable_name, $._special_variable_name, + $.variable_name, alias('!', $.special_variable_name), alias('#', $.special_variable_name), ), @@ -919,7 +942,13 @@ module.exports = grammar({ _expansion_regex: $ => seq( field('operator', choice('#', alias($._immediate_double_hash, '##'), '%', '%%')), - optional(choice($.regex, alias(')', $.regex), $.string, $.raw_string, alias(/\s+/, $.regex))), + repeat(choice( + $.regex, + alias(')', $.regex), + $.string, + $.raw_string, + alias(/\s+/, $.regex), + )), ), _expansion_regex_replacement: $ => seq( @@ -966,6 +995,7 @@ module.exports = grammar({ )), optional(seq( field('operator', ':'), + optional($.simple_expansion), optional(choice( $._simple_variable_name, $.number, @@ -1019,6 +1049,7 @@ module.exports = grammar({ $.command_substitution, alias($._expansion_word, $.word), $.array, + $.process_substitution, ), repeat1(seq( choice($._concat, alias(/`\s*`/, '``')), @@ -1033,6 +1064,7 @@ module.exports = grammar({ $.command_substitution, alias($._expansion_word, $.word), $.array, + $.process_substitution, ), )), )), diff --git a/src/treesitter-bash/package.json b/src/treesitter-bash/package.json index 6095190ba..da2a9bedb 100644 --- a/src/treesitter-bash/package.json +++ b/src/treesitter-bash/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-bash", - "version": "0.20.4", + "version": "0.20.5", "description": "Bash grammar for tree-sitter", "main": "bindings/node", "keywords": [ @@ -8,7 +8,10 @@ "lexer", "bash" ], - "author": "Max Brunsfeld", + "author": "Max Brunsfeld ", + "contributors": [ + "Amaan Qureshi " + ], "license": "MIT", "dependencies": { "nan": "^2.18.0", @@ -16,10 +19,10 @@ "web-tree-sitter": "^0.20.8" }, "devDependencies": { - "eslint": "^8.50.0", + "eslint": "^8.56.0", "eslint-config-google": "^0.14.0", - "node-gyp": "^9.4.0", - "prebuild": "^12.1.0", + "node-gyp": "^10.0.1", + "prebuild": "^13.0.0", "tree-sitter-cli": "^0.20.8" }, "overrides": { @@ -42,9 +45,15 @@ "tree-sitter": [ { "scope": "source.bash", + "injection-regex": "(shell|bash|sh)", + "first-line-regex": "^#!.*\\b(sh|bash|dash)\\b.*$", "file-types": [ "sh", - "bash" + "bash", + ".bashrc", + ".bash_profile", + "ebuild", + "eclass" ] } ] diff --git a/src/treesitter-bash/script/parse-examples b/src/treesitter-bash/script/parse-examples index 9d9cc2fda..d96242eda 100755 --- a/src/treesitter-bash/script/parse-examples +++ b/src/treesitter-bash/script/parse-examples @@ -13,23 +13,32 @@ function clone_repo() { path=examples/$name if [ ! -d "$path" ]; then echo "Cloning $owner/$name" - git clone "$url" "$path" + if [ "$name" = "gentoo" ]; then + git clone --depth=1 "$url" "$path" + # fetch commits slowly, 20k at a time or until we can checkout the sha + cd "$path" + while ! git checkout "$sha"; do + git fetch --depth=20000 + done + cd - + else + git clone --filter=tree:0 "$url" "$path" + pushd "$path" >/dev/null + actual_sha=$(git rev-parse HEAD) + if [ "$actual_sha" != "$sha" ]; then + echo "Updating $owner/$name to $sha" + git fetch origin "$sha" + fi + popd >/dev/null + fi fi - pushd "$path" >/dev/null - actual_sha=$(git rev-parse HEAD) - if [ "$actual_sha" != "$sha" ]; then - echo "Updating $owner/$name to $sha" - git fetch - git reset --hard "$sha" - fi - popd >/dev/null } -clone_repo Bash-it bash-it https://github.com/Bash-it/bash-it e38696a0acfdb6e4fbeb6963801c417d6ca7e9a7 -clone_repo bash bash https://git.savannah.gnu.org/git/bash.git ec8113b9861375e4e17b3307372569d429dec814 +clone_repo Bash-it bash-it https://github.com/Bash-it/bash-it d985e4c96b1eb4e7374b3ab53eea3513fc9f50ce +clone_repo bash bash https://git.savannah.gnu.org/git/bash.git f3b6bd19457e260b65d11f2712ec3da56cef463f clone_repo oilshell wild-corpus https://github.com/oilshell/wild-corpus a6fe3886095ae03afd528aefe296a169738984bc -clone_repo gentoo gentoo https://anongit.gentoo.org/git/repo/gentoo.git 683eaf8be0351ac263c0b73c9806062647feafe4 +clone_repo gentoo gentoo https://anongit.gentoo.org/git/repo/gentoo.git 5d1f99c854c92dbb61677b776f691eb4c9841267 known_failures="$(cat script/known-failures.txt)" diff --git a/src/treesitter-bash/src/grammar.json b/src/treesitter-bash/src/grammar.json index e7b98df01..15f97c755 100644 --- a/src/treesitter-bash/src/grammar.json +++ b/src/treesitter-bash/src/grammar.json @@ -238,7 +238,7 @@ "type": "PREC_DYNAMIC", "value": -1, "content": { - "type": "PREC", + "type": "PREC_RIGHT", "value": -1, "content": { "type": "CHOICE", @@ -314,7 +314,7 @@ "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "file_redirect" + "name": "_redirect" } } }, @@ -1860,6 +1860,10 @@ { "type": "SYMBOL", "name": "test_command" + }, + { + "type": "SYMBOL", + "name": "if_statement" } ] } @@ -1872,7 +1876,7 @@ "members": [ { "type": "SYMBOL", - "name": "file_redirect" + "name": "_redirect" }, { "type": "BLANK" @@ -2086,8 +2090,22 @@ "value": "[[" }, { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_test_command_binary_expression" + }, + "named": true, + "value": "binary_expression" + } + ] }, { "type": "STRING", @@ -2124,6 +2142,44 @@ } ] }, + "_test_command_binary_expression": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_regex_no_space" + }, + "named": true, + "value": "regex" + } + } + ] + } + }, "declaration_command": { "type": "PREC_LEFT", "value": 0, @@ -2235,17 +2291,8 @@ "type": "FIELD", "name": "redirect", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "SYMBOL", - "name": "herestring_redirect" - } - ] + "type": "SYMBOL", + "name": "_redirect" } } ] @@ -2676,7 +2723,7 @@ "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "file_redirect" + "name": "_redirect" } } }, @@ -2888,6 +2935,19 @@ ] } }, + "_redirect": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "file_redirect" + }, + { + "type": "SYMBOL", + "name": "herestring_redirect" + } + ] + }, "_expression": { "type": "CHOICE", "members": [ @@ -5175,8 +5235,17 @@ "value": "-?(0x)?[0-9]+#" }, { - "type": "SYMBOL", - "name": "expansion" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "command_substitution" + } + ] } ] } @@ -5204,6 +5273,10 @@ "type": "SYMBOL", "name": "_special_variable_name" }, + { + "type": "SYMBOL", + "name": "variable_name" + }, { "type": "ALIAS", "content": { @@ -5721,47 +5794,42 @@ } }, { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": ")" - }, - "named": true, - "value": "regex" - }, - { - "type": "SYMBOL", - "name": "string" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ")" }, - { - "type": "SYMBOL", - "name": "raw_string" + "named": true, + "value": "regex" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\s+" }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\s+" - }, - "named": true, - "value": "regex" - } - ] - }, - { - "type": "BLANK" - } - ] + "named": true, + "value": "regex" + } + ] + } } ] }, @@ -6075,6 +6143,18 @@ "value": ":" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expansion" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -6385,6 +6465,10 @@ { "type": "SYMBOL", "name": "array" + }, + { + "type": "SYMBOL", + "name": "process_substitution" } ] }, @@ -6458,6 +6542,10 @@ { "type": "SYMBOL", "name": "array" + }, + { + "type": "SYMBOL", + "name": "process_substitution" } ] } @@ -7013,6 +7101,14 @@ "type": "PATTERN", "value": "\\n" }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "esac" + }, { "type": "SYMBOL", "name": "__error_recovery" @@ -7028,7 +7124,8 @@ "_multiline_variable_name", "_special_variable_name", "_c_word", - "_statement_not_subshell" + "_statement_not_subshell", + "_redirect" ], "supertypes": [ "_statement", @@ -7036,4 +7133,3 @@ "_primary_expression" ] } - diff --git a/src/treesitter-bash/src/node-types.json b/src/treesitter-bash/src/node-types.json index cb559d91f..4b64c8e33 100644 --- a/src/treesitter-bash/src/node-types.json +++ b/src/treesitter-bash/src/node-types.json @@ -1291,6 +1291,10 @@ "type": "compound_statement", "named": true }, + { + "type": "if_statement", + "named": true + }, { "type": "subshell", "named": true @@ -1318,6 +1322,10 @@ { "type": "file_redirect", "named": true + }, + { + "type": "herestring_redirect", + "named": true } ] } @@ -1399,6 +1407,10 @@ { "type": "file_redirect", "named": true + }, + { + "type": "herestring_redirect", + "named": true } ] }, @@ -1562,6 +1574,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -1744,6 +1760,10 @@ { "type": "heredoc_redirect", "named": true + }, + { + "type": "herestring_redirect", + "named": true } ] } diff --git a/src/treesitter-bash/src/parser.c b/src/treesitter-bash/src/parser.c index a3932e295..d29071892 100644 --- a/src/treesitter-bash/src/parser.c +++ b/src/treesitter-bash/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6164 -#define LARGE_STATE_COUNT 426 -#define SYMBOL_COUNT 278 +#define STATE_COUNT 7671 +#define LARGE_STATE_COUNT 528 +#define SYMBOL_COUNT 280 #define ALIAS_COUNT 0 #define TOKEN_COUNT 175 -#define EXTERNAL_TOKEN_COUNT 27 +#define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 155 +#define PRODUCTION_ID_COUNT 159 enum ts_symbol_identifiers { sym_word = 1, @@ -229,79 +229,81 @@ enum ts_symbol_identifiers { sym_list = 202, sym_negated_command = 203, sym_test_command = 204, - sym_declaration_command = 205, - sym_unset_command = 206, - sym_command = 207, - sym_command_name = 208, - sym_variable_assignment = 209, - sym_variable_assignments = 210, - sym_subscript = 211, - sym_file_redirect = 212, - sym_heredoc_redirect = 213, - sym__heredoc_pipeline = 214, - sym__heredoc_expression = 215, - aux_sym__heredoc_command = 216, - sym__heredoc_body = 217, - sym_heredoc_body = 218, - sym__simple_heredoc_body = 219, - sym_herestring_redirect = 220, - sym__expression = 221, - sym_binary_expression = 222, - sym_ternary_expression = 223, - sym_unary_expression = 224, - sym_postfix_expression = 225, - sym_parenthesized_expression = 226, - sym_arithmetic_expansion = 227, - sym_brace_expression = 228, - sym__arithmetic_expression = 229, - sym__arithmetic_literal = 230, - sym__arithmetic_binary_expression = 231, - sym__arithmetic_ternary_expression = 232, - sym__arithmetic_unary_expression = 233, - sym__arithmetic_postfix_expression = 234, - sym__arithmetic_parenthesized_expression = 235, - sym_concatenation = 236, - sym_string = 237, - sym_translated_string = 238, - sym_array = 239, - sym_number = 240, - sym_simple_expansion = 241, - sym_expansion = 242, - sym__expansion_body = 243, - sym__expansion_expression = 244, - sym__expansion_regex = 245, - sym__expansion_regex_replacement = 246, - sym__expansion_regex_removal = 247, - sym__expansion_max_length = 248, - sym__expansion_max_length_expression = 249, - sym__expansion_max_length_binary_expression = 250, - sym__expansion_operator = 251, - sym__concatenation_in_expansion = 252, - sym_command_substitution = 253, - sym_process_substitution = 254, - sym__extglob_blob = 255, - sym__c_terminator = 256, - aux_sym__statements_repeat1 = 257, - aux_sym_redirected_statement_repeat1 = 258, - aux_sym_redirected_statement_repeat2 = 259, - aux_sym_for_statement_repeat1 = 260, - aux_sym__for_body_repeat1 = 261, - aux_sym_if_statement_repeat1 = 262, - aux_sym_case_statement_repeat1 = 263, - aux_sym_case_item_repeat1 = 264, - aux_sym_pipeline_repeat1 = 265, - aux_sym_declaration_command_repeat1 = 266, - aux_sym_unset_command_repeat1 = 267, - aux_sym_command_repeat1 = 268, - aux_sym_command_repeat2 = 269, - aux_sym_variable_assignments_repeat1 = 270, - aux_sym_heredoc_body_repeat1 = 271, - aux_sym__literal_repeat1 = 272, - aux_sym_arithmetic_expansion_repeat1 = 273, - aux_sym_concatenation_repeat1 = 274, - aux_sym_string_repeat1 = 275, - aux_sym__expansion_body_repeat1 = 276, - aux_sym__concatenation_in_expansion_repeat1 = 277, + sym__test_command_binary_expression = 205, + sym_declaration_command = 206, + sym_unset_command = 207, + sym_command = 208, + sym_command_name = 209, + sym_variable_assignment = 210, + sym_variable_assignments = 211, + sym_subscript = 212, + sym_file_redirect = 213, + sym_heredoc_redirect = 214, + sym__heredoc_pipeline = 215, + sym__heredoc_expression = 216, + aux_sym__heredoc_command = 217, + sym__heredoc_body = 218, + sym_heredoc_body = 219, + sym__simple_heredoc_body = 220, + sym_herestring_redirect = 221, + sym__expression = 222, + sym_binary_expression = 223, + sym_ternary_expression = 224, + sym_unary_expression = 225, + sym_postfix_expression = 226, + sym_parenthesized_expression = 227, + sym_arithmetic_expansion = 228, + sym_brace_expression = 229, + sym__arithmetic_expression = 230, + sym__arithmetic_literal = 231, + sym__arithmetic_binary_expression = 232, + sym__arithmetic_ternary_expression = 233, + sym__arithmetic_unary_expression = 234, + sym__arithmetic_postfix_expression = 235, + sym__arithmetic_parenthesized_expression = 236, + sym_concatenation = 237, + sym_string = 238, + sym_translated_string = 239, + sym_array = 240, + sym_number = 241, + sym_simple_expansion = 242, + sym_expansion = 243, + sym__expansion_body = 244, + sym__expansion_expression = 245, + sym__expansion_regex = 246, + sym__expansion_regex_replacement = 247, + sym__expansion_regex_removal = 248, + sym__expansion_max_length = 249, + sym__expansion_max_length_expression = 250, + sym__expansion_max_length_binary_expression = 251, + sym__expansion_operator = 252, + sym__concatenation_in_expansion = 253, + sym_command_substitution = 254, + sym_process_substitution = 255, + sym__extglob_blob = 256, + sym__c_terminator = 257, + aux_sym__statements_repeat1 = 258, + aux_sym_redirected_statement_repeat1 = 259, + aux_sym_redirected_statement_repeat2 = 260, + aux_sym_for_statement_repeat1 = 261, + aux_sym__for_body_repeat1 = 262, + aux_sym_if_statement_repeat1 = 263, + aux_sym_case_statement_repeat1 = 264, + aux_sym_case_item_repeat1 = 265, + aux_sym_pipeline_repeat1 = 266, + aux_sym_declaration_command_repeat1 = 267, + aux_sym_unset_command_repeat1 = 268, + aux_sym_command_repeat1 = 269, + aux_sym_command_repeat2 = 270, + aux_sym_variable_assignments_repeat1 = 271, + aux_sym_heredoc_body_repeat1 = 272, + aux_sym__literal_repeat1 = 273, + aux_sym_arithmetic_expansion_repeat1 = 274, + aux_sym_concatenation_repeat1 = 275, + aux_sym_string_repeat1 = 276, + aux_sym__expansion_body_repeat1 = 277, + aux_sym__expansion_regex_repeat1 = 278, + aux_sym__concatenation_in_expansion_repeat1 = 279, }; static const char * const ts_symbol_names[] = { @@ -510,6 +512,7 @@ static const char * const ts_symbol_names[] = { [sym_list] = "list", [sym_negated_command] = "negated_command", [sym_test_command] = "test_command", + [sym__test_command_binary_expression] = "binary_expression", [sym_declaration_command] = "declaration_command", [sym_unset_command] = "unset_command", [sym_command] = "command", @@ -582,6 +585,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym__expansion_body_repeat1] = "_expansion_body_repeat1", + [aux_sym__expansion_regex_repeat1] = "_expansion_regex_repeat1", [aux_sym__concatenation_in_expansion_repeat1] = "_concatenation_in_expansion_repeat1", }; @@ -791,6 +795,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_list] = sym_list, [sym_negated_command] = sym_negated_command, [sym_test_command] = sym_test_command, + [sym__test_command_binary_expression] = sym_binary_expression, [sym_declaration_command] = sym_declaration_command, [sym_unset_command] = sym_unset_command, [sym_command] = sym_command, @@ -863,6 +868,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_concatenation_repeat1] = aux_sym_concatenation_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym__expansion_body_repeat1] = aux_sym__expansion_body_repeat1, + [aux_sym__expansion_regex_repeat1] = aux_sym__expansion_regex_repeat1, [aux_sym__concatenation_in_expansion_repeat1] = aux_sym__concatenation_in_expansion_repeat1, }; @@ -1687,6 +1693,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__test_command_binary_expression] = { + .visible = true, + .named = true, + }, [sym_declaration_command] = { .visible = true, .named = true, @@ -1976,6 +1986,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__expansion_regex_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__concatenation_in_expansion_repeat1] = { .visible = false, .named = false, @@ -2053,131 +2067,134 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [27] = {.index = 29, .length = 1}, [28] = {.index = 30, .length = 2}, [29] = {.index = 32, .length = 2}, - [30] = {.index = 34, .length = 1}, - [31] = {.index = 34, .length = 1}, - [32] = {.index = 11, .length = 1}, - [33] = {.index = 35, .length = 2}, - [34] = {.index = 37, .length = 1}, - [35] = {.index = 38, .length = 2}, - [36] = {.index = 38, .length = 2}, - [37] = {.index = 40, .length = 4}, - [38] = {.index = 44, .length = 4}, - [39] = {.index = 48, .length = 2}, - [40] = {.index = 48, .length = 2}, - [41] = {.index = 50, .length = 2}, - [42] = {.index = 52, .length = 3}, - [43] = {.index = 55, .length = 1}, - [44] = {.index = 56, .length = 1}, - [45] = {.index = 56, .length = 1}, - [46] = {.index = 57, .length = 3}, - [47] = {.index = 11, .length = 1}, - [48] = {.index = 60, .length = 2}, - [49] = {.index = 62, .length = 2}, - [50] = {.index = 64, .length = 2}, - [51] = {.index = 66, .length = 2}, - [52] = {.index = 66, .length = 2}, - [53] = {.index = 68, .length = 2}, - [54] = {.index = 25, .length = 2}, - [55] = {.index = 70, .length = 4}, - [56] = {.index = 74, .length = 1}, - [57] = {.index = 75, .length = 1}, - [58] = {.index = 76, .length = 1}, - [59] = {.index = 76, .length = 1}, - [60] = {.index = 77, .length = 2}, - [61] = {.index = 60, .length = 2}, - [62] = {.index = 79, .length = 3}, + [30] = {.index = 34, .length = 3}, + [31] = {.index = 37, .length = 1}, + [32] = {.index = 37, .length = 1}, + [33] = {.index = 11, .length = 1}, + [34] = {.index = 38, .length = 2}, + [35] = {.index = 40, .length = 1}, + [36] = {.index = 41, .length = 2}, + [37] = {.index = 41, .length = 2}, + [38] = {.index = 43, .length = 4}, + [39] = {.index = 47, .length = 4}, + [40] = {.index = 51, .length = 2}, + [41] = {.index = 51, .length = 2}, + [42] = {.index = 53, .length = 2}, + [43] = {.index = 55, .length = 3}, + [44] = {.index = 58, .length = 1}, + [45] = {.index = 59, .length = 1}, + [46] = {.index = 59, .length = 1}, + [47] = {.index = 60, .length = 3}, + [49] = {.index = 63, .length = 2}, + [50] = {.index = 65, .length = 2}, + [51] = {.index = 67, .length = 2}, + [52] = {.index = 69, .length = 2}, + [53] = {.index = 69, .length = 2}, + [54] = {.index = 71, .length = 2}, + [55] = {.index = 25, .length = 2}, + [56] = {.index = 73, .length = 4}, + [57] = {.index = 77, .length = 1}, + [58] = {.index = 78, .length = 1}, + [59] = {.index = 79, .length = 1}, + [60] = {.index = 79, .length = 1}, + [61] = {.index = 80, .length = 2}, + [62] = {.index = 63, .length = 2}, [63] = {.index = 82, .length = 3}, [64] = {.index = 85, .length = 3}, - [65] = {.index = 88, .length = 2}, - [66] = {.index = 90, .length = 2}, - [67] = {.index = 92, .length = 4}, - [68] = {.index = 96, .length = 2}, - [69] = {.index = 98, .length = 2}, - [70] = {.index = 100, .length = 2}, - [71] = {.index = 102, .length = 2}, - [72] = {.index = 104, .length = 2}, - [73] = {.index = 106, .length = 2}, - [74] = {.index = 108, .length = 3}, + [65] = {.index = 88, .length = 3}, + [66] = {.index = 91, .length = 2}, + [67] = {.index = 93, .length = 2}, + [68] = {.index = 95, .length = 4}, + [69] = {.index = 99, .length = 2}, + [70] = {.index = 101, .length = 2}, + [71] = {.index = 103, .length = 2}, + [72] = {.index = 105, .length = 2}, + [73] = {.index = 107, .length = 2}, + [74] = {.index = 109, .length = 2}, [75] = {.index = 111, .length = 3}, - [76] = {.index = 114, .length = 2}, - [77] = {.index = 116, .length = 2}, - [78] = {.index = 118, .length = 2}, - [79] = {.index = 120, .length = 2}, - [80] = {.index = 114, .length = 2}, - [81] = {.index = 116, .length = 2}, - [82] = {.index = 118, .length = 2}, - [83] = {.index = 122, .length = 3}, - [84] = {.index = 64, .length = 2}, - [85] = {.index = 125, .length = 3}, - [86] = {.index = 125, .length = 3}, - [87] = {.index = 60, .length = 2}, - [88] = {.index = 128, .length = 2}, - [89] = {.index = 130, .length = 3}, - [90] = {.index = 133, .length = 4}, - [91] = {.index = 137, .length = 2}, - [92] = {.index = 139, .length = 1}, - [93] = {.index = 140, .length = 1}, - [94] = {.index = 141, .length = 3}, - [95] = {.index = 144, .length = 3}, + [76] = {.index = 114, .length = 3}, + [77] = {.index = 117, .length = 2}, + [78] = {.index = 119, .length = 2}, + [79] = {.index = 121, .length = 2}, + [80] = {.index = 123, .length = 2}, + [81] = {.index = 117, .length = 2}, + [82] = {.index = 119, .length = 2}, + [83] = {.index = 121, .length = 2}, + [84] = {.index = 125, .length = 3}, + [85] = {.index = 67, .length = 2}, + [86] = {.index = 128, .length = 3}, + [87] = {.index = 128, .length = 3}, + [88] = {.index = 63, .length = 2}, + [89] = {.index = 131, .length = 2}, + [90] = {.index = 133, .length = 3}, + [91] = {.index = 136, .length = 3}, + [92] = {.index = 139, .length = 4}, + [93] = {.index = 143, .length = 2}, + [94] = {.index = 145, .length = 1}, + [95] = {.index = 146, .length = 1}, [96] = {.index = 147, .length = 3}, [97] = {.index = 150, .length = 3}, [98] = {.index = 153, .length = 3}, [99] = {.index = 156, .length = 3}, [100] = {.index = 159, .length = 3}, - [101] = {.index = 162, .length = 2}, - [102] = {.index = 164, .length = 2}, - [103] = {.index = 166, .length = 3}, - [104] = {.index = 169, .length = 3}, - [105] = {.index = 172, .length = 2}, - [106] = {.index = 174, .length = 2}, - [107] = {.index = 176, .length = 2}, - [108] = {.index = 172, .length = 2}, - [109] = {.index = 174, .length = 2}, - [110] = {.index = 176, .length = 2}, - [111] = {.index = 162, .length = 2}, - [112] = {.index = 164, .length = 2}, - [113] = {.index = 166, .length = 3}, - [114] = {.index = 169, .length = 3}, - [115] = {.index = 178, .length = 3}, - [116] = {.index = 178, .length = 3}, - [117] = {.index = 64, .length = 2}, - [118] = {.index = 181, .length = 3}, - [119] = {.index = 128, .length = 2}, - [120] = {.index = 184, .length = 3}, - [121] = {.index = 187, .length = 2}, - [122] = {.index = 189, .length = 2}, - [123] = {.index = 191, .length = 3}, - [124] = {.index = 194, .length = 4}, - [125] = {.index = 198, .length = 4}, - [126] = {.index = 202, .length = 4}, - [127] = {.index = 206, .length = 4}, - [128] = {.index = 210, .length = 4}, - [129] = {.index = 214, .length = 4}, - [130] = {.index = 218, .length = 3}, - [131] = {.index = 221, .length = 3}, - [132] = {.index = 224, .length = 2}, - [133] = {.index = 226, .length = 2}, - [134] = {.index = 228, .length = 3}, - [135] = {.index = 231, .length = 3}, - [136] = {.index = 224, .length = 2}, - [137] = {.index = 226, .length = 2}, - [138] = {.index = 228, .length = 3}, - [139] = {.index = 231, .length = 3}, - [140] = {.index = 218, .length = 3}, - [141] = {.index = 221, .length = 3}, - [142] = {.index = 234, .length = 3}, - [143] = {.index = 237, .length = 3}, - [144] = {.index = 237, .length = 3}, - [145] = {.index = 240, .length = 4}, - [146] = {.index = 244, .length = 5}, - [147] = {.index = 249, .length = 5}, - [148] = {.index = 254, .length = 5}, - [149] = {.index = 259, .length = 3}, - [150] = {.index = 262, .length = 3}, - [151] = {.index = 259, .length = 3}, - [152] = {.index = 262, .length = 3}, - [153] = {.index = 265, .length = 3}, - [154] = {.index = 268, .length = 6}, + [101] = {.index = 162, .length = 3}, + [102] = {.index = 165, .length = 3}, + [103] = {.index = 168, .length = 2}, + [104] = {.index = 170, .length = 2}, + [105] = {.index = 172, .length = 3}, + [106] = {.index = 175, .length = 3}, + [107] = {.index = 178, .length = 2}, + [108] = {.index = 180, .length = 2}, + [109] = {.index = 182, .length = 2}, + [110] = {.index = 178, .length = 2}, + [111] = {.index = 180, .length = 2}, + [112] = {.index = 182, .length = 2}, + [113] = {.index = 168, .length = 2}, + [114] = {.index = 170, .length = 2}, + [115] = {.index = 172, .length = 3}, + [116] = {.index = 175, .length = 3}, + [117] = {.index = 184, .length = 3}, + [118] = {.index = 184, .length = 3}, + [119] = {.index = 67, .length = 2}, + [120] = {.index = 187, .length = 3}, + [121] = {.index = 131, .length = 2}, + [122] = {.index = 190, .length = 3}, + [123] = {.index = 193, .length = 4}, + [124] = {.index = 197, .length = 3}, + [125] = {.index = 200, .length = 2}, + [126] = {.index = 202, .length = 2}, + [127] = {.index = 204, .length = 3}, + [128] = {.index = 207, .length = 4}, + [129] = {.index = 211, .length = 4}, + [130] = {.index = 215, .length = 4}, + [131] = {.index = 219, .length = 4}, + [132] = {.index = 223, .length = 4}, + [133] = {.index = 227, .length = 4}, + [134] = {.index = 231, .length = 3}, + [135] = {.index = 234, .length = 3}, + [136] = {.index = 237, .length = 2}, + [137] = {.index = 239, .length = 2}, + [138] = {.index = 241, .length = 3}, + [139] = {.index = 244, .length = 3}, + [140] = {.index = 237, .length = 2}, + [141] = {.index = 239, .length = 2}, + [142] = {.index = 241, .length = 3}, + [143] = {.index = 244, .length = 3}, + [144] = {.index = 231, .length = 3}, + [145] = {.index = 234, .length = 3}, + [146] = {.index = 247, .length = 3}, + [147] = {.index = 250, .length = 3}, + [148] = {.index = 250, .length = 3}, + [149] = {.index = 253, .length = 4}, + [150] = {.index = 257, .length = 5}, + [151] = {.index = 262, .length = 5}, + [152] = {.index = 267, .length = 5}, + [153] = {.index = 272, .length = 3}, + [154] = {.index = 275, .length = 3}, + [155] = {.index = 272, .length = 3}, + [156] = {.index = 275, .length = 3}, + [157] = {.index = 278, .length = 3}, + [158] = {.index = 281, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2236,329 +2253,346 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_name, 1}, [34] = + {field_left, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_right, 1, .inherited = true}, + [37] = {field_operator, 1, .inherited = true}, - [35] = + [38] = {field_operator, 0, .inherited = true}, {field_operator, 1, .inherited = true}, - [37] = + [40] = {field_redirect, 1}, - [38] = + [41] = {field_argument, 0}, {field_argument, 1}, - [40] = + [43] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, {field_redirect, 0, .inherited = true}, {field_redirect, 1, .inherited = true}, - [44] = + [47] = {field_argument, 2, .inherited = true}, {field_name, 1}, {field_redirect, 0, .inherited = true}, {field_redirect, 2, .inherited = true}, - [48] = + [51] = {field_index, 2}, {field_name, 0}, - [50] = + [53] = {field_body, 3}, {field_variable, 1}, - [52] = + [55] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [55] = + [58] = {field_condition, 1}, - [56] = + [59] = {field_value, 1}, - [57] = + [60] = {field_body, 2}, {field_name, 1}, {field_redirect, 3}, - [60] = + [63] = {field_operator, 0}, {field_operator, 1}, - [62] = + [65] = {field_operator, 0}, {field_operator, 1, .inherited = true}, - [64] = + [67] = {field_operator, 0}, {field_operator, 2}, - [66] = + [69] = {field_operator, 0}, {field_operator, 2, .inherited = true}, - [68] = + [71] = {field_body, 3}, {field_name, 0}, - [70] = + [73] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [74] = + [77] = {field_initializer, 0}, - [75] = + [78] = {field_update, 2}, - [76] = + [79] = {field_value, 0}, - [77] = + [80] = {field_body, 4}, {field_name, 1}, - [79] = + [82] = {field_operator, 0}, {field_operator, 1}, {field_operator, 2, .inherited = true}, - [82] = + [85] = {field_operator, 0}, {field_operator, 1, .inherited = true}, {field_operator, 2}, - [85] = + [88] = {field_body, 3}, {field_name, 0}, {field_redirect, 4}, - [88] = + [91] = {field_operator, 0}, {field_right, 1}, - [90] = + [93] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [92] = + [95] = {field_body, 5}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [96] = + [99] = {field_condition, 2}, {field_initializer, 0}, - [98] = + [101] = {field_initializer, 0}, {field_update, 3}, - [100] = + [103] = {field_initializer, 0}, {field_initializer, 1}, - [102] = + [105] = {field_condition, 1}, {field_update, 3}, - [104] = + [107] = {field_condition, 1}, {field_condition, 2}, - [106] = + [109] = {field_update, 2}, {field_update, 3}, - [108] = + [111] = {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [111] = + [114] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [114] = + [117] = {field_termination, 2}, {field_value, 0}, - [116] = + [119] = {field_fallthrough, 2}, {field_value, 0}, - [118] = + [121] = {field_value, 0}, {field_value, 1, .inherited = true}, - [120] = + [123] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [122] = + [125] = {field_body, 4}, {field_name, 1}, {field_redirect, 5}, - [125] = + [128] = {field_operator, 0}, {field_operator, 1}, {field_operator, 3}, - [128] = + [131] = {field_operator, 0}, {field_operator, 3}, - [130] = + [133] = {field_operator, 0}, {field_operator, 2}, {field_operator, 3, .inherited = true}, - [133] = + [136] = + {field_operator, 0}, + {field_operator, 1}, + {field_operator, 3, .inherited = true}, + [139] = {field_operator, 0}, {field_operator, 1, .inherited = true}, {field_operator, 2}, {field_operator, 3, .inherited = true}, - [137] = + [143] = {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [139] = + [145] = {field_argument, 2, .inherited = true}, - [140] = + [146] = {field_redirect, 2}, - [141] = + [147] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [144] = + [150] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, - [147] = + [153] = {field_initializer, 0}, {field_update, 3}, {field_update, 4}, - [150] = + [156] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, - [153] = + [159] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, - [156] = + [162] = {field_condition, 1}, {field_update, 3}, {field_update, 4}, - [159] = + [165] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, - [162] = + [168] = {field_termination, 3}, {field_value, 0}, - [164] = + [170] = {field_fallthrough, 3}, {field_value, 0}, - [166] = + [172] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [169] = + [175] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [172] = + [178] = {field_termination, 3}, {field_value, 1}, - [174] = + [180] = {field_fallthrough, 3}, {field_value, 1}, - [176] = + [182] = {field_value, 1}, {field_value, 2, .inherited = true}, - [178] = + [184] = {field_operator, 0}, {field_operator, 2}, {field_operator, 4}, - [181] = + [187] = {field_operator, 0}, {field_operator, 1}, {field_operator, 4}, - [184] = + [190] = + {field_operator, 0}, + {field_operator, 2}, + {field_operator, 4, .inherited = true}, + [193] = + {field_operator, 0}, + {field_operator, 1, .inherited = true}, + {field_operator, 2}, + {field_operator, 4, .inherited = true}, + [197] = {field_descriptor, 0}, {field_operator, 3, .inherited = true}, {field_right, 3, .inherited = true}, - [187] = + [200] = {field_argument, 3, .inherited = true}, {field_descriptor, 0}, - [189] = + [202] = {field_descriptor, 0}, {field_redirect, 3}, - [191] = + [204] = {field_operator, 3, .inherited = true}, {field_redirect, 2}, {field_right, 3, .inherited = true}, - [194] = + [207] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, {field_update, 5}, - [198] = + [211] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, - [202] = + [215] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, - [206] = + [219] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, - [210] = + [223] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, {field_update, 5}, - [214] = + [227] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, - [218] = + [231] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [221] = + [234] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [224] = + [237] = {field_termination, 4}, {field_value, 1}, - [226] = + [239] = {field_fallthrough, 4}, {field_value, 1}, - [228] = + [241] = {field_termination, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [231] = + [244] = {field_fallthrough, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [234] = + [247] = {field_operator, 0}, {field_operator, 2}, {field_operator, 5}, - [237] = + [250] = {field_operator, 0}, {field_operator, 3}, {field_operator, 5}, - [240] = + [253] = {field_descriptor, 0}, {field_operator, 4, .inherited = true}, {field_redirect, 3}, {field_right, 4, .inherited = true}, - [244] = + [257] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, {field_update, 6}, - [249] = + [262] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, {field_update, 6}, - [254] = + [267] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 6}, - [259] = + [272] = {field_termination, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [262] = + [275] = {field_fallthrough, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [265] = + [278] = {field_operator, 0}, {field_operator, 3}, {field_operator, 6}, - [268] = + [281] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, @@ -2596,115 +2630,115 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [25] = { [2] = sym_word, }, - [31] = { + [32] = { [0] = anon_sym_AT2, }, - [32] = { + [33] = { [1] = anon_sym_AT2, }, - [35] = { + [36] = { [1] = sym_word, }, - [39] = { + [40] = { [2] = sym_word, }, - [44] = { + [45] = { [1] = sym_word, }, - [47] = { - [1] = sym_regex, + [48] = { + [0] = sym_regex, }, - [52] = { + [53] = { [1] = anon_sym_AT2, }, - [54] = { + [55] = { [0] = sym_variable_name, }, - [58] = { + [59] = { [0] = sym_word, }, - [61] = { + [62] = { [2] = sym_word, }, - [76] = { - [0] = sym_word, - }, [77] = { [0] = sym_word, }, [78] = { [0] = sym_word, }, - [84] = { - [3] = sym_word, + [79] = { + [0] = sym_word, }, [85] = { + [3] = sym_word, + }, + [86] = { [2] = sym_word, }, - [87] = { + [88] = { [3] = sym_word, }, - [101] = { + [103] = { [0] = sym_word, }, - [102] = { + [104] = { [0] = sym_word, }, - [103] = { + [105] = { [0] = sym_word, }, - [104] = { + [106] = { [0] = sym_word, }, - [105] = { + [107] = { [1] = sym_word, }, - [106] = { + [108] = { [1] = sym_word, }, - [107] = { + [109] = { [1] = sym_word, }, - [115] = { + [117] = { [3] = sym_word, }, - [117] = { + [119] = { [4] = sym_word, }, - [118] = { + [120] = { [3] = sym_word, }, - [119] = { + [121] = { [4] = sym_word, }, - [130] = { + [134] = { [0] = sym_word, }, - [131] = { + [135] = { [0] = sym_word, }, - [132] = { + [136] = { [1] = sym_word, }, - [133] = { + [137] = { [1] = sym_word, }, - [134] = { + [138] = { [1] = sym_word, }, - [135] = { + [139] = { [1] = sym_word, }, - [142] = { + [146] = { [4] = sym_word, }, - [143] = { + [147] = { [4] = sym_word, }, - [149] = { + [153] = { [1] = sym_word, }, - [150] = { + [154] = { [1] = sym_word, }, }; @@ -2724,21 +2758,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 4, [6] = 4, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 8, - [11] = 7, - [12] = 9, - [13] = 8, - [14] = 9, - [15] = 15, - [16] = 16, + [7] = 4, + [8] = 4, + [9] = 4, + [10] = 4, + [11] = 4, + [12] = 12, + [13] = 13, + [14] = 13, + [15] = 13, + [16] = 12, [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, + [18] = 17, + [19] = 17, + [20] = 13, + [21] = 17, [22] = 22, [23] = 23, [24] = 24, @@ -2761,6126 +2795,7633 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 43, - [45] = 43, - [46] = 42, - [47] = 43, - [48] = 43, - [49] = 43, - [50] = 43, - [51] = 42, - [52] = 43, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 54, - [57] = 55, - [58] = 58, - [59] = 54, - [60] = 60, - [61] = 58, - [62] = 58, - [63] = 60, - [64] = 60, - [65] = 65, - [66] = 54, - [67] = 54, - [68] = 55, - [69] = 58, - [70] = 60, - [71] = 54, - [72] = 55, - [73] = 58, - [74] = 60, - [75] = 55, - [76] = 58, - [77] = 19, - [78] = 60, - [79] = 60, - [80] = 55, - [81] = 54, - [82] = 60, - [83] = 83, - [84] = 55, - [85] = 54, - [86] = 54, - [87] = 19, - [88] = 60, - [89] = 55, - [90] = 54, - [91] = 55, - [92] = 92, - [93] = 54, - [94] = 65, - [95] = 65, - [96] = 60, - [97] = 55, - [98] = 54, - [99] = 60, - [100] = 58, - [101] = 60, - [102] = 83, - [103] = 92, - [104] = 55, - [105] = 54, - [106] = 55, - [107] = 55, - [108] = 58, - [109] = 54, - [110] = 60, - [111] = 58, - [112] = 55, - [113] = 53, - [114] = 53, - [115] = 60, - [116] = 116, - [117] = 54, - [118] = 60, - [119] = 55, - [120] = 54, - [121] = 55, - [122] = 54, - [123] = 60, - [124] = 60, - [125] = 55, - [126] = 54, - [127] = 60, - [128] = 55, - [129] = 54, - [130] = 60, - [131] = 55, - [132] = 54, - [133] = 60, - [134] = 55, - [135] = 54, - [136] = 60, - [137] = 58, - [138] = 55, - [139] = 54, - [140] = 60, - [141] = 60, - [142] = 54, - [143] = 55, - [144] = 55, - [145] = 54, - [146] = 58, - [147] = 60, - [148] = 60, - [149] = 54, - [150] = 55, - [151] = 58, - [152] = 54, - [153] = 55, - [154] = 60, - [155] = 54, - [156] = 55, - [157] = 54, - [158] = 60, - [159] = 58, - [160] = 55, - [161] = 58, - [162] = 58, - [163] = 60, - [164] = 60, - [165] = 54, - [166] = 55, - [167] = 54, - [168] = 54, - [169] = 92, - [170] = 53, - [171] = 55, - [172] = 58, - [173] = 173, - [174] = 60, - [175] = 54, - [176] = 55, - [177] = 55, - [178] = 54, - [179] = 179, - [180] = 60, - [181] = 58, - [182] = 55, - [183] = 58, - [184] = 60, - [185] = 83, - [186] = 60, - [187] = 54, - [188] = 55, - [189] = 54, - [190] = 58, - [191] = 60, - [192] = 58, - [193] = 55, - [194] = 55, - [195] = 54, - [196] = 60, - [197] = 58, - [198] = 58, - [199] = 55, - [200] = 58, - [201] = 60, - [202] = 55, - [203] = 54, - [204] = 60, - [205] = 58, - [206] = 54, - [207] = 55, - [208] = 60, - [209] = 53, - [210] = 60, - [211] = 55, - [212] = 54, - [213] = 60, - [214] = 58, - [215] = 92, - [216] = 55, - [217] = 55, - [218] = 54, - [219] = 60, - [220] = 60, - [221] = 58, - [222] = 54, - [223] = 55, - [224] = 54, - [225] = 55, - [226] = 58, - [227] = 60, - [228] = 54, - [229] = 60, - [230] = 54, - [231] = 55, - [232] = 58, - [233] = 55, - [234] = 54, - [235] = 60, - [236] = 116, - [237] = 58, - [238] = 58, - [239] = 58, - [240] = 55, - [241] = 54, - [242] = 60, - [243] = 58, - [244] = 55, - [245] = 54, - [246] = 60, - [247] = 58, - [248] = 55, - [249] = 54, - [250] = 60, - [251] = 58, - [252] = 55, - [253] = 54, - [254] = 60, - [255] = 58, - [256] = 55, - [257] = 54, - [258] = 60, - [259] = 58, - [260] = 55, - [261] = 54, - [262] = 60, - [263] = 58, - [264] = 55, - [265] = 54, - [266] = 60, - [267] = 58, - [268] = 55, - [269] = 55, - [270] = 60, - [271] = 54, - [272] = 272, - [273] = 92, - [274] = 58, - [275] = 60, - [276] = 54, - [277] = 60, - [278] = 278, - [279] = 58, - [280] = 92, - [281] = 55, - [282] = 58, - [283] = 54, - [284] = 60, - [285] = 55, - [286] = 54, - [287] = 53, - [288] = 60, - [289] = 272, - [290] = 54, - [291] = 60, - [292] = 55, - [293] = 54, - [294] = 55, - [295] = 58, - [296] = 55, - [297] = 54, - [298] = 60, - [299] = 58, - [300] = 54, - [301] = 58, - [302] = 58, - [303] = 60, - [304] = 60, - [305] = 60, - [306] = 54, - [307] = 116, - [308] = 55, - [309] = 58, - [310] = 54, - [311] = 55, - [312] = 55, - [313] = 272, - [314] = 54, - [315] = 60, - [316] = 58, - [317] = 55, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 320, - [323] = 319, - [324] = 319, - [325] = 325, - [326] = 319, - [327] = 319, - [328] = 320, - [329] = 321, - [330] = 321, - [331] = 331, - [332] = 332, - [333] = 331, - [334] = 334, - [335] = 331, - [336] = 331, - [337] = 331, - [338] = 334, - [339] = 334, - [340] = 334, - [341] = 334, - [342] = 331, - [343] = 334, - [344] = 334, - [345] = 331, - [346] = 331, - [347] = 334, - [348] = 348, - [349] = 349, - [350] = 349, - [351] = 351, - [352] = 351, - [353] = 349, - [354] = 349, - [355] = 349, - [356] = 351, - [357] = 351, - [358] = 349, - [359] = 351, - [360] = 351, - [361] = 351, - [362] = 362, - [363] = 363, - [364] = 363, - [365] = 362, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 367, - [394] = 368, - [395] = 395, - [396] = 370, - [397] = 397, - [398] = 369, - [399] = 366, - [400] = 371, - [401] = 381, - [402] = 383, - [403] = 376, - [404] = 386, - [405] = 373, - [406] = 372, - [407] = 388, - [408] = 389, - [409] = 385, - [410] = 375, - [411] = 374, - [412] = 380, - [413] = 382, - [414] = 378, - [415] = 379, - [416] = 387, - [417] = 390, - [418] = 384, - [419] = 377, - [420] = 392, - [421] = 391, - [422] = 395, - [423] = 397, - [424] = 424, - [425] = 424, - [426] = 426, - [427] = 427, - [428] = 426, - [429] = 427, - [430] = 430, - [431] = 426, - [432] = 432, - [433] = 426, - [434] = 427, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 50, + [52] = 49, + [53] = 49, + [54] = 50, + [55] = 49, + [56] = 49, + [57] = 49, + [58] = 49, + [59] = 50, + [60] = 49, + [61] = 61, + [62] = 34, + [63] = 63, + [64] = 64, + [65] = 61, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 64, + [70] = 70, + [71] = 71, + [72] = 63, + [73] = 61, + [74] = 68, + [75] = 66, + [76] = 70, + [77] = 67, + [78] = 71, + [79] = 64, + [80] = 61, + [81] = 63, + [82] = 68, + [83] = 66, + [84] = 70, + [85] = 71, + [86] = 63, + [87] = 68, + [88] = 67, + [89] = 64, + [90] = 70, + [91] = 71, + [92] = 63, + [93] = 68, + [94] = 70, + [95] = 71, + [96] = 63, + [97] = 61, + [98] = 66, + [99] = 68, + [100] = 67, + [101] = 64, + [102] = 102, + [103] = 70, + [104] = 71, + [105] = 34, + [106] = 61, + [107] = 61, + [108] = 66, + [109] = 67, + [110] = 64, + [111] = 61, + [112] = 112, + [113] = 66, + [114] = 64, + [115] = 67, + [116] = 64, + [117] = 61, + [118] = 66, + [119] = 61, + [120] = 67, + [121] = 66, + [122] = 102, + [123] = 67, + [124] = 64, + [125] = 112, + [126] = 61, + [127] = 66, + [128] = 64, + [129] = 61, + [130] = 66, + [131] = 67, + [132] = 67, + [133] = 102, + [134] = 64, + [135] = 61, + [136] = 61, + [137] = 71, + [138] = 66, + [139] = 67, + [140] = 64, + [141] = 61, + [142] = 66, + [143] = 70, + [144] = 67, + [145] = 112, + [146] = 66, + [147] = 64, + [148] = 64, + [149] = 61, + [150] = 61, + [151] = 66, + [152] = 67, + [153] = 102, + [154] = 63, + [155] = 112, + [156] = 61, + [157] = 66, + [158] = 64, + [159] = 61, + [160] = 66, + [161] = 67, + [162] = 67, + [163] = 112, + [164] = 64, + [165] = 64, + [166] = 64, + [167] = 61, + [168] = 61, + [169] = 66, + [170] = 66, + [171] = 67, + [172] = 67, + [173] = 112, + [174] = 64, + [175] = 61, + [176] = 66, + [177] = 67, + [178] = 64, + [179] = 112, + [180] = 64, + [181] = 61, + [182] = 67, + [183] = 61, + [184] = 66, + [185] = 67, + [186] = 64, + [187] = 61, + [188] = 66, + [189] = 67, + [190] = 64, + [191] = 66, + [192] = 61, + [193] = 66, + [194] = 67, + [195] = 67, + [196] = 64, + [197] = 61, + [198] = 66, + [199] = 64, + [200] = 67, + [201] = 64, + [202] = 61, + [203] = 66, + [204] = 67, + [205] = 64, + [206] = 61, + [207] = 66, + [208] = 61, + [209] = 66, + [210] = 67, + [211] = 64, + [212] = 61, + [213] = 66, + [214] = 67, + [215] = 64, + [216] = 61, + [217] = 67, + [218] = 66, + [219] = 67, + [220] = 64, + [221] = 61, + [222] = 66, + [223] = 67, + [224] = 64, + [225] = 61, + [226] = 226, + [227] = 66, + [228] = 67, + [229] = 64, + [230] = 61, + [231] = 66, + [232] = 232, + [233] = 64, + [234] = 234, + [235] = 67, + [236] = 64, + [237] = 71, + [238] = 61, + [239] = 61, + [240] = 112, + [241] = 66, + [242] = 67, + [243] = 64, + [244] = 61, + [245] = 66, + [246] = 66, + [247] = 66, + [248] = 67, + [249] = 64, + [250] = 67, + [251] = 61, + [252] = 64, + [253] = 66, + [254] = 67, + [255] = 64, + [256] = 61, + [257] = 66, + [258] = 67, + [259] = 61, + [260] = 66, + [261] = 64, + [262] = 61, + [263] = 66, + [264] = 67, + [265] = 67, + [266] = 64, + [267] = 61, + [268] = 64, + [269] = 61, + [270] = 66, + [271] = 66, + [272] = 67, + [273] = 67, + [274] = 64, + [275] = 66, + [276] = 61, + [277] = 64, + [278] = 64, + [279] = 66, + [280] = 70, + [281] = 61, + [282] = 68, + [283] = 66, + [284] = 63, + [285] = 67, + [286] = 64, + [287] = 64, + [288] = 66, + [289] = 66, + [290] = 68, + [291] = 61, + [292] = 64, + [293] = 66, + [294] = 67, + [295] = 61, + [296] = 64, + [297] = 61, + [298] = 61, + [299] = 64, + [300] = 66, + [301] = 61, + [302] = 64, + [303] = 66, + [304] = 61, + [305] = 64, + [306] = 66, + [307] = 61, + [308] = 64, + [309] = 66, + [310] = 61, + [311] = 64, + [312] = 66, + [313] = 61, + [314] = 64, + [315] = 66, + [316] = 61, + [317] = 64, + [318] = 66, + [319] = 61, + [320] = 64, + [321] = 66, + [322] = 61, + [323] = 64, + [324] = 66, + [325] = 61, + [326] = 64, + [327] = 66, + [328] = 61, + [329] = 64, + [330] = 66, + [331] = 61, + [332] = 64, + [333] = 66, + [334] = 61, + [335] = 64, + [336] = 66, + [337] = 67, + [338] = 66, + [339] = 67, + [340] = 64, + [341] = 61, + [342] = 66, + [343] = 61, + [344] = 64, + [345] = 67, + [346] = 66, + [347] = 61, + [348] = 64, + [349] = 67, + [350] = 67, + [351] = 64, + [352] = 66, + [353] = 61, + [354] = 66, + [355] = 67, + [356] = 66, + [357] = 67, + [358] = 61, + [359] = 64, + [360] = 64, + [361] = 67, + [362] = 66, + [363] = 61, + [364] = 61, + [365] = 66, + [366] = 67, + [367] = 64, + [368] = 67, + [369] = 66, + [370] = 61, + [371] = 64, + [372] = 67, + [373] = 66, + [374] = 64, + [375] = 67, + [376] = 64, + [377] = 67, + [378] = 66, + [379] = 61, + [380] = 64, + [381] = 67, + [382] = 66, + [383] = 61, + [384] = 64, + [385] = 67, + [386] = 66, + [387] = 61, + [388] = 64, + [389] = 67, + [390] = 66, + [391] = 61, + [392] = 64, + [393] = 67, + [394] = 66, + [395] = 61, + [396] = 64, + [397] = 67, + [398] = 66, + [399] = 61, + [400] = 64, + [401] = 67, + [402] = 66, + [403] = 61, + [404] = 64, + [405] = 67, + [406] = 66, + [407] = 61, + [408] = 64, + [409] = 67, + [410] = 61, + [411] = 66, + [412] = 61, + [413] = 64, + [414] = 67, + [415] = 66, + [416] = 61, + [417] = 64, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 421, + [423] = 423, + [424] = 420, + [425] = 421, + [426] = 423, + [427] = 423, + [428] = 421, + [429] = 423, + [430] = 420, + [431] = 423, + [432] = 420, + [433] = 433, + [434] = 434, [435] = 435, - [436] = 427, - [437] = 426, - [438] = 363, - [439] = 426, - [440] = 432, - [441] = 427, - [442] = 442, - [443] = 443, - [444] = 435, - [445] = 362, - [446] = 430, - [447] = 427, - [448] = 448, - [449] = 362, - [450] = 448, - [451] = 443, - [452] = 442, - [453] = 363, - [454] = 432, - [455] = 435, - [456] = 363, - [457] = 430, - [458] = 435, - [459] = 430, - [460] = 432, - [461] = 362, - [462] = 362, - [463] = 463, - [464] = 362, + [436] = 433, + [437] = 435, + [438] = 435, + [439] = 435, + [440] = 440, + [441] = 433, + [442] = 435, + [443] = 435, + [444] = 433, + [445] = 433, + [446] = 435, + [447] = 433, + [448] = 435, + [449] = 433, + [450] = 433, + [451] = 451, + [452] = 452, + [453] = 452, + [454] = 451, + [455] = 452, + [456] = 451, + [457] = 452, + [458] = 451, + [459] = 451, + [460] = 451, + [461] = 452, + [462] = 452, + [463] = 451, + [464] = 464, [465] = 465, - [466] = 442, - [467] = 467, - [468] = 363, - [469] = 363, - [470] = 432, - [471] = 443, - [472] = 432, - [473] = 430, - [474] = 442, - [475] = 435, - [476] = 448, - [477] = 435, - [478] = 363, - [479] = 443, - [480] = 448, - [481] = 362, - [482] = 362, + [466] = 464, + [467] = 465, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, [483] = 483, - [484] = 362, - [485] = 442, - [486] = 448, + [484] = 484, + [485] = 485, + [486] = 486, [487] = 487, - [488] = 363, - [489] = 362, - [490] = 427, - [491] = 363, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, [492] = 492, - [493] = 363, - [494] = 363, - [495] = 463, - [496] = 465, - [497] = 443, - [498] = 498, - [499] = 467, - [500] = 442, - [501] = 443, - [502] = 426, - [503] = 362, - [504] = 504, - [505] = 505, - [506] = 363, - [507] = 507, - [508] = 498, - [509] = 504, - [510] = 467, - [511] = 463, - [512] = 507, - [513] = 507, - [514] = 514, - [515] = 507, - [516] = 426, - [517] = 465, - [518] = 362, - [519] = 519, - [520] = 363, - [521] = 363, - [522] = 362, - [523] = 487, - [524] = 507, - [525] = 463, - [526] = 467, - [527] = 465, - [528] = 507, - [529] = 519, - [530] = 507, - [531] = 507, - [532] = 465, - [533] = 514, - [534] = 467, - [535] = 492, - [536] = 362, - [537] = 427, - [538] = 463, - [539] = 505, - [540] = 492, - [541] = 432, - [542] = 498, - [543] = 487, - [544] = 504, - [545] = 463, - [546] = 430, - [547] = 435, - [548] = 363, - [549] = 463, - [550] = 363, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 472, + [497] = 471, + [498] = 473, + [499] = 470, + [500] = 469, + [501] = 468, + [502] = 502, + [503] = 489, + [504] = 490, + [505] = 484, + [506] = 488, + [507] = 492, + [508] = 476, + [509] = 481, + [510] = 480, + [511] = 486, + [512] = 483, + [513] = 482, + [514] = 485, + [515] = 474, + [516] = 475, + [517] = 491, + [518] = 477, + [519] = 478, + [520] = 479, + [521] = 487, + [522] = 493, + [523] = 494, + [524] = 502, + [525] = 495, + [526] = 526, + [527] = 526, + [528] = 528, + [529] = 529, + [530] = 528, + [531] = 529, + [532] = 532, + [533] = 528, + [534] = 528, + [535] = 535, + [536] = 529, + [537] = 529, + [538] = 465, + [539] = 464, + [540] = 540, + [541] = 532, + [542] = 540, + [543] = 529, + [544] = 528, + [545] = 529, + [546] = 546, + [547] = 535, + [548] = 548, + [549] = 465, + [550] = 464, [551] = 551, - [552] = 362, - [553] = 505, - [554] = 363, - [555] = 465, - [556] = 505, - [557] = 362, - [558] = 467, - [559] = 504, - [560] = 467, - [561] = 465, - [562] = 363, - [563] = 505, - [564] = 551, - [565] = 551, - [566] = 362, - [567] = 551, - [568] = 492, - [569] = 498, - [570] = 363, - [571] = 362, - [572] = 551, - [573] = 492, - [574] = 362, - [575] = 551, - [576] = 487, - [577] = 551, - [578] = 363, - [579] = 362, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 498, - [584] = 498, - [585] = 448, - [586] = 487, - [587] = 487, - [588] = 492, - [589] = 505, + [552] = 465, + [553] = 464, + [554] = 528, + [555] = 464, + [556] = 465, + [557] = 540, + [558] = 464, + [559] = 551, + [560] = 535, + [561] = 535, + [562] = 532, + [563] = 548, + [564] = 465, + [565] = 546, + [566] = 540, + [567] = 464, + [568] = 465, + [569] = 532, + [570] = 551, + [571] = 535, + [572] = 464, + [573] = 573, + [574] = 532, + [575] = 575, + [576] = 548, + [577] = 546, + [578] = 465, + [579] = 465, + [580] = 464, + [581] = 546, + [582] = 540, + [583] = 583, + [584] = 540, + [585] = 551, + [586] = 548, + [587] = 535, + [588] = 464, + [589] = 465, [590] = 590, - [591] = 442, - [592] = 363, - [593] = 362, - [594] = 363, - [595] = 467, - [596] = 465, - [597] = 465, - [598] = 463, - [599] = 581, - [600] = 435, - [601] = 430, - [602] = 362, - [603] = 362, - [604] = 363, - [605] = 492, - [606] = 463, - [607] = 467, - [608] = 505, - [609] = 504, - [610] = 590, - [611] = 582, - [612] = 443, - [613] = 363, - [614] = 362, - [615] = 362, - [616] = 363, - [617] = 432, - [618] = 580, - [619] = 362, - [620] = 483, - [621] = 492, - [622] = 363, - [623] = 363, - [624] = 362, - [625] = 465, - [626] = 362, - [627] = 362, - [628] = 467, - [629] = 463, - [630] = 492, - [631] = 483, - [632] = 505, - [633] = 363, - [634] = 362, - [635] = 362, - [636] = 363, - [637] = 448, - [638] = 443, - [639] = 363, - [640] = 505, - [641] = 514, - [642] = 363, - [643] = 442, - [644] = 362, - [645] = 363, - [646] = 519, - [647] = 467, - [648] = 465, - [649] = 492, - [650] = 650, - [651] = 465, - [652] = 463, - [653] = 650, - [654] = 369, - [655] = 467, - [656] = 514, - [657] = 363, - [658] = 362, + [591] = 575, + [592] = 548, + [593] = 583, + [594] = 551, + [595] = 573, + [596] = 528, + [597] = 464, + [598] = 598, + [599] = 599, + [600] = 529, + [601] = 575, + [602] = 548, + [603] = 465, + [604] = 604, + [605] = 464, + [606] = 464, + [607] = 607, + [608] = 465, + [609] = 583, + [610] = 551, + [611] = 465, + [612] = 546, + [613] = 613, + [614] = 573, + [615] = 573, + [616] = 573, + [617] = 529, + [618] = 618, + [619] = 618, + [620] = 528, + [621] = 583, + [622] = 622, + [623] = 618, + [624] = 622, + [625] = 625, + [626] = 618, + [627] = 583, + [628] = 465, + [629] = 613, + [630] = 583, + [631] = 604, + [632] = 590, + [633] = 598, + [634] = 464, + [635] = 607, + [636] = 618, + [637] = 464, + [638] = 465, + [639] = 464, + [640] = 465, + [641] = 464, + [642] = 575, + [643] = 465, + [644] = 618, + [645] = 607, + [646] = 575, + [647] = 465, + [648] = 604, + [649] = 573, + [650] = 618, + [651] = 583, + [652] = 464, + [653] = 575, + [654] = 573, + [655] = 625, + [656] = 618, + [657] = 575, + [658] = 604, [659] = 659, - [660] = 660, - [661] = 661, - [662] = 370, - [663] = 505, - [664] = 367, - [665] = 665, - [666] = 659, - [667] = 368, - [668] = 362, - [669] = 362, - [670] = 363, - [671] = 467, - [672] = 363, - [673] = 673, - [674] = 674, - [675] = 659, - [676] = 659, - [677] = 505, - [678] = 463, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 519, - [683] = 650, - [684] = 492, - [685] = 465, - [686] = 650, - [687] = 487, - [688] = 389, - [689] = 661, - [690] = 383, - [691] = 384, - [692] = 376, - [693] = 681, - [694] = 694, - [695] = 374, - [696] = 373, - [697] = 463, - [698] = 387, - [699] = 372, - [700] = 505, - [701] = 673, - [702] = 370, - [703] = 388, - [704] = 370, - [705] = 705, - [706] = 362, - [707] = 467, - [708] = 465, - [709] = 363, - [710] = 504, - [711] = 367, - [712] = 380, - [713] = 660, - [714] = 680, - [715] = 375, - [716] = 492, - [717] = 362, - [718] = 363, - [719] = 378, - [720] = 720, - [721] = 492, - [722] = 722, - [723] = 368, - [724] = 390, - [725] = 498, - [726] = 726, - [727] = 727, - [728] = 679, + [660] = 583, + [661] = 659, + [662] = 464, + [663] = 464, + [664] = 598, + [665] = 607, + [666] = 465, + [667] = 613, + [668] = 465, + [669] = 465, + [670] = 465, + [671] = 659, + [672] = 583, + [673] = 573, + [674] = 464, + [675] = 535, + [676] = 465, + [677] = 464, + [678] = 583, + [679] = 464, + [680] = 573, + [681] = 604, + [682] = 604, + [683] = 464, + [684] = 573, + [685] = 659, + [686] = 575, + [687] = 464, + [688] = 540, + [689] = 607, + [690] = 590, + [691] = 575, + [692] = 465, + [693] = 590, + [694] = 604, + [695] = 613, + [696] = 465, + [697] = 659, + [698] = 659, + [699] = 464, + [700] = 465, + [701] = 659, + [702] = 573, + [703] = 532, + [704] = 583, + [705] = 575, + [706] = 607, + [707] = 575, + [708] = 607, + [709] = 598, + [710] = 464, + [711] = 711, + [712] = 712, + [713] = 711, + [714] = 573, + [715] = 583, + [716] = 464, + [717] = 464, + [718] = 590, + [719] = 573, + [720] = 575, + [721] = 465, + [722] = 607, + [723] = 464, + [724] = 604, + [725] = 465, + [726] = 613, + [727] = 540, + [728] = 728, [729] = 729, - [730] = 385, - [731] = 381, - [732] = 674, - [733] = 377, + [730] = 730, + [731] = 598, + [732] = 464, + [733] = 604, [734] = 734, - [735] = 382, - [736] = 368, - [737] = 379, - [738] = 369, - [739] = 369, - [740] = 386, - [741] = 505, - [742] = 372, - [743] = 374, - [744] = 679, - [745] = 498, - [746] = 465, - [747] = 370, - [748] = 467, - [749] = 467, - [750] = 363, - [751] = 681, - [752] = 373, - [753] = 387, - [754] = 722, - [755] = 673, - [756] = 368, - [757] = 757, - [758] = 758, - [759] = 758, - [760] = 720, - [761] = 726, - [762] = 385, - [763] = 363, - [764] = 729, - [765] = 660, - [766] = 465, - [767] = 362, - [768] = 727, - [769] = 384, - [770] = 380, - [771] = 389, - [772] = 463, - [773] = 370, - [774] = 492, - [775] = 382, - [776] = 660, - [777] = 505, - [778] = 362, - [779] = 673, - [780] = 370, - [781] = 734, - [782] = 674, - [783] = 504, - [784] = 463, - [785] = 375, - [786] = 681, - [787] = 487, - [788] = 758, - [789] = 661, - [790] = 368, - [791] = 390, - [792] = 680, - [793] = 378, - [794] = 379, - [795] = 386, - [796] = 388, - [797] = 369, - [798] = 369, - [799] = 377, - [800] = 381, - [801] = 705, - [802] = 679, - [803] = 758, - [804] = 368, - [805] = 376, - [806] = 758, - [807] = 383, - [808] = 694, - [809] = 367, - [810] = 391, - [811] = 680, - [812] = 758, - [813] = 674, - [814] = 758, - [815] = 661, - [816] = 758, - [817] = 369, - [818] = 367, - [819] = 381, - [820] = 820, - [821] = 821, - [822] = 368, - [823] = 381, - [824] = 385, - [825] = 384, - [826] = 363, - [827] = 757, - [828] = 383, - [829] = 829, - [830] = 386, - [831] = 387, - [832] = 694, - [833] = 705, - [834] = 369, - [835] = 729, - [836] = 376, - [837] = 467, - [838] = 821, - [839] = 388, - [840] = 734, - [841] = 367, - [842] = 720, - [843] = 722, - [844] = 505, - [845] = 492, - [846] = 379, - [847] = 465, - [848] = 681, - [849] = 397, - [850] = 370, - [851] = 368, - [852] = 369, - [853] = 386, - [854] = 387, - [855] = 679, - [856] = 362, - [857] = 820, - [858] = 829, - [859] = 463, - [860] = 363, - [861] = 362, - [862] = 862, - [863] = 863, - [864] = 369, - [865] = 362, - [866] = 377, - [867] = 867, - [868] = 368, - [869] = 390, - [870] = 367, - [871] = 370, - [872] = 821, - [873] = 385, + [735] = 465, + [736] = 728, + [737] = 465, + [738] = 607, + [739] = 604, + [740] = 464, + [741] = 583, + [742] = 575, + [743] = 613, + [744] = 729, + [745] = 728, + [746] = 546, + [747] = 583, + [748] = 548, + [749] = 464, + [750] = 465, + [751] = 532, + [752] = 535, + [753] = 728, + [754] = 573, + [755] = 575, + [756] = 465, + [757] = 573, + [758] = 729, + [759] = 604, + [760] = 734, + [761] = 590, + [762] = 712, + [763] = 730, + [764] = 607, + [765] = 465, + [766] = 464, + [767] = 464, + [768] = 465, + [769] = 729, + [770] = 728, + [771] = 729, + [772] = 607, + [773] = 575, + [774] = 465, + [775] = 465, + [776] = 464, + [777] = 551, + [778] = 607, + [779] = 604, + [780] = 599, + [781] = 583, + [782] = 464, + [783] = 604, + [784] = 464, + [785] = 604, + [786] = 573, + [787] = 465, + [788] = 573, + [789] = 575, + [790] = 604, + [791] = 575, + [792] = 607, + [793] = 465, + [794] = 625, + [795] = 464, + [796] = 464, + [797] = 551, + [798] = 607, + [799] = 548, + [800] = 622, + [801] = 465, + [802] = 599, + [803] = 546, + [804] = 607, + [805] = 465, + [806] = 573, + [807] = 807, + [808] = 470, + [809] = 809, + [810] = 625, + [811] = 583, + [812] = 622, + [813] = 813, + [814] = 473, + [815] = 815, + [816] = 575, + [817] = 583, + [818] = 818, + [819] = 819, + [820] = 468, + [821] = 575, + [822] = 822, + [823] = 573, + [824] = 469, + [825] = 604, + [826] = 607, + [827] = 827, + [828] = 607, + [829] = 604, + [830] = 604, + [831] = 476, + [832] = 832, + [833] = 607, + [834] = 469, + [835] = 818, + [836] = 604, + [837] = 470, + [838] = 473, + [839] = 809, + [840] = 464, + [841] = 468, + [842] = 465, + [843] = 481, + [844] = 486, + [845] = 487, + [846] = 479, + [847] = 822, + [848] = 490, + [849] = 807, + [850] = 469, + [851] = 583, + [852] = 815, + [853] = 819, + [854] = 854, + [855] = 478, + [856] = 477, + [857] = 491, + [858] = 573, + [859] = 859, + [860] = 583, + [861] = 861, + [862] = 573, + [863] = 575, + [864] = 483, + [865] = 613, + [866] = 482, + [867] = 573, + [868] = 489, + [869] = 475, + [870] = 575, + [871] = 485, + [872] = 474, + [873] = 464, [874] = 874, - [875] = 729, + [875] = 598, [876] = 876, - [877] = 370, - [878] = 734, - [879] = 722, + [877] = 465, + [878] = 590, + [879] = 575, [880] = 880, - [881] = 661, - [882] = 660, - [883] = 722, - [884] = 720, - [885] = 369, - [886] = 368, - [887] = 375, - [888] = 374, - [889] = 370, - [890] = 362, - [891] = 363, - [892] = 380, - [893] = 382, - [894] = 370, - [895] = 705, - [896] = 369, - [897] = 694, - [898] = 378, - [899] = 379, - [900] = 679, - [901] = 383, - [902] = 384, - [903] = 376, - [904] = 727, - [905] = 905, - [906] = 726, - [907] = 377, - [908] = 660, - [909] = 909, - [910] = 727, - [911] = 505, - [912] = 726, - [913] = 375, - [914] = 492, - [915] = 374, - [916] = 916, - [917] = 363, - [918] = 918, - [919] = 391, - [920] = 373, - [921] = 921, - [922] = 362, - [923] = 388, - [924] = 681, - [925] = 674, - [926] = 720, - [927] = 368, - [928] = 705, - [929] = 380, - [930] = 694, - [931] = 931, - [932] = 382, - [933] = 680, - [934] = 372, - [935] = 673, - [936] = 372, - [937] = 378, - [938] = 389, - [939] = 390, - [940] = 389, - [941] = 363, - [942] = 373, - [943] = 943, - [944] = 368, - [945] = 931, - [946] = 918, - [947] = 916, - [948] = 757, - [949] = 373, - [950] = 362, - [951] = 867, - [952] = 369, - [953] = 376, - [954] = 384, - [955] = 383, - [956] = 368, - [957] = 362, - [958] = 374, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 363, - [963] = 367, - [964] = 820, - [965] = 369, - [966] = 368, - [967] = 967, - [968] = 829, - [969] = 909, - [970] = 373, - [971] = 369, - [972] = 362, - [973] = 363, - [974] = 363, - [975] = 362, - [976] = 829, - [977] = 977, - [978] = 376, - [979] = 979, - [980] = 384, - [981] = 383, - [982] = 982, - [983] = 820, - [984] = 362, - [985] = 757, - [986] = 363, - [987] = 391, - [988] = 874, - [989] = 734, - [990] = 368, - [991] = 729, - [992] = 391, - [993] = 374, - [994] = 397, - [995] = 367, - [996] = 387, - [997] = 363, - [998] = 876, - [999] = 386, - [1000] = 370, - [1001] = 694, - [1002] = 862, - [1003] = 380, - [1004] = 705, - [1005] = 726, - [1006] = 720, - [1007] = 381, - [1008] = 722, - [1009] = 370, - [1010] = 372, - [1011] = 863, - [1012] = 375, - [1013] = 370, - [1014] = 388, - [1015] = 694, - [1016] = 379, - [1017] = 505, - [1018] = 492, - [1019] = 705, - [1020] = 389, - [1021] = 381, - [1022] = 720, - [1023] = 722, - [1024] = 385, - [1025] = 375, - [1026] = 363, - [1027] = 362, - [1028] = 880, - [1029] = 378, - [1030] = 727, - [1031] = 380, - [1032] = 382, - [1033] = 372, - [1034] = 390, - [1035] = 385, - [1036] = 378, - [1037] = 362, - [1038] = 379, - [1039] = 363, - [1040] = 367, - [1041] = 387, - [1042] = 386, - [1043] = 370, - [1044] = 389, - [1045] = 388, - [1046] = 377, - [1047] = 377, - [1048] = 390, - [1049] = 905, - [1050] = 369, - [1051] = 382, - [1052] = 377, - [1053] = 880, - [1054] = 368, - [1055] = 874, - [1056] = 390, - [1057] = 959, - [1058] = 370, - [1059] = 387, - [1060] = 386, - [1061] = 367, - [1062] = 373, - [1063] = 367, - [1064] = 369, - [1065] = 382, - [1066] = 372, - [1067] = 829, - [1068] = 368, - [1069] = 694, - [1070] = 388, - [1071] = 367, - [1072] = 374, - [1073] = 820, - [1074] = 829, - [1075] = 374, - [1076] = 368, - [1077] = 391, - [1078] = 382, - [1079] = 1079, - [1080] = 967, - [1081] = 880, - [1082] = 820, - [1083] = 829, - [1084] = 1084, - [1085] = 368, - [1086] = 722, - [1087] = 720, - [1088] = 373, - [1089] = 1089, - [1090] = 862, - [1091] = 876, - [1092] = 369, - [1093] = 367, - [1094] = 379, - [1095] = 368, - [1096] = 1089, - [1097] = 905, - [1098] = 377, - [1099] = 378, - [1100] = 369, - [1101] = 373, - [1102] = 367, - [1103] = 380, - [1104] = 390, - [1105] = 370, - [1106] = 369, - [1107] = 385, - [1108] = 909, - [1109] = 905, - [1110] = 867, - [1111] = 368, - [1112] = 377, - [1113] = 380, - [1114] = 369, - [1115] = 390, - [1116] = 820, - [1117] = 722, - [1118] = 720, - [1119] = 389, - [1120] = 386, - [1121] = 387, - [1122] = 909, - [1123] = 374, - [1124] = 379, - [1125] = 367, - [1126] = 862, - [1127] = 397, - [1128] = 820, - [1129] = 378, - [1130] = 880, - [1131] = 375, - [1132] = 829, - [1133] = 397, - [1134] = 918, - [1135] = 381, - [1136] = 916, - [1137] = 705, - [1138] = 905, - [1139] = 694, - [1140] = 391, - [1141] = 931, - [1142] = 369, - [1143] = 388, - [1144] = 370, - [1145] = 382, - [1146] = 863, - [1147] = 982, - [1148] = 867, - [1149] = 376, - [1150] = 370, - [1151] = 384, - [1152] = 383, - [1153] = 376, - [1154] = 384, - [1155] = 863, - [1156] = 916, - [1157] = 383, - [1158] = 918, - [1159] = 943, - [1160] = 362, - [1161] = 363, - [1162] = 1162, - [1163] = 386, - [1164] = 387, - [1165] = 705, - [1166] = 1166, - [1167] = 372, - [1168] = 874, - [1169] = 378, - [1170] = 381, - [1171] = 375, - [1172] = 379, - [1173] = 370, - [1174] = 876, - [1175] = 874, - [1176] = 931, - [1177] = 370, - [1178] = 979, - [1179] = 977, - [1180] = 389, - [1181] = 383, - [1182] = 384, - [1183] = 376, - [1184] = 961, - [1185] = 960, - [1186] = 876, - [1187] = 388, - [1188] = 375, - [1189] = 389, - [1190] = 385, - [1191] = 372, - [1192] = 380, - [1193] = 385, - [1194] = 381, - [1195] = 378, - [1196] = 377, - [1197] = 367, - [1198] = 385, - [1199] = 391, - [1200] = 960, - [1201] = 367, - [1202] = 1089, - [1203] = 377, - [1204] = 389, - [1205] = 390, - [1206] = 372, - [1207] = 388, - [1208] = 373, - [1209] = 391, - [1210] = 391, - [1211] = 388, - [1212] = 1212, - [1213] = 374, - [1214] = 380, - [1215] = 368, - [1216] = 679, - [1217] = 1162, - [1218] = 960, - [1219] = 961, - [1220] = 372, - [1221] = 390, - [1222] = 370, - [1223] = 369, - [1224] = 368, - [1225] = 674, - [1226] = 905, - [1227] = 379, - [1228] = 378, - [1229] = 373, - [1230] = 377, - [1231] = 369, - [1232] = 370, - [1233] = 390, - [1234] = 379, - [1235] = 390, - [1236] = 660, - [1237] = 378, - [1238] = 380, - [1239] = 389, - [1240] = 370, - [1241] = 368, - [1242] = 369, - [1243] = 370, - [1244] = 368, - [1245] = 369, - [1246] = 374, - [1247] = 389, - [1248] = 372, - [1249] = 372, - [1250] = 673, - [1251] = 377, - [1252] = 376, - [1253] = 384, - [1254] = 372, - [1255] = 373, - [1256] = 374, - [1257] = 383, - [1258] = 381, - [1259] = 385, - [1260] = 388, - [1261] = 386, - [1262] = 375, - [1263] = 370, - [1264] = 387, - [1265] = 1265, - [1266] = 388, - [1267] = 367, - [1268] = 376, - [1269] = 384, - [1270] = 383, - [1271] = 967, - [1272] = 820, - [1273] = 1089, - [1274] = 379, - [1275] = 397, - [1276] = 829, - [1277] = 382, - [1278] = 370, - [1279] = 1265, - [1280] = 375, - [1281] = 880, - [1282] = 374, - [1283] = 373, - [1284] = 380, - [1285] = 382, - [1286] = 374, - [1287] = 378, - [1288] = 379, - [1289] = 982, - [1290] = 959, - [1291] = 380, - [1292] = 943, - [1293] = 820, - [1294] = 385, - [1295] = 373, - [1296] = 829, - [1297] = 722, - [1298] = 376, - [1299] = 381, - [1300] = 384, - [1301] = 385, - [1302] = 720, - [1303] = 383, - [1304] = 862, - [1305] = 943, - [1306] = 368, - [1307] = 705, - [1308] = 694, - [1309] = 863, - [1310] = 379, - [1311] = 378, - [1312] = 382, - [1313] = 380, - [1314] = 977, - [1315] = 374, - [1316] = 375, - [1317] = 916, - [1318] = 918, - [1319] = 876, - [1320] = 874, - [1321] = 967, - [1322] = 386, - [1323] = 368, - [1324] = 979, - [1325] = 977, - [1326] = 387, - [1327] = 389, - [1328] = 389, - [1329] = 465, - [1330] = 1330, - [1331] = 397, - [1332] = 959, - [1333] = 467, - [1334] = 1334, - [1335] = 979, - [1336] = 387, - [1337] = 1265, - [1338] = 369, - [1339] = 375, - [1340] = 386, - [1341] = 1341, - [1342] = 381, - [1343] = 390, - [1344] = 1344, - [1345] = 1345, - [1346] = 681, - [1347] = 372, - [1348] = 1348, - [1349] = 377, - [1350] = 982, - [1351] = 387, - [1352] = 386, - [1353] = 382, - [1354] = 874, - [1355] = 876, - [1356] = 1341, - [1357] = 387, - [1358] = 386, - [1359] = 1265, - [1360] = 381, - [1361] = 376, - [1362] = 384, - [1363] = 388, - [1364] = 383, - [1365] = 375, - [1366] = 381, - [1367] = 386, - [1368] = 389, - [1369] = 463, - [1370] = 385, - [1371] = 387, - [1372] = 1372, - [1373] = 1373, - [1374] = 383, - [1375] = 1265, - [1376] = 961, - [1377] = 1348, - [1378] = 1265, - [1379] = 1345, - [1380] = 390, - [1381] = 1265, - [1382] = 380, - [1383] = 384, - [1384] = 1384, - [1385] = 388, - [1386] = 1079, - [1387] = 959, - [1388] = 382, - [1389] = 377, - [1390] = 376, - [1391] = 384, - [1392] = 1166, - [1393] = 383, - [1394] = 1084, - [1395] = 381, - [1396] = 375, - [1397] = 1397, - [1398] = 382, - [1399] = 967, - [1400] = 385, - [1401] = 376, - [1402] = 369, - [1403] = 378, - [1404] = 373, - [1405] = 379, - [1406] = 1406, - [1407] = 876, - [1408] = 874, - [1409] = 380, - [1410] = 463, - [1411] = 374, - [1412] = 880, - [1413] = 1334, - [1414] = 1089, - [1415] = 391, - [1416] = 1212, - [1417] = 1417, - [1418] = 1330, - [1419] = 1417, - [1420] = 1162, - [1421] = 960, - [1422] = 1089, - [1423] = 660, - [1424] = 1417, - [1425] = 385, - [1426] = 378, - [1427] = 380, - [1428] = 379, - [1429] = 381, - [1430] = 1084, - [1431] = 385, - [1432] = 389, - [1433] = 1084, - [1434] = 370, - [1435] = 373, - [1436] = 375, - [1437] = 381, - [1438] = 389, - [1439] = 1417, - [1440] = 1345, - [1441] = 880, - [1442] = 1384, - [1443] = 467, - [1444] = 391, - [1445] = 1397, - [1446] = 1406, - [1447] = 505, - [1448] = 369, - [1449] = 734, - [1450] = 492, - [1451] = 382, - [1452] = 368, - [1453] = 961, - [1454] = 367, - [1455] = 379, - [1456] = 391, - [1457] = 1348, - [1458] = 729, - [1459] = 378, - [1460] = 1341, - [1461] = 1344, - [1462] = 374, - [1463] = 369, - [1464] = 383, - [1465] = 384, - [1466] = 373, - [1467] = 375, - [1468] = 376, - [1469] = 465, - [1470] = 967, - [1471] = 722, - [1472] = 720, - [1473] = 705, - [1474] = 362, - [1475] = 390, - [1476] = 381, - [1477] = 387, - [1478] = 386, - [1479] = 372, - [1480] = 389, - [1481] = 372, - [1482] = 377, - [1483] = 1417, - [1484] = 1089, - [1485] = 370, - [1486] = 681, - [1487] = 674, - [1488] = 673, - [1489] = 390, - [1490] = 388, - [1491] = 1406, - [1492] = 391, - [1493] = 368, - [1494] = 369, - [1495] = 397, - [1496] = 1089, - [1497] = 368, - [1498] = 369, - [1499] = 905, - [1500] = 370, - [1501] = 369, - [1502] = 368, - [1503] = 370, - [1504] = 373, - [1505] = 874, - [1506] = 383, - [1507] = 384, - [1508] = 727, - [1509] = 726, - [1510] = 876, - [1511] = 370, - [1512] = 959, - [1513] = 377, - [1514] = 376, - [1515] = 1079, - [1516] = 390, - [1517] = 376, - [1518] = 379, - [1519] = 378, - [1520] = 382, - [1521] = 694, - [1522] = 377, - [1523] = 679, - [1524] = 1162, - [1525] = 380, - [1526] = 374, - [1527] = 363, - [1528] = 367, - [1529] = 375, - [1530] = 391, - [1531] = 1417, - [1532] = 397, - [1533] = 384, - [1534] = 397, - [1535] = 382, - [1536] = 679, - [1537] = 383, - [1538] = 368, - [1539] = 1345, - [1540] = 387, - [1541] = 905, - [1542] = 1166, - [1543] = 372, - [1544] = 386, - [1545] = 1166, - [1546] = 1348, - [1547] = 1079, - [1548] = 1341, - [1549] = 1162, - [1550] = 1417, - [1551] = 388, - [1552] = 391, - [1553] = 387, - [1554] = 388, - [1555] = 385, - [1556] = 386, - [1557] = 367, - [1558] = 1341, - [1559] = 1559, - [1560] = 1559, - [1561] = 389, - [1562] = 1559, - [1563] = 387, - [1564] = 1559, - [1565] = 1565, - [1566] = 1559, - [1567] = 397, - [1568] = 1559, - [1569] = 368, - [1570] = 387, - [1571] = 1559, - [1572] = 386, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1397, - [1577] = 1212, - [1578] = 1578, - [1579] = 390, - [1580] = 1397, - [1581] = 379, - [1582] = 1559, - [1583] = 378, - [1584] = 959, - [1585] = 382, - [1586] = 1559, - [1587] = 1559, - [1588] = 375, - [1589] = 1573, - [1590] = 1559, - [1591] = 391, - [1592] = 1559, - [1593] = 388, - [1594] = 397, - [1595] = 1559, - [1596] = 368, - [1597] = 369, - [1598] = 1575, - [1599] = 1574, - [1600] = 1600, - [1601] = 1573, - [1602] = 1573, - [1603] = 1344, - [1604] = 1604, - [1605] = 1345, - [1606] = 381, - [1607] = 1559, - [1608] = 1559, - [1609] = 1609, - [1610] = 372, - [1611] = 1604, - [1612] = 1559, - [1613] = 1348, - [1614] = 1614, - [1615] = 370, - [1616] = 1559, - [1617] = 492, - [1618] = 1618, - [1619] = 1609, - [1620] = 1559, - [1621] = 1559, - [1622] = 388, - [1623] = 1573, - [1624] = 1559, - [1625] = 1625, - [1626] = 1559, - [1627] = 1559, - [1628] = 1578, - [1629] = 1212, - [1630] = 1559, - [1631] = 1330, - [1632] = 1618, - [1633] = 1609, - [1634] = 1600, - [1635] = 1574, - [1636] = 1575, - [1637] = 1344, - [1638] = 1638, - [1639] = 505, - [1640] = 1559, - [1641] = 876, - [1642] = 1559, - [1643] = 1574, - [1644] = 1559, - [1645] = 1618, - [1646] = 1341, - [1647] = 1559, - [1648] = 1648, - [1649] = 1345, - [1650] = 1384, - [1651] = 1559, - [1652] = 1652, - [1653] = 1341, - [1654] = 1600, - [1655] = 959, - [1656] = 377, - [1657] = 1559, - [1658] = 397, - [1659] = 1559, - [1660] = 874, - [1661] = 1575, - [1662] = 1575, - [1663] = 1604, - [1664] = 1574, - [1665] = 1625, - [1666] = 1638, - [1667] = 369, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1573, - [1675] = 1652, - [1676] = 1648, - [1677] = 1614, - [1678] = 1565, - [1679] = 1679, - [1680] = 1573, - [1681] = 382, - [1682] = 1574, - [1683] = 1559, - [1684] = 1600, - [1685] = 1673, - [1686] = 1575, - [1687] = 383, - [1688] = 384, - [1689] = 1618, - [1690] = 391, - [1691] = 376, - [1692] = 1559, - [1693] = 1609, - [1694] = 1348, - [1695] = 1600, - [1696] = 1559, - [1697] = 1384, - [1698] = 377, - [1699] = 1578, - [1700] = 386, - [1701] = 376, - [1702] = 1348, - [1703] = 384, - [1704] = 383, - [1705] = 694, - [1706] = 705, - [1707] = 391, - [1708] = 1672, - [1709] = 1559, - [1710] = 377, - [1711] = 385, - [1712] = 1559, - [1713] = 720, - [1714] = 397, - [1715] = 1559, - [1716] = 722, - [1717] = 1671, - [1718] = 372, - [1719] = 1679, - [1720] = 386, - [1721] = 390, - [1722] = 387, - [1723] = 1618, - [1724] = 1559, - [1725] = 1559, - [1726] = 374, - [1727] = 734, - [1728] = 1345, - [1729] = 1609, - [1730] = 380, - [1731] = 1600, - [1732] = 1668, - [1733] = 1559, - [1734] = 382, - [1735] = 1578, - [1736] = 1670, - [1737] = 1600, - [1738] = 729, - [1739] = 1348, - [1740] = 1679, - [1741] = 1638, - [1742] = 1330, - [1743] = 1559, - [1744] = 1565, - [1745] = 373, - [1746] = 1614, - [1747] = 1559, - [1748] = 1334, - [1749] = 370, - [1750] = 1648, - [1751] = 1559, - [1752] = 1559, - [1753] = 1334, - [1754] = 1652, - [1755] = 1559, - [1756] = 376, - [1757] = 397, - [1758] = 384, - [1759] = 1559, - [1760] = 383, - [1761] = 967, - [1762] = 1345, - [1763] = 1618, - [1764] = 1559, - [1765] = 726, - [1766] = 1673, - [1767] = 727, - [1768] = 1672, - [1769] = 1162, - [1770] = 1679, - [1771] = 1671, - [1772] = 381, - [1773] = 375, - [1774] = 1578, - [1775] = 378, - [1776] = 379, - [1777] = 1578, - [1778] = 362, - [1779] = 1559, - [1780] = 1559, - [1781] = 967, - [1782] = 389, - [1783] = 1669, - [1784] = 1578, - [1785] = 363, - [1786] = 1668, - [1787] = 1559, - [1788] = 1638, - [1789] = 1341, - [1790] = 1559, - [1791] = 1625, - [1792] = 1559, - [1793] = 1638, - [1794] = 1625, - [1795] = 390, - [1796] = 385, - [1797] = 1559, - [1798] = 397, - [1799] = 1565, - [1800] = 1669, - [1801] = 1559, - [1802] = 374, - [1803] = 1668, - [1804] = 381, - [1805] = 380, - [1806] = 1559, - [1807] = 1559, - [1808] = 1670, - [1809] = 1669, - [1810] = 1559, - [1811] = 1614, - [1812] = 1574, - [1813] = 373, - [1814] = 1679, - [1815] = 372, - [1816] = 1679, - [1817] = 1625, - [1818] = 1638, - [1819] = 1669, - [1820] = 1670, - [1821] = 375, - [1822] = 1559, - [1823] = 1671, - [1824] = 1672, - [1825] = 1559, - [1826] = 1673, - [1827] = 1648, - [1828] = 1559, - [1829] = 1565, - [1830] = 1652, - [1831] = 1652, - [1832] = 378, - [1833] = 379, - [1834] = 1559, - [1835] = 1648, - [1836] = 1614, - [1837] = 389, - [1838] = 1648, - [1839] = 1614, - [1840] = 1565, - [1841] = 385, - [1842] = 1559, - [1843] = 1652, - [1844] = 1673, - [1845] = 388, - [1846] = 1625, - [1847] = 1638, - [1848] = 1668, - [1849] = 1669, - [1850] = 1670, - [1851] = 1671, - [1852] = 1672, - [1853] = 1673, - [1854] = 1672, - [1855] = 1652, - [1856] = 1648, - [1857] = 1614, - [1858] = 1565, - [1859] = 1679, - [1860] = 1671, - [1861] = 374, - [1862] = 1670, - [1863] = 1669, - [1864] = 1668, - [1865] = 1559, - [1866] = 380, - [1867] = 373, - [1868] = 1673, - [1869] = 1672, - [1870] = 1559, - [1871] = 1671, - [1872] = 1575, - [1873] = 1625, - [1874] = 1670, - [1875] = 829, - [1876] = 370, - [1877] = 375, - [1878] = 918, - [1879] = 722, - [1880] = 367, - [1881] = 720, - [1882] = 397, - [1883] = 874, - [1884] = 876, - [1885] = 374, - [1886] = 820, - [1887] = 397, - [1888] = 862, - [1889] = 916, - [1890] = 1344, - [1891] = 397, - [1892] = 380, - [1893] = 874, - [1894] = 378, - [1895] = 391, - [1896] = 876, - [1897] = 829, - [1898] = 368, - [1899] = 820, - [1900] = 1397, - [1901] = 373, - [1902] = 705, - [1903] = 376, - [1904] = 379, - [1905] = 369, - [1906] = 384, - [1907] = 368, - [1908] = 383, - [1909] = 381, - [1910] = 1162, - [1911] = 385, - [1912] = 369, - [1913] = 367, - [1914] = 389, - [1915] = 863, - [1916] = 694, - [1917] = 391, - [1918] = 694, - [1919] = 370, - [1920] = 863, - [1921] = 705, - [1922] = 368, - [1923] = 1162, - [1924] = 722, - [1925] = 369, - [1926] = 720, - [1927] = 862, - [1928] = 757, - [1929] = 391, - [1930] = 370, - [1931] = 1931, + [881] = 465, + [882] = 607, + [883] = 464, + [884] = 480, + [885] = 885, + [886] = 813, + [887] = 484, + [888] = 488, + [889] = 492, + [890] = 465, + [891] = 470, + [892] = 464, + [893] = 473, + [894] = 468, + [895] = 583, + [896] = 464, + [897] = 573, + [898] = 478, + [899] = 465, + [900] = 477, + [901] = 491, + [902] = 465, + [903] = 575, + [904] = 464, + [905] = 604, + [906] = 465, + [907] = 813, + [908] = 604, + [909] = 607, + [910] = 482, + [911] = 464, + [912] = 483, + [913] = 807, + [914] = 481, + [915] = 486, + [916] = 487, + [917] = 490, + [918] = 479, + [919] = 487, + [920] = 469, + [921] = 479, + [922] = 489, + [923] = 490, + [924] = 486, + [925] = 925, + [926] = 926, + [927] = 478, + [928] = 477, + [929] = 491, + [930] = 481, + [931] = 488, + [932] = 819, + [933] = 925, + [934] = 492, + [935] = 470, + [936] = 583, + [937] = 925, + [938] = 815, + [939] = 607, + [940] = 813, + [941] = 465, + [942] = 464, + [943] = 464, + [944] = 604, + [945] = 807, + [946] = 465, + [947] = 473, + [948] = 809, + [949] = 607, + [950] = 590, + [951] = 925, + [952] = 494, + [953] = 464, + [954] = 465, + [955] = 925, + [956] = 464, + [957] = 815, + [958] = 925, + [959] = 470, + [960] = 465, + [961] = 822, + [962] = 613, + [963] = 475, + [964] = 484, + [965] = 468, + [966] = 469, + [967] = 583, + [968] = 480, + [969] = 469, + [970] = 468, + [971] = 573, + [972] = 575, + [973] = 573, + [974] = 473, + [975] = 488, + [976] = 583, + [977] = 492, + [978] = 470, + [979] = 598, + [980] = 474, + [981] = 575, + [982] = 485, + [983] = 473, + [984] = 484, + [985] = 874, + [986] = 822, + [987] = 480, + [988] = 476, + [989] = 925, + [990] = 475, + [991] = 818, + [992] = 859, + [993] = 832, + [994] = 885, + [995] = 880, + [996] = 468, + [997] = 925, + [998] = 489, + [999] = 482, + [1000] = 854, + [1001] = 861, + [1002] = 818, + [1003] = 876, + [1004] = 483, + [1005] = 474, + [1006] = 809, + [1007] = 819, + [1008] = 485, + [1009] = 476, + [1010] = 465, + [1011] = 1011, + [1012] = 813, + [1013] = 476, + [1014] = 1014, + [1015] = 474, + [1016] = 475, + [1017] = 491, + [1018] = 477, + [1019] = 478, + [1020] = 479, + [1021] = 876, + [1022] = 487, + [1023] = 874, + [1024] = 464, + [1025] = 465, + [1026] = 926, + [1027] = 485, + [1028] = 822, + [1029] = 476, + [1030] = 1030, + [1031] = 490, + [1032] = 470, + [1033] = 474, + [1034] = 475, + [1035] = 575, + [1036] = 1036, + [1037] = 482, + [1038] = 483, + [1039] = 854, + [1040] = 473, + [1041] = 464, + [1042] = 861, + [1043] = 491, + [1044] = 477, + [1045] = 1045, + [1046] = 478, + [1047] = 479, + [1048] = 464, + [1049] = 487, + [1050] = 465, + [1051] = 464, + [1052] = 495, + [1053] = 465, + [1054] = 473, + [1055] = 470, + [1056] = 573, + [1057] = 486, + [1058] = 484, + [1059] = 809, + [1060] = 481, + [1061] = 489, + [1062] = 488, + [1063] = 492, + [1064] = 485, + [1065] = 468, + [1066] = 859, + [1067] = 1067, + [1068] = 1068, + [1069] = 832, + [1070] = 464, + [1071] = 465, + [1072] = 885, + [1073] = 470, + [1074] = 473, + [1075] = 583, + [1076] = 880, + [1077] = 819, + [1078] = 815, + [1079] = 468, + [1080] = 813, + [1081] = 1081, + [1082] = 1082, + [1083] = 482, + [1084] = 483, + [1085] = 480, + [1086] = 470, + [1087] = 473, + [1088] = 468, + [1089] = 469, + [1090] = 604, + [1091] = 469, + [1092] = 469, + [1093] = 874, + [1094] = 876, + [1095] = 494, + [1096] = 809, + [1097] = 494, + [1098] = 822, + [1099] = 491, + [1100] = 1100, + [1101] = 477, + [1102] = 607, + [1103] = 478, + [1104] = 480, + [1105] = 469, + [1106] = 859, + [1107] = 832, + [1108] = 885, + [1109] = 880, + [1110] = 607, + [1111] = 604, + [1112] = 486, + [1113] = 484, + [1114] = 465, + [1115] = 464, + [1116] = 481, + [1117] = 604, + [1118] = 607, + [1119] = 483, + [1120] = 482, + [1121] = 859, + [1122] = 861, + [1123] = 470, + [1124] = 854, + [1125] = 489, + [1126] = 488, + [1127] = 832, + [1128] = 492, + [1129] = 490, + [1130] = 489, + [1131] = 473, + [1132] = 818, + [1133] = 475, + [1134] = 465, + [1135] = 465, + [1136] = 479, + [1137] = 487, + [1138] = 486, + [1139] = 481, + [1140] = 468, + [1141] = 464, + [1142] = 476, + [1143] = 485, + [1144] = 469, + [1145] = 474, + [1146] = 1146, + [1147] = 1011, + [1148] = 1148, + [1149] = 1149, + [1150] = 807, + [1151] = 1030, + [1152] = 490, + [1153] = 1030, + [1154] = 464, + [1155] = 480, + [1156] = 1148, + [1157] = 484, + [1158] = 1158, + [1159] = 488, + [1160] = 885, + [1161] = 492, + [1162] = 880, + [1163] = 1163, + [1164] = 465, + [1165] = 487, + [1166] = 1148, + [1167] = 1011, + [1168] = 1168, + [1169] = 1082, + [1170] = 1068, + [1171] = 1067, + [1172] = 607, + [1173] = 1173, + [1174] = 469, + [1175] = 1045, + [1176] = 489, + [1177] = 470, + [1178] = 604, + [1179] = 494, + [1180] = 1014, + [1181] = 1181, + [1182] = 1182, + [1183] = 491, + [1184] = 1081, + [1185] = 477, + [1186] = 486, + [1187] = 478, + [1188] = 483, + [1189] = 482, + [1190] = 1190, + [1191] = 1191, + [1192] = 1148, + [1193] = 1011, + [1194] = 488, + [1195] = 492, + [1196] = 475, + [1197] = 464, + [1198] = 483, + [1199] = 482, + [1200] = 485, + [1201] = 1146, + [1202] = 1149, + [1203] = 876, + [1204] = 489, + [1205] = 476, + [1206] = 483, + [1207] = 482, + [1208] = 475, + [1209] = 494, + [1210] = 476, + [1211] = 470, + [1212] = 926, + [1213] = 489, + [1214] = 473, + [1215] = 473, + [1216] = 474, + [1217] = 468, + [1218] = 485, + [1219] = 874, + [1220] = 475, + [1221] = 474, + [1222] = 476, + [1223] = 490, + [1224] = 485, + [1225] = 474, + [1226] = 469, + [1227] = 470, + [1228] = 473, + [1229] = 495, + [1230] = 468, + [1231] = 487, + [1232] = 480, + [1233] = 484, + [1234] = 469, + [1235] = 480, + [1236] = 484, + [1237] = 491, + [1238] = 477, + [1239] = 478, + [1240] = 491, + [1241] = 477, + [1242] = 478, + [1243] = 861, + [1244] = 854, + [1245] = 470, + [1246] = 492, + [1247] = 488, + [1248] = 484, + [1249] = 473, + [1250] = 468, + [1251] = 470, + [1252] = 492, + [1253] = 488, + [1254] = 491, + [1255] = 477, + [1256] = 478, + [1257] = 473, + [1258] = 880, + [1259] = 481, + [1260] = 495, + [1261] = 885, + [1262] = 468, + [1263] = 832, + [1264] = 469, + [1265] = 859, + [1266] = 469, + [1267] = 926, + [1268] = 480, + [1269] = 1158, + [1270] = 1163, + [1271] = 859, + [1272] = 480, + [1273] = 832, + [1274] = 885, + [1275] = 1100, + [1276] = 880, + [1277] = 479, + [1278] = 490, + [1279] = 474, + [1280] = 479, + [1281] = 1281, + [1282] = 489, + [1283] = 485, + [1284] = 481, + [1285] = 486, + [1286] = 479, + [1287] = 488, + [1288] = 487, + [1289] = 492, + [1290] = 1158, + [1291] = 1163, + [1292] = 483, + [1293] = 482, + [1294] = 490, + [1295] = 494, + [1296] = 475, + [1297] = 486, + [1298] = 490, + [1299] = 481, + [1300] = 484, + [1301] = 1301, + [1302] = 486, + [1303] = 476, + [1304] = 487, + [1305] = 481, + [1306] = 479, + [1307] = 1163, + [1308] = 469, + [1309] = 488, + [1310] = 492, + [1311] = 470, + [1312] = 1173, + [1313] = 494, + [1314] = 583, + [1315] = 487, + [1316] = 486, + [1317] = 573, + [1318] = 1068, + [1319] = 481, + [1320] = 1100, + [1321] = 1045, + [1322] = 1067, + [1323] = 478, + [1324] = 477, + [1325] = 1191, + [1326] = 1190, + [1327] = 490, + [1328] = 1182, + [1329] = 1181, + [1330] = 832, + [1331] = 859, + [1332] = 575, + [1333] = 473, + [1334] = 479, + [1335] = 1014, + [1336] = 1081, + [1337] = 1148, + [1338] = 495, + [1339] = 859, + [1340] = 491, + [1341] = 1011, + [1342] = 832, + [1343] = 885, + [1344] = 880, + [1345] = 487, + [1346] = 1168, + [1347] = 468, + [1348] = 486, + [1349] = 1149, + [1350] = 478, + [1351] = 495, + [1352] = 481, + [1353] = 477, + [1354] = 1011, + [1355] = 1148, + [1356] = 469, + [1357] = 470, + [1358] = 494, + [1359] = 491, + [1360] = 1067, + [1361] = 1361, + [1362] = 1068, + [1363] = 468, + [1364] = 491, + [1365] = 477, + [1366] = 478, + [1367] = 473, + [1368] = 1368, + [1369] = 469, + [1370] = 1158, + [1371] = 468, + [1372] = 1163, + [1373] = 468, + [1374] = 1149, + [1375] = 474, + [1376] = 1082, + [1377] = 1146, + [1378] = 485, + [1379] = 1014, + [1380] = 1146, + [1381] = 1158, + [1382] = 1382, + [1383] = 473, + [1384] = 484, + [1385] = 490, + [1386] = 1082, + [1387] = 1301, + [1388] = 1163, + [1389] = 479, + [1390] = 1281, + [1391] = 1148, + [1392] = 1011, + [1393] = 480, + [1394] = 1158, + [1395] = 880, + [1396] = 885, + [1397] = 1081, + [1398] = 470, + [1399] = 1158, + [1400] = 479, + [1401] = 1146, + [1402] = 487, + [1403] = 486, + [1404] = 495, + [1405] = 469, + [1406] = 480, + [1407] = 1163, + [1408] = 476, + [1409] = 474, + [1410] = 475, + [1411] = 485, + [1412] = 468, + [1413] = 481, + [1414] = 488, + [1415] = 473, + [1416] = 489, + [1417] = 488, + [1418] = 492, + [1419] = 492, + [1420] = 470, + [1421] = 470, + [1422] = 483, + [1423] = 482, + [1424] = 476, + [1425] = 464, + [1426] = 465, + [1427] = 488, + [1428] = 492, + [1429] = 1429, + [1430] = 475, + [1431] = 1045, + [1432] = 489, + [1433] = 494, + [1434] = 475, + [1435] = 491, + [1436] = 1149, + [1437] = 476, + [1438] = 477, + [1439] = 481, + [1440] = 482, + [1441] = 470, + [1442] = 483, + [1443] = 473, + [1444] = 473, + [1445] = 469, + [1446] = 1100, + [1447] = 470, + [1448] = 494, + [1449] = 484, + [1450] = 486, + [1451] = 468, + [1452] = 485, + [1453] = 487, + [1454] = 489, + [1455] = 474, + [1456] = 479, + [1457] = 473, + [1458] = 490, + [1459] = 478, + [1460] = 469, + [1461] = 483, + [1462] = 482, + [1463] = 489, + [1464] = 490, + [1465] = 482, + [1466] = 483, + [1467] = 1011, + [1468] = 469, + [1469] = 480, + [1470] = 1148, + [1471] = 475, + [1472] = 484, + [1473] = 476, + [1474] = 1474, + [1475] = 468, + [1476] = 485, + [1477] = 474, + [1478] = 480, + [1479] = 484, + [1480] = 1361, + [1481] = 1068, + [1482] = 488, + [1483] = 487, + [1484] = 488, + [1485] = 474, + [1486] = 479, + [1487] = 478, + [1488] = 477, + [1489] = 490, + [1490] = 485, + [1491] = 491, + [1492] = 492, + [1493] = 482, + [1494] = 483, + [1495] = 475, + [1496] = 480, + [1497] = 485, + [1498] = 1498, + [1499] = 486, + [1500] = 474, + [1501] = 481, + [1502] = 490, + [1503] = 484, + [1504] = 474, + [1505] = 474, + [1506] = 485, + [1507] = 486, + [1508] = 476, + [1509] = 1146, + [1510] = 486, + [1511] = 490, + [1512] = 1148, + [1513] = 487, + [1514] = 479, + [1515] = 480, + [1516] = 475, + [1517] = 476, + [1518] = 487, + [1519] = 476, + [1520] = 475, + [1521] = 1182, + [1522] = 494, + [1523] = 1011, + [1524] = 1163, + [1525] = 489, + [1526] = 1158, + [1527] = 479, + [1528] = 470, + [1529] = 880, + [1530] = 484, + [1531] = 479, + [1532] = 482, + [1533] = 483, + [1534] = 1534, + [1535] = 495, + [1536] = 1011, + [1537] = 486, + [1538] = 484, + [1539] = 1149, + [1540] = 481, + [1541] = 476, + [1542] = 1542, + [1543] = 1281, + [1544] = 475, + [1545] = 491, + [1546] = 490, + [1547] = 489, + [1548] = 488, + [1549] = 492, + [1550] = 477, + [1551] = 495, + [1552] = 1181, + [1553] = 478, + [1554] = 479, + [1555] = 487, + [1556] = 1556, + [1557] = 473, + [1558] = 1148, + [1559] = 885, + [1560] = 1081, + [1561] = 1542, + [1562] = 809, + [1563] = 490, + [1564] = 478, + [1565] = 477, + [1566] = 491, + [1567] = 1474, + [1568] = 483, + [1569] = 482, + [1570] = 485, + [1571] = 480, + [1572] = 469, + [1573] = 1301, + [1574] = 1556, + [1575] = 1163, + [1576] = 1576, + [1577] = 490, + [1578] = 478, + [1579] = 477, + [1580] = 480, + [1581] = 491, + [1582] = 468, + [1583] = 479, + [1584] = 478, + [1585] = 489, + [1586] = 492, + [1587] = 475, + [1588] = 491, + [1589] = 487, + [1590] = 482, + [1591] = 477, + [1592] = 477, + [1593] = 478, + [1594] = 491, + [1595] = 489, + [1596] = 832, + [1597] = 469, + [1598] = 474, + [1599] = 859, + [1600] = 489, + [1601] = 1100, + [1602] = 1067, + [1603] = 1173, + [1604] = 494, + [1605] = 480, + [1606] = 1429, + [1607] = 1607, + [1608] = 494, + [1609] = 492, + [1610] = 488, + [1611] = 1168, + [1612] = 475, + [1613] = 1301, + [1614] = 487, + [1615] = 1576, + [1616] = 480, + [1617] = 484, + [1618] = 1361, + [1619] = 483, + [1620] = 1576, + [1621] = 483, + [1622] = 1281, + [1623] = 482, + [1624] = 476, + [1625] = 482, + [1626] = 483, + [1627] = 822, + [1628] = 489, + [1629] = 1301, + [1630] = 1158, + [1631] = 1631, + [1632] = 1163, + [1633] = 485, + [1634] = 1634, + [1635] = 1635, + [1636] = 1576, + [1637] = 470, + [1638] = 473, + [1639] = 1281, + [1640] = 470, + [1641] = 492, + [1642] = 488, + [1643] = 1382, + [1644] = 475, + [1645] = 473, + [1646] = 494, + [1647] = 1191, + [1648] = 1173, + [1649] = 468, + [1650] = 1190, + [1651] = 474, + [1652] = 476, + [1653] = 819, + [1654] = 604, + [1655] = 481, + [1656] = 495, + [1657] = 486, + [1658] = 1474, + [1659] = 468, + [1660] = 470, + [1661] = 473, + [1662] = 469, + [1663] = 470, + [1664] = 473, + [1665] = 469, + [1666] = 485, + [1667] = 1498, + [1668] = 484, + [1669] = 482, + [1670] = 607, + [1671] = 474, + [1672] = 470, + [1673] = 1168, + [1674] = 476, + [1675] = 469, + [1676] = 481, + [1677] = 490, + [1678] = 483, + [1679] = 1576, + [1680] = 481, + [1681] = 1190, + [1682] = 486, + [1683] = 484, + [1684] = 481, + [1685] = 1576, + [1686] = 489, + [1687] = 486, + [1688] = 1158, + [1689] = 484, + [1690] = 492, + [1691] = 481, + [1692] = 491, + [1693] = 477, + [1694] = 470, + [1695] = 473, + [1696] = 1191, + [1697] = 478, + [1698] = 1576, + [1699] = 1368, + [1700] = 488, + [1701] = 492, + [1702] = 480, + [1703] = 1703, + [1704] = 468, + [1705] = 469, + [1706] = 1706, + [1707] = 1707, + [1708] = 1163, + [1709] = 488, + [1710] = 469, + [1711] = 1158, + [1712] = 1181, + [1713] = 479, + [1714] = 473, + [1715] = 470, + [1716] = 1182, + [1717] = 815, + [1718] = 487, + [1719] = 813, + [1720] = 1361, + [1721] = 473, + [1722] = 468, + [1723] = 485, + [1724] = 495, + [1725] = 469, + [1726] = 480, + [1727] = 473, + [1728] = 476, + [1729] = 1542, + [1730] = 1730, + [1731] = 1556, + [1732] = 475, + [1733] = 482, + [1734] = 483, + [1735] = 1498, + [1736] = 494, + [1737] = 489, + [1738] = 1149, + [1739] = 1429, + [1740] = 1382, + [1741] = 1146, + [1742] = 1361, + [1743] = 1368, + [1744] = 1474, + [1745] = 880, + [1746] = 485, + [1747] = 1498, + [1748] = 1556, + [1749] = 1749, + [1750] = 885, + [1751] = 494, + [1752] = 832, + [1753] = 474, + [1754] = 491, + [1755] = 477, + [1756] = 478, + [1757] = 1757, + [1758] = 859, + [1759] = 1542, + [1760] = 491, + [1761] = 477, + [1762] = 478, + [1763] = 490, + [1764] = 479, + [1765] = 487, + [1766] = 479, + [1767] = 1534, + [1768] = 486, + [1769] = 488, + [1770] = 486, + [1771] = 492, + [1772] = 481, + [1773] = 488, + [1774] = 490, + [1775] = 492, + [1776] = 1607, + [1777] = 487, + [1778] = 1749, + [1779] = 470, + [1780] = 473, + [1781] = 484, + [1782] = 480, + [1783] = 484, + [1784] = 854, + [1785] = 481, + [1786] = 469, + [1787] = 861, + [1788] = 480, + [1789] = 494, + [1790] = 480, + [1791] = 1757, + [1792] = 481, + [1793] = 484, + [1794] = 874, + [1795] = 876, + [1796] = 487, + [1797] = 819, + [1798] = 490, + [1799] = 815, + [1800] = 813, + [1801] = 1474, + [1802] = 474, + [1803] = 1474, + [1804] = 492, + [1805] = 488, + [1806] = 1757, + [1807] = 485, + [1808] = 575, + [1809] = 476, + [1810] = 486, + [1811] = 822, + [1812] = 475, + [1813] = 479, + [1814] = 494, + [1815] = 474, + [1816] = 1368, + [1817] = 491, + [1818] = 477, + [1819] = 478, + [1820] = 485, + [1821] = 470, + [1822] = 473, + [1823] = 469, + [1824] = 1730, + [1825] = 489, + [1826] = 1429, + [1827] = 482, + [1828] = 1149, + [1829] = 494, + [1830] = 1730, + [1831] = 573, + [1832] = 469, + [1833] = 476, + [1834] = 483, + [1835] = 495, + [1836] = 478, + [1837] = 477, + [1838] = 491, + [1839] = 1158, + [1840] = 475, + [1841] = 479, + [1842] = 1730, + [1843] = 1163, + [1844] = 495, + [1845] = 1163, + [1846] = 1158, + [1847] = 476, + [1848] = 490, + [1849] = 474, + [1850] = 1749, + [1851] = 482, + [1852] = 475, + [1853] = 491, + [1854] = 477, + [1855] = 478, + [1856] = 479, + [1857] = 487, + [1858] = 485, + [1859] = 482, + [1860] = 1631, + [1861] = 483, + [1862] = 486, + [1863] = 483, + [1864] = 489, + [1865] = 488, + [1866] = 492, + [1867] = 1749, + [1868] = 583, + [1869] = 1730, + [1870] = 490, + [1871] = 1730, + [1872] = 1281, + [1873] = 494, + [1874] = 486, + [1875] = 484, + [1876] = 481, + [1877] = 487, + [1878] = 489, + [1879] = 468, + [1880] = 488, + [1881] = 492, + [1882] = 809, + [1883] = 1301, + [1884] = 1730, + [1885] = 495, + [1886] = 494, + [1887] = 1361, + [1888] = 484, + [1889] = 473, + [1890] = 495, + [1891] = 481, + [1892] = 1634, + [1893] = 1635, + [1894] = 470, + [1895] = 1382, + [1896] = 480, + [1897] = 470, + [1898] = 1146, + [1899] = 1474, + [1900] = 1361, + [1901] = 473, + [1902] = 1190, + [1903] = 1191, + [1904] = 468, + [1905] = 1730, + [1906] = 1749, + [1907] = 822, + [1908] = 470, + [1909] = 1703, + [1910] = 473, + [1911] = 468, + [1912] = 469, + [1913] = 1757, + [1914] = 470, + [1915] = 469, + [1916] = 469, + [1917] = 474, + [1918] = 1158, + [1919] = 489, + [1920] = 476, + [1921] = 482, + [1922] = 1163, + [1923] = 485, + [1924] = 483, + [1925] = 1749, + [1926] = 1926, + [1927] = 1749, + [1928] = 475, + [1929] = 1361, + [1930] = 1930, + [1931] = 1930, [1932] = 1932, - [1933] = 720, - [1934] = 909, + [1933] = 1933, + [1934] = 1934, [1935] = 1935, - [1936] = 370, - [1937] = 374, - [1938] = 368, - [1939] = 1939, - [1940] = 370, - [1941] = 380, - [1942] = 373, - [1943] = 397, - [1944] = 1939, - [1945] = 931, - [1946] = 705, - [1947] = 694, - [1948] = 390, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1930, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 481, + [1946] = 480, + [1947] = 1498, + [1948] = 1948, [1949] = 1949, - [1950] = 369, - [1951] = 722, - [1952] = 876, - [1953] = 874, - [1954] = 385, - [1955] = 867, - [1956] = 960, - [1957] = 370, - [1958] = 372, - [1959] = 1939, - [1960] = 388, - [1961] = 961, - [1962] = 1962, - [1963] = 381, - [1964] = 382, - [1965] = 862, - [1966] = 1935, - [1967] = 387, - [1968] = 367, - [1969] = 370, - [1970] = 386, - [1971] = 397, - [1972] = 1962, - [1973] = 916, - [1974] = 389, - [1975] = 370, - [1976] = 370, - [1977] = 829, - [1978] = 370, - [1979] = 820, - [1980] = 377, - [1981] = 372, - [1982] = 388, - [1983] = 379, - [1984] = 378, - [1985] = 880, - [1986] = 368, - [1987] = 382, - [1988] = 383, - [1989] = 397, - [1990] = 384, - [1991] = 863, - [1992] = 377, - [1993] = 918, - [1994] = 390, - [1995] = 376, - [1996] = 829, - [1997] = 367, - [1998] = 905, - [1999] = 1949, - [2000] = 820, - [2001] = 1962, - [2002] = 1935, - [2003] = 386, - [2004] = 369, - [2005] = 387, - [2006] = 369, - [2007] = 368, - [2008] = 1949, - [2009] = 370, - [2010] = 370, - [2011] = 375, - [2012] = 2012, - [2013] = 381, - [2014] = 389, - [2015] = 2015, - [2016] = 377, - [2017] = 374, - [2018] = 874, - [2019] = 961, - [2020] = 369, - [2021] = 960, - [2022] = 382, - [2023] = 876, - [2024] = 368, - [2025] = 390, - [2026] = 370, - [2027] = 959, - [2028] = 368, - [2029] = 386, - [2030] = 368, - [2031] = 373, - [2032] = 369, - [2033] = 370, - [2034] = 391, - [2035] = 967, - [2036] = 368, - [2037] = 389, - [2038] = 369, - [2039] = 381, - [2040] = 385, - [2041] = 391, - [2042] = 387, - [2043] = 368, - [2044] = 386, - [2045] = 367, - [2046] = 388, - [2047] = 2012, - [2048] = 372, - [2049] = 367, - [2050] = 977, - [2051] = 880, - [2052] = 2012, - [2053] = 2053, - [2054] = 375, - [2055] = 1084, - [2056] = 369, - [2057] = 377, - [2058] = 385, - [2059] = 874, - [2060] = 378, - [2061] = 387, - [2062] = 2053, - [2063] = 375, - [2064] = 379, - [2065] = 390, - [2066] = 379, - [2067] = 2015, - [2068] = 369, - [2069] = 378, - [2070] = 368, - [2071] = 368, - [2072] = 389, - [2073] = 979, - [2074] = 367, - [2075] = 388, - [2076] = 369, - [2077] = 382, - [2078] = 368, - [2079] = 391, - [2080] = 368, - [2081] = 383, - [2082] = 370, - [2083] = 943, - [2084] = 384, - [2085] = 376, - [2086] = 2015, - [2087] = 380, - [2088] = 385, - [2089] = 905, - [2090] = 2012, - [2091] = 375, - [2092] = 367, - [2093] = 1079, - [2094] = 2094, - [2095] = 374, - [2096] = 2096, - [2097] = 380, - [2098] = 372, - [2099] = 2096, - [2100] = 2015, - [2101] = 876, - [2102] = 2015, - [2103] = 376, - [2104] = 1162, - [2105] = 384, - [2106] = 383, - [2107] = 380, - [2108] = 373, - [2109] = 2053, - [2110] = 2053, - [2111] = 369, - [2112] = 2053, - [2113] = 369, - [2114] = 1931, - [2115] = 2012, - [2116] = 2015, - [2117] = 2053, - [2118] = 2012, - [2119] = 1932, - [2120] = 369, - [2121] = 381, - [2122] = 383, - [2123] = 384, - [2124] = 376, - [2125] = 370, - [2126] = 375, - [2127] = 373, - [2128] = 391, - [2129] = 2129, - [2130] = 390, - [2131] = 2131, - [2132] = 377, - [2133] = 381, - [2134] = 386, - [2135] = 387, - [2136] = 382, - [2137] = 1344, - [2138] = 1384, - [2139] = 1084, - [2140] = 2096, - [2141] = 397, - [2142] = 391, - [2143] = 1166, - [2144] = 1079, - [2145] = 372, - [2146] = 2146, - [2147] = 2147, - [2148] = 375, - [2149] = 385, - [2150] = 1089, - [2151] = 2151, - [2152] = 389, - [2153] = 2153, - [2154] = 391, - [2155] = 397, - [2156] = 2053, - [2157] = 380, - [2158] = 376, - [2159] = 382, - [2160] = 384, - [2161] = 383, - [2162] = 370, - [2163] = 376, - [2164] = 384, - [2165] = 383, - [2166] = 367, - [2167] = 368, - [2168] = 369, - [2169] = 381, - [2170] = 381, - [2171] = 2096, - [2172] = 2096, - [2173] = 382, - [2174] = 1330, - [2175] = 387, - [2176] = 375, - [2177] = 386, - [2178] = 959, - [2179] = 387, - [2180] = 386, - [2181] = 377, - [2182] = 2182, - [2183] = 369, - [2184] = 368, - [2185] = 383, - [2186] = 378, - [2187] = 379, - [2188] = 384, - [2189] = 376, - [2190] = 375, - [2191] = 377, - [2192] = 378, - [2193] = 379, - [2194] = 1334, - [2195] = 967, - [2196] = 390, - [2197] = 389, - [2198] = 390, - [2199] = 376, - [2200] = 384, - [2201] = 383, - [2202] = 385, - [2203] = 389, - [2204] = 374, - [2205] = 380, - [2206] = 2206, - [2207] = 1162, - [2208] = 2208, - [2209] = 388, - [2210] = 385, - [2211] = 373, - [2212] = 2094, - [2213] = 374, - [2214] = 905, - [2215] = 380, - [2216] = 2216, - [2217] = 382, - [2218] = 373, - [2219] = 373, - [2220] = 376, - [2221] = 384, - [2222] = 397, - [2223] = 381, - [2224] = 380, - [2225] = 374, - [2226] = 375, - [2227] = 378, - [2228] = 379, - [2229] = 876, - [2230] = 874, - [2231] = 880, - [2232] = 389, - [2233] = 372, - [2234] = 385, - [2235] = 385, - [2236] = 387, - [2237] = 386, - [2238] = 383, - [2239] = 388, - [2240] = 388, - [2241] = 2241, - [2242] = 389, - [2243] = 391, - [2244] = 379, - [2245] = 374, - [2246] = 380, - [2247] = 378, - [2248] = 377, - [2249] = 381, - [2250] = 372, - [2251] = 372, - [2252] = 1089, - [2253] = 388, - [2254] = 391, - [2255] = 390, - [2256] = 2256, - [2257] = 2257, - [2258] = 2257, - [2259] = 381, - [2260] = 385, - [2261] = 375, - [2262] = 2257, - [2263] = 2094, - [2264] = 1341, - [2265] = 397, - [2266] = 397, - [2267] = 380, - [2268] = 378, - [2269] = 379, - [2270] = 2257, - [2271] = 374, - [2272] = 2272, - [2273] = 2273, - [2274] = 2274, - [2275] = 2257, - [2276] = 2276, - [2277] = 2277, - [2278] = 2278, - [2279] = 373, - [2280] = 397, - [2281] = 2257, - [2282] = 2282, - [2283] = 2257, - [2284] = 383, - [2285] = 2285, - [2286] = 2286, - [2287] = 384, - [2288] = 2288, - [2289] = 376, - [2290] = 2290, - [2291] = 2257, - [2292] = 362, - [2293] = 2257, - [2294] = 363, - [2295] = 1334, - [2296] = 373, - [2297] = 2257, - [2298] = 1397, - [2299] = 397, - [2300] = 2257, - [2301] = 2301, - [2302] = 2302, - [2303] = 2257, - [2304] = 1330, - [2305] = 2305, - [2306] = 2257, - [2307] = 2257, - [2308] = 1212, - [2309] = 2309, - [2310] = 2310, - [2311] = 2311, - [2312] = 1162, - [2313] = 391, - [2314] = 2257, - [2315] = 2257, - [2316] = 389, - [2317] = 2257, - [2318] = 2257, - [2319] = 2319, - [2320] = 2320, - [2321] = 967, - [2322] = 1341, - [2323] = 2323, - [2324] = 2302, - [2325] = 2257, - [2326] = 2326, - [2327] = 2241, - [2328] = 2257, - [2329] = 2257, - [2330] = 2302, - [2331] = 2331, - [2332] = 2302, - [2333] = 2257, - [2334] = 2334, - [2335] = 2257, - [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 2257, - [2340] = 2340, - [2341] = 2341, - [2342] = 397, - [2343] = 2302, - [2344] = 372, - [2345] = 1348, - [2346] = 380, - [2347] = 379, - [2348] = 378, - [2349] = 388, - [2350] = 380, - [2351] = 2351, - [2352] = 1344, - [2353] = 2257, - [2354] = 2354, - [2355] = 2208, - [2356] = 2182, - [2357] = 2257, - [2358] = 2216, - [2359] = 2257, - [2360] = 2257, - [2361] = 2361, - [2362] = 2362, - [2363] = 375, - [2364] = 2257, - [2365] = 390, - [2366] = 2257, - [2367] = 377, - [2368] = 375, - [2369] = 1345, - [2370] = 2206, - [2371] = 374, - [2372] = 2372, - [2373] = 959, - [2374] = 382, - [2375] = 2094, - [2376] = 2302, - [2377] = 386, - [2378] = 387, - [2379] = 2257, - [2380] = 2257, - [2381] = 2381, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 2257, - [2386] = 2257, + [1950] = 1950, + [1951] = 495, + [1952] = 1281, + [1953] = 1534, + [1954] = 479, + [1955] = 486, + [1956] = 488, + [1957] = 1607, + [1958] = 1301, + [1959] = 1498, + [1960] = 492, + [1961] = 1556, + [1962] = 490, + [1963] = 1942, + [1964] = 494, + [1965] = 487, + [1966] = 1631, + [1967] = 1948, + [1968] = 1158, + [1969] = 1949, + [1970] = 1950, + [1971] = 484, + [1972] = 1163, + [1973] = 481, + [1974] = 1703, + [1975] = 1975, + [1976] = 1932, + [1977] = 480, + [1978] = 1933, + [1979] = 474, + [1980] = 1934, + [1981] = 1935, + [1982] = 1982, + [1983] = 1936, + [1984] = 1937, + [1985] = 1938, + [1986] = 485, + [1987] = 1940, + [1988] = 1941, + [1989] = 1942, + [1990] = 1943, + [1991] = 1944, + [1992] = 491, + [1993] = 476, + [1994] = 495, + [1995] = 474, + [1996] = 491, + [1997] = 475, + [1998] = 1975, + [1999] = 1932, + [2000] = 1934, + [2001] = 1948, + [2002] = 485, + [2003] = 1975, + [2004] = 482, + [2005] = 483, + [2006] = 477, + [2007] = 1975, + [2008] = 1935, + [2009] = 1936, + [2010] = 1937, + [2011] = 1938, + [2012] = 478, + [2013] = 1940, + [2014] = 1932, + [2015] = 1542, + [2016] = 1941, + [2017] = 1634, + [2018] = 1942, + [2019] = 1635, + [2020] = 1556, + [2021] = 1934, + [2022] = 1935, + [2023] = 2023, + [2024] = 1474, + [2025] = 489, + [2026] = 494, + [2027] = 1936, + [2028] = 1944, + [2029] = 1943, + [2030] = 1937, + [2031] = 1938, + [2032] = 487, + [2033] = 469, + [2034] = 1940, + [2035] = 2023, + [2036] = 1948, + [2037] = 478, + [2038] = 1942, + [2039] = 1941, + [2040] = 1940, + [2041] = 2041, + [2042] = 1938, + [2043] = 1937, + [2044] = 1936, + [2045] = 1935, + [2046] = 476, + [2047] = 1934, + [2048] = 1933, + [2049] = 1949, + [2050] = 1943, + [2051] = 1932, + [2052] = 1944, + [2053] = 1975, + [2054] = 1941, + [2055] = 1635, + [2056] = 1950, + [2057] = 475, + [2058] = 479, + [2059] = 2023, + [2060] = 1930, + [2061] = 2061, + [2062] = 1943, + [2063] = 1944, + [2064] = 1933, + [2065] = 477, + [2066] = 1982, + [2067] = 470, + [2068] = 473, + [2069] = 1948, + [2070] = 1930, + [2071] = 1542, + [2072] = 1933, + [2073] = 486, + [2074] = 469, + [2075] = 482, + [2076] = 1930, + [2077] = 483, + [2078] = 1930, + [2079] = 1930, + [2080] = 490, + [2081] = 488, + [2082] = 1930, + [2083] = 1930, + [2084] = 1930, + [2085] = 1930, + [2086] = 492, + [2087] = 1950, + [2088] = 1930, + [2089] = 1949, + [2090] = 2061, + [2091] = 492, + [2092] = 1982, + [2093] = 489, + [2094] = 495, + [2095] = 488, + [2096] = 1930, + [2097] = 1930, + [2098] = 1930, + [2099] = 1930, + [2100] = 486, + [2101] = 1930, + [2102] = 1930, + [2103] = 1498, + [2104] = 1930, + [2105] = 479, + [2106] = 1556, + [2107] = 1301, + [2108] = 490, + [2109] = 487, + [2110] = 1930, + [2111] = 484, + [2112] = 1930, + [2113] = 464, + [2114] = 481, + [2115] = 465, + [2116] = 480, + [2117] = 1607, + [2118] = 494, + [2119] = 1982, + [2120] = 1930, + [2121] = 489, + [2122] = 1703, + [2123] = 607, + [2124] = 494, + [2125] = 880, + [2126] = 885, + [2127] = 468, + [2128] = 1930, + [2129] = 1950, + [2130] = 1949, + [2131] = 1950, + [2132] = 1949, + [2133] = 1930, + [2134] = 1982, + [2135] = 473, + [2136] = 1930, + [2137] = 1948, + [2138] = 604, + [2139] = 2041, + [2140] = 1930, + [2141] = 1930, + [2142] = 1930, + [2143] = 1930, + [2144] = 1930, + [2145] = 1982, + [2146] = 1930, + [2147] = 1474, + [2148] = 1930, + [2149] = 1930, + [2150] = 1930, + [2151] = 1930, + [2152] = 470, + [2153] = 1930, + [2154] = 832, + [2155] = 859, + [2156] = 1634, + [2157] = 1930, + [2158] = 1498, + [2159] = 1930, + [2160] = 495, + [2161] = 1474, + [2162] = 483, + [2163] = 1930, + [2164] = 1930, + [2165] = 1930, + [2166] = 2061, + [2167] = 1930, + [2168] = 1930, + [2169] = 1930, + [2170] = 1930, + [2171] = 1930, + [2172] = 1930, + [2173] = 1542, + [2174] = 1975, + [2175] = 1930, + [2176] = 1930, + [2177] = 1930, + [2178] = 1930, + [2179] = 1930, + [2180] = 1930, + [2181] = 1930, + [2182] = 495, + [2183] = 1930, + [2184] = 1950, + [2185] = 1930, + [2186] = 1930, + [2187] = 1930, + [2188] = 1949, + [2189] = 1930, + [2190] = 1631, + [2191] = 1930, + [2192] = 1932, + [2193] = 1930, + [2194] = 1930, + [2195] = 1930, + [2196] = 1930, + [2197] = 1938, + [2198] = 1948, + [2199] = 854, + [2200] = 1930, + [2201] = 1534, + [2202] = 2041, + [2203] = 876, + [2204] = 861, + [2205] = 1941, + [2206] = 1930, + [2207] = 1930, + [2208] = 1934, + [2209] = 1935, + [2210] = 482, + [2211] = 874, + [2212] = 1930, + [2213] = 1982, + [2214] = 478, + [2215] = 495, + [2216] = 477, + [2217] = 1930, + [2218] = 491, + [2219] = 1930, + [2220] = 1930, + [2221] = 1930, + [2222] = 475, + [2223] = 1930, + [2224] = 476, + [2225] = 1944, + [2226] = 1943, + [2227] = 1281, + [2228] = 1930, + [2229] = 1942, + [2230] = 1936, + [2231] = 1937, + [2232] = 1941, + [2233] = 1940, + [2234] = 2023, + [2235] = 2023, + [2236] = 1930, + [2237] = 495, + [2238] = 1937, + [2239] = 1936, + [2240] = 1938, + [2241] = 2061, + [2242] = 1940, + [2243] = 2041, + [2244] = 2061, + [2245] = 1942, + [2246] = 1943, + [2247] = 1556, + [2248] = 1935, + [2249] = 1944, + [2250] = 1934, + [2251] = 2061, + [2252] = 1933, + [2253] = 1542, + [2254] = 494, + [2255] = 1930, + [2256] = 1932, + [2257] = 484, + [2258] = 1975, + [2259] = 1930, + [2260] = 474, + [2261] = 2041, + [2262] = 1930, + [2263] = 485, + [2264] = 1930, + [2265] = 1930, + [2266] = 2023, + [2267] = 2023, + [2268] = 480, + [2269] = 485, + [2270] = 1474, + [2271] = 1158, + [2272] = 1634, + [2273] = 1635, + [2274] = 481, + [2275] = 490, + [2276] = 484, + [2277] = 486, + [2278] = 880, + [2279] = 1148, + [2280] = 495, + [2281] = 1474, + [2282] = 1011, + [2283] = 880, + [2284] = 885, + [2285] = 470, + [2286] = 1703, + [2287] = 491, + [2288] = 885, + [2289] = 474, + [2290] = 470, + [2291] = 1081, + [2292] = 480, + [2293] = 473, + [2294] = 476, + [2295] = 477, + [2296] = 468, + [2297] = 473, + [2298] = 469, + [2299] = 478, + [2300] = 1081, + [2301] = 475, + [2302] = 469, + [2303] = 1100, + [2304] = 488, + [2305] = 495, + [2306] = 495, + [2307] = 492, + [2308] = 859, + [2309] = 1163, + [2310] = 495, + [2311] = 494, + [2312] = 468, + [2313] = 479, + [2314] = 832, + [2315] = 491, + [2316] = 494, + [2317] = 477, + [2318] = 486, + [2319] = 478, + [2320] = 488, + [2321] = 479, + [2322] = 487, + [2323] = 1011, + [2324] = 1148, + [2325] = 832, + [2326] = 492, + [2327] = 859, + [2328] = 1100, + [2329] = 470, + [2330] = 1067, + [2331] = 1068, + [2332] = 926, + [2333] = 484, + [2334] = 489, + [2335] = 490, + [2336] = 473, + [2337] = 1158, + [2338] = 495, + [2339] = 487, + [2340] = 1163, + [2341] = 483, + [2342] = 469, + [2343] = 481, + [2344] = 482, + [2345] = 494, + [2346] = 479, + [2347] = 469, + [2348] = 486, + [2349] = 2349, + [2350] = 473, + [2351] = 495, + [2352] = 1146, + [2353] = 2353, + [2354] = 476, + [2355] = 485, + [2356] = 469, + [2357] = 1100, + [2358] = 2358, + [2359] = 468, + [2360] = 2349, + [2361] = 2353, + [2362] = 488, + [2363] = 492, + [2364] = 2364, + [2365] = 1191, + [2366] = 494, + [2367] = 1190, + [2368] = 1082, + [2369] = 1158, + [2370] = 1149, + [2371] = 1163, + [2372] = 2358, + [2373] = 469, + [2374] = 469, + [2375] = 485, + [2376] = 2349, + [2377] = 2364, + [2378] = 2364, + [2379] = 2353, + [2380] = 490, + [2381] = 495, + [2382] = 469, + [2383] = 475, + [2384] = 476, + [2385] = 470, + [2386] = 469, [2387] = 2387, - [2388] = 2257, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 385, - [2396] = 2396, + [2388] = 475, + [2389] = 469, + [2390] = 487, + [2391] = 473, + [2392] = 482, + [2393] = 483, + [2394] = 1014, + [2395] = 1068, + [2396] = 469, [2397] = 2397, - [2398] = 376, - [2399] = 384, - [2400] = 383, - [2401] = 389, - [2402] = 376, - [2403] = 384, - [2404] = 383, - [2405] = 381, - [2406] = 385, - [2407] = 2256, - [2408] = 2257, - [2409] = 1345, - [2410] = 389, - [2411] = 375, - [2412] = 380, - [2413] = 2257, - [2414] = 2257, - [2415] = 2257, - [2416] = 1348, - [2417] = 376, - [2418] = 384, - [2419] = 383, - [2420] = 381, - [2421] = 385, - [2422] = 2422, - [2423] = 2257, - [2424] = 2257, - [2425] = 2153, - [2426] = 389, - [2427] = 381, - [2428] = 1384, - [2429] = 2257, - [2430] = 391, - [2431] = 2257, - [2432] = 2257, - [2433] = 2257, - [2434] = 2257, - [2435] = 2257, - [2436] = 2257, - [2437] = 2437, - [2438] = 2438, - [2439] = 2389, - [2440] = 2440, - [2441] = 2326, - [2442] = 2323, - [2443] = 2443, - [2444] = 2391, + [2398] = 474, + [2399] = 484, + [2400] = 481, + [2401] = 482, + [2402] = 483, + [2403] = 473, + [2404] = 470, + [2405] = 1011, + [2406] = 1148, + [2407] = 470, + [2408] = 469, + [2409] = 469, + [2410] = 2364, + [2411] = 2358, + [2412] = 489, + [2413] = 880, + [2414] = 2349, + [2415] = 885, + [2416] = 2353, + [2417] = 1045, + [2418] = 495, + [2419] = 1067, + [2420] = 480, + [2421] = 491, + [2422] = 1158, + [2423] = 477, + [2424] = 470, + [2425] = 468, + [2426] = 473, + [2427] = 1081, + [2428] = 2358, + [2429] = 470, + [2430] = 478, + [2431] = 1163, + [2432] = 859, + [2433] = 469, + [2434] = 1011, + [2435] = 468, + [2436] = 832, + [2437] = 1163, + [2438] = 1158, + [2439] = 474, + [2440] = 1148, + [2441] = 473, + [2442] = 489, + [2443] = 479, + [2444] = 484, [2445] = 2445, - [2446] = 375, - [2447] = 381, - [2448] = 2151, - [2449] = 2153, - [2450] = 2392, - [2451] = 2383, - [2452] = 2393, - [2453] = 2397, - [2454] = 2396, - [2455] = 2396, - [2456] = 2394, - [2457] = 397, - [2458] = 2182, - [2459] = 2390, - [2460] = 2208, - [2461] = 2461, - [2462] = 2334, - [2463] = 383, - [2464] = 384, - [2465] = 376, - [2466] = 2372, - [2467] = 2241, - [2468] = 385, - [2469] = 378, - [2470] = 379, - [2471] = 2445, - [2472] = 2216, - [2473] = 2372, - [2474] = 2276, - [2475] = 2206, - [2476] = 2387, - [2477] = 2384, - [2478] = 2394, - [2479] = 2461, - [2480] = 2393, - [2481] = 2392, - [2482] = 2383, - [2483] = 2391, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2129, - [2490] = 2131, - [2491] = 2382, - [2492] = 2276, - [2493] = 2493, - [2494] = 389, - [2495] = 2493, - [2496] = 2496, - [2497] = 2493, - [2498] = 2381, - [2499] = 2382, - [2500] = 2129, - [2501] = 2384, - [2502] = 2387, - [2503] = 2276, - [2504] = 2389, - [2505] = 2390, - [2506] = 2391, - [2507] = 2392, - [2508] = 2393, - [2509] = 2394, - [2510] = 363, - [2511] = 2390, - [2512] = 2512, - [2513] = 2372, - [2514] = 2396, - [2515] = 2397, - [2516] = 2485, - [2517] = 2486, - [2518] = 2518, - [2519] = 2519, - [2520] = 2389, - [2521] = 2334, - [2522] = 2146, - [2523] = 2485, - [2524] = 2147, - [2525] = 2525, - [2526] = 2326, - [2527] = 2486, - [2528] = 2528, - [2529] = 2484, - [2530] = 2323, - [2531] = 2319, - [2532] = 2397, - [2533] = 391, - [2534] = 2323, - [2535] = 2326, - [2536] = 2241, - [2537] = 2334, - [2538] = 2538, - [2539] = 2387, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 374, - [2545] = 2384, - [2546] = 2383, - [2547] = 2440, - [2548] = 2256, - [2549] = 2445, - [2550] = 2461, - [2551] = 2382, - [2552] = 2256, - [2553] = 2553, - [2554] = 380, - [2555] = 2555, - [2556] = 2487, - [2557] = 2557, - [2558] = 2319, - [2559] = 2381, - [2560] = 2488, - [2561] = 1162, - [2562] = 2493, - [2563] = 2484, - [2564] = 373, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2276, - [2569] = 397, - [2570] = 2493, - [2571] = 2182, - [2572] = 2572, - [2573] = 2573, - [2574] = 2397, - [2575] = 2396, - [2576] = 2372, - [2577] = 2487, - [2578] = 2440, - [2579] = 2323, - [2580] = 2394, - [2581] = 2393, - [2582] = 2153, - [2583] = 2392, - [2584] = 2151, - [2585] = 2391, - [2586] = 2390, - [2587] = 2389, - [2588] = 2208, - [2589] = 2387, - [2590] = 2323, - [2591] = 2147, - [2592] = 363, - [2593] = 362, - [2594] = 2384, - [2595] = 2383, - [2596] = 2382, - [2597] = 2484, - [2598] = 2493, - [2599] = 2146, - [2600] = 2484, - [2601] = 2381, - [2602] = 2216, - [2603] = 2326, - [2604] = 2397, - [2605] = 2396, - [2606] = 2372, - [2607] = 2394, - [2608] = 2326, - [2609] = 2393, - [2610] = 2334, - [2611] = 2334, - [2612] = 362, - [2613] = 2276, - [2614] = 2493, - [2615] = 2488, - [2616] = 2392, - [2617] = 2206, - [2618] = 2391, - [2619] = 2390, - [2620] = 2389, - [2621] = 2387, - [2622] = 2384, - [2623] = 2383, - [2624] = 2382, - [2625] = 2381, - [2626] = 2131, - [2627] = 2381, - [2628] = 2628, - [2629] = 2396, - [2630] = 2288, - [2631] = 2286, - [2632] = 2422, - [2633] = 2633, - [2634] = 2278, - [2635] = 2274, - [2636] = 2557, - [2637] = 2555, - [2638] = 373, - [2639] = 2633, - [2640] = 2305, - [2641] = 2543, - [2642] = 2542, - [2643] = 2541, - [2644] = 2540, - [2645] = 2310, - [2646] = 2538, - [2647] = 374, - [2648] = 2334, - [2649] = 2649, - [2650] = 2311, - [2651] = 2326, - [2652] = 2320, - [2653] = 2323, - [2654] = 2331, - [2655] = 2438, - [2656] = 2528, - [2657] = 2525, - [2658] = 2337, - [2659] = 2351, - [2660] = 2519, - [2661] = 2518, - [2662] = 2354, - [2663] = 2272, - [2664] = 2273, - [2665] = 2362, - [2666] = 2282, - [2667] = 2437, - [2668] = 2443, - [2669] = 2628, - [2670] = 2512, - [2671] = 2628, - [2672] = 2628, - [2673] = 2628, - [2674] = 2553, - [2675] = 2649, - [2676] = 2676, - [2677] = 2628, - [2678] = 2678, - [2679] = 2679, - [2680] = 2628, - [2681] = 379, - [2682] = 378, - [2683] = 2649, - [2684] = 2628, - [2685] = 2628, - [2686] = 2628, - [2687] = 2628, - [2688] = 362, - [2689] = 363, - [2690] = 2628, - [2691] = 2628, - [2692] = 2628, - [2693] = 2693, - [2694] = 397, - [2695] = 2695, + [2446] = 478, + [2447] = 489, + [2448] = 477, + [2449] = 483, + [2450] = 482, + [2451] = 2451, + [2452] = 487, + [2453] = 469, + [2454] = 481, + [2455] = 2455, + [2456] = 2451, + [2457] = 1474, + [2458] = 469, + [2459] = 470, + [2460] = 469, + [2461] = 2455, + [2462] = 475, + [2463] = 2445, + [2464] = 468, + [2465] = 490, + [2466] = 470, + [2467] = 492, + [2468] = 488, + [2469] = 480, + [2470] = 470, + [2471] = 473, + [2472] = 2472, + [2473] = 473, + [2474] = 494, + [2475] = 473, + [2476] = 1429, + [2477] = 486, + [2478] = 476, + [2479] = 474, + [2480] = 469, + [2481] = 485, + [2482] = 485, + [2483] = 468, + [2484] = 2472, + [2485] = 481, + [2486] = 468, + [2487] = 1158, + [2488] = 473, + [2489] = 1158, + [2490] = 1163, + [2491] = 470, + [2492] = 495, + [2493] = 1163, + [2494] = 470, + [2495] = 470, + [2496] = 479, + [2497] = 2455, + [2498] = 476, + [2499] = 479, + [2500] = 2451, + [2501] = 2445, + [2502] = 475, + [2503] = 2451, + [2504] = 474, + [2505] = 486, + [2506] = 2397, + [2507] = 480, + [2508] = 481, + [2509] = 2387, + [2510] = 484, + [2511] = 468, + [2512] = 487, + [2513] = 490, + [2514] = 482, + [2515] = 492, + [2516] = 488, + [2517] = 486, + [2518] = 483, + [2519] = 487, + [2520] = 479, + [2521] = 2451, + [2522] = 1301, + [2523] = 486, + [2524] = 490, + [2525] = 489, + [2526] = 478, + [2527] = 477, + [2528] = 491, + [2529] = 478, + [2530] = 477, + [2531] = 491, + [2532] = 1149, + [2533] = 473, + [2534] = 1281, + [2535] = 478, + [2536] = 492, + [2537] = 469, + [2538] = 1191, + [2539] = 1190, + [2540] = 470, + [2541] = 1382, + [2542] = 477, + [2543] = 473, + [2544] = 474, + [2545] = 485, + [2546] = 2455, + [2547] = 2445, + [2548] = 468, + [2549] = 2455, + [2550] = 470, + [2551] = 473, + [2552] = 2445, + [2553] = 473, + [2554] = 491, + [2555] = 470, + [2556] = 1168, + [2557] = 494, + [2558] = 1182, + [2559] = 2559, + [2560] = 480, + [2561] = 2445, + [2562] = 1181, + [2563] = 2455, + [2564] = 470, + [2565] = 476, + [2566] = 489, + [2567] = 488, + [2568] = 494, + [2569] = 1146, + [2570] = 491, + [2571] = 481, + [2572] = 1158, + [2573] = 2451, + [2574] = 475, + [2575] = 473, + [2576] = 484, + [2577] = 487, + [2578] = 1163, + [2579] = 483, + [2580] = 482, + [2581] = 490, + [2582] = 473, + [2583] = 484, + [2584] = 495, + [2585] = 489, + [2586] = 484, + [2587] = 483, + [2588] = 2451, + [2589] = 2589, + [2590] = 482, + [2591] = 475, + [2592] = 476, + [2593] = 487, + [2594] = 2594, + [2595] = 494, + [2596] = 478, + [2597] = 477, + [2598] = 491, + [2599] = 485, + [2600] = 474, + [2601] = 2559, + [2602] = 494, + [2603] = 490, + [2604] = 480, + [2605] = 481, + [2606] = 484, + [2607] = 487, + [2608] = 490, + [2609] = 492, + [2610] = 488, + [2611] = 486, + [2612] = 1163, + [2613] = 1158, + [2614] = 479, + [2615] = 478, + [2616] = 477, + [2617] = 491, + [2618] = 470, + [2619] = 473, + [2620] = 468, + [2621] = 2621, + [2622] = 1607, + [2623] = 1301, + [2624] = 492, + [2625] = 488, + [2626] = 491, + [2627] = 2627, + [2628] = 477, + [2629] = 478, + [2630] = 486, + [2631] = 480, + [2632] = 469, + [2633] = 483, + [2634] = 482, + [2635] = 1281, + [2636] = 2636, + [2637] = 1534, + [2638] = 489, + [2639] = 475, + [2640] = 476, + [2641] = 2472, + [2642] = 479, + [2643] = 485, + [2644] = 474, + [2645] = 486, + [2646] = 488, + [2647] = 479, + [2648] = 2648, + [2649] = 492, + [2650] = 490, + [2651] = 480, + [2652] = 487, + [2653] = 492, + [2654] = 479, + [2655] = 488, + [2656] = 481, + [2657] = 486, + [2658] = 487, + [2659] = 2659, + [2660] = 479, + [2661] = 486, + [2662] = 490, + [2663] = 484, + [2664] = 488, + [2665] = 492, + [2666] = 481, + [2667] = 480, + [2668] = 478, + [2669] = 477, + [2670] = 491, + [2671] = 1474, + [2672] = 481, + [2673] = 490, + [2674] = 486, + [2675] = 474, + [2676] = 487, + [2677] = 479, + [2678] = 1361, + [2679] = 480, + [2680] = 487, + [2681] = 485, + [2682] = 490, + [2683] = 474, + [2684] = 478, + [2685] = 485, + [2686] = 477, + [2687] = 491, + [2688] = 1368, + [2689] = 1146, + [2690] = 2472, + [2691] = 1634, + [2692] = 494, + [2693] = 1635, + [2694] = 2694, + [2695] = 494, [2696] = 2696, - [2697] = 2628, - [2698] = 380, - [2699] = 2628, - [2700] = 2361, - [2701] = 2628, - [2702] = 2628, - [2703] = 370, - [2704] = 375, - [2705] = 2309, - [2706] = 2633, - [2707] = 2276, - [2708] = 2708, - [2709] = 2277, - [2710] = 2381, - [2711] = 2285, - [2712] = 2382, - [2713] = 2383, - [2714] = 2290, - [2715] = 385, - [2716] = 2384, - [2717] = 381, - [2718] = 2628, - [2719] = 2676, - [2720] = 2572, - [2721] = 2387, - [2722] = 2567, - [2723] = 2389, - [2724] = 2390, - [2725] = 2679, - [2726] = 2391, - [2727] = 2392, - [2728] = 2628, - [2729] = 876, - [2730] = 874, - [2731] = 2566, - [2732] = 2393, - [2733] = 389, - [2734] = 389, - [2735] = 2628, - [2736] = 2394, - [2737] = 373, - [2738] = 2372, - [2739] = 376, - [2740] = 384, - [2741] = 383, - [2742] = 380, - [2743] = 2565, - [2744] = 374, - [2745] = 381, - [2746] = 2628, - [2747] = 2397, - [2748] = 2628, - [2749] = 2628, - [2750] = 2628, - [2751] = 2337, - [2752] = 2301, - [2753] = 385, - [2754] = 2693, - [2755] = 2628, - [2756] = 385, - [2757] = 2695, - [2758] = 375, - [2759] = 383, - [2760] = 374, - [2761] = 384, - [2762] = 389, - [2763] = 380, - [2764] = 367, - [2765] = 376, - [2766] = 378, - [2767] = 379, - [2768] = 379, - [2769] = 378, - [2770] = 373, - [2771] = 368, - [2772] = 2354, - [2773] = 369, - [2774] = 375, - [2775] = 2628, - [2776] = 2628, - [2777] = 2628, - [2778] = 2341, - [2779] = 2696, - [2780] = 2708, - [2781] = 2340, - [2782] = 2628, - [2783] = 2338, - [2784] = 381, - [2785] = 2336, - [2786] = 2361, - [2787] = 362, - [2788] = 2628, - [2789] = 363, - [2790] = 2628, - [2791] = 2512, - [2792] = 2628, - [2793] = 2518, - [2794] = 2519, - [2795] = 2628, - [2796] = 2525, - [2797] = 2628, - [2798] = 2528, - [2799] = 2438, - [2800] = 2538, - [2801] = 2540, - [2802] = 376, - [2803] = 384, - [2804] = 383, - [2805] = 2541, - [2806] = 2542, - [2807] = 2628, - [2808] = 2543, - [2809] = 2628, - [2810] = 2553, - [2811] = 2336, - [2812] = 2338, - [2813] = 2555, - [2814] = 383, - [2815] = 384, - [2816] = 376, - [2817] = 2628, - [2818] = 2340, - [2819] = 2557, - [2820] = 2341, - [2821] = 2628, - [2822] = 2422, - [2823] = 2286, - [2824] = 2288, - [2825] = 2628, - [2826] = 2565, - [2827] = 2566, - [2828] = 2567, - [2829] = 2572, - [2830] = 2301, - [2831] = 2305, - [2832] = 2290, - [2833] = 2628, - [2834] = 2285, - [2835] = 2278, - [2836] = 2277, - [2837] = 362, - [2838] = 2310, - [2839] = 2309, - [2840] = 2311, - [2841] = 363, - [2842] = 381, - [2843] = 2320, - [2844] = 2274, - [2845] = 2708, - [2846] = 2331, - [2847] = 2696, - [2848] = 2628, - [2849] = 2695, - [2850] = 2628, - [2851] = 2693, - [2852] = 362, - [2853] = 373, - [2854] = 2272, - [2855] = 2628, - [2856] = 2273, - [2857] = 375, - [2858] = 380, - [2859] = 2628, - [2860] = 374, - [2861] = 379, - [2862] = 389, - [2863] = 378, - [2864] = 2628, - [2865] = 363, - [2866] = 2443, - [2867] = 2679, - [2868] = 2628, - [2869] = 385, - [2870] = 2437, - [2871] = 2676, - [2872] = 2351, - [2873] = 2282, - [2874] = 2362, - [2875] = 2628, - [2876] = 720, - [2877] = 863, - [2878] = 362, - [2879] = 363, - [2880] = 370, - [2881] = 2881, - [2882] = 367, - [2883] = 820, - [2884] = 829, - [2885] = 368, - [2886] = 369, - [2887] = 2881, - [2888] = 372, - [2889] = 389, - [2890] = 388, - [2891] = 373, - [2892] = 374, - [2893] = 390, - [2894] = 377, - [2895] = 2881, - [2896] = 2896, - [2897] = 382, - [2898] = 379, - [2899] = 383, - [2900] = 384, - [2901] = 378, - [2902] = 376, - [2903] = 362, - [2904] = 874, - [2905] = 363, - [2906] = 876, - [2907] = 381, - [2908] = 463, - [2909] = 385, - [2910] = 862, - [2911] = 387, - [2912] = 386, - [2913] = 2913, - [2914] = 375, - [2915] = 362, - [2916] = 722, - [2917] = 380, - [2918] = 363, - [2919] = 2919, - [2920] = 2920, - [2921] = 362, - [2922] = 694, - [2923] = 363, - [2924] = 705, - [2925] = 2925, - [2926] = 2925, - [2927] = 362, - [2928] = 389, - [2929] = 363, - [2930] = 381, + [2697] = 484, + [2698] = 481, + [2699] = 494, + [2700] = 476, + [2701] = 475, + [2702] = 2702, + [2703] = 1149, + [2704] = 2704, + [2705] = 465, + [2706] = 464, + [2707] = 482, + [2708] = 478, + [2709] = 477, + [2710] = 491, + [2711] = 483, + [2712] = 489, + [2713] = 495, + [2714] = 1361, + [2715] = 1474, + [2716] = 489, + [2717] = 2472, + [2718] = 1429, + [2719] = 476, + [2720] = 473, + [2721] = 474, + [2722] = 475, + [2723] = 470, + [2724] = 2724, + [2725] = 495, + [2726] = 1382, + [2727] = 494, + [2728] = 481, + [2729] = 483, + [2730] = 482, + [2731] = 475, + [2732] = 482, + [2733] = 483, + [2734] = 489, + [2735] = 476, + [2736] = 485, + [2737] = 486, + [2738] = 2738, + [2739] = 2739, + [2740] = 2739, + [2741] = 2739, + [2742] = 2739, + [2743] = 2739, + [2744] = 2739, + [2745] = 2739, + [2746] = 2739, + [2747] = 2739, + [2748] = 2739, + [2749] = 2739, + [2750] = 2739, + [2751] = 2739, + [2752] = 2739, + [2753] = 2739, + [2754] = 2739, + [2755] = 2739, + [2756] = 2739, + [2757] = 2739, + [2758] = 2739, + [2759] = 2739, + [2760] = 2739, + [2761] = 2739, + [2762] = 2739, + [2763] = 2739, + [2764] = 2739, + [2765] = 2739, + [2766] = 2739, + [2767] = 2739, + [2768] = 2739, + [2769] = 2739, + [2770] = 2739, + [2771] = 2739, + [2772] = 2739, + [2773] = 2739, + [2774] = 2739, + [2775] = 2739, + [2776] = 1474, + [2777] = 2739, + [2778] = 2739, + [2779] = 2739, + [2780] = 1635, + [2781] = 2739, + [2782] = 2739, + [2783] = 2739, + [2784] = 2739, + [2785] = 2739, + [2786] = 2739, + [2787] = 2739, + [2788] = 2739, + [2789] = 2739, + [2790] = 2739, + [2791] = 2739, + [2792] = 2739, + [2793] = 2739, + [2794] = 2739, + [2795] = 2739, + [2796] = 495, + [2797] = 2739, + [2798] = 495, + [2799] = 2739, + [2800] = 2739, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2739, + [2805] = 2724, + [2806] = 494, + [2807] = 1556, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 2739, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2808, + [2816] = 2816, + [2817] = 1542, + [2818] = 490, + [2819] = 495, + [2820] = 2739, + [2821] = 491, + [2822] = 477, + [2823] = 478, + [2824] = 479, + [2825] = 2825, + [2826] = 487, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2808, + [2834] = 2808, + [2835] = 2835, + [2836] = 2739, + [2837] = 2837, + [2838] = 2838, + [2839] = 2627, + [2840] = 2840, + [2841] = 483, + [2842] = 482, + [2843] = 2843, + [2844] = 2739, + [2845] = 2845, + [2846] = 1607, + [2847] = 486, + [2848] = 2848, + [2849] = 2849, + [2850] = 489, + [2851] = 2808, + [2852] = 484, + [2853] = 481, + [2854] = 475, + [2855] = 488, + [2856] = 492, + [2857] = 476, + [2858] = 2739, + [2859] = 485, + [2860] = 2860, + [2861] = 474, + [2862] = 2559, + [2863] = 2594, + [2864] = 1534, + [2865] = 2559, + [2866] = 480, + [2867] = 494, + [2868] = 2868, + [2869] = 480, + [2870] = 484, + [2871] = 481, + [2872] = 486, + [2873] = 487, + [2874] = 2808, + [2875] = 479, + [2876] = 490, + [2877] = 492, + [2878] = 1498, + [2879] = 488, + [2880] = 2739, + [2881] = 478, + [2882] = 477, + [2883] = 491, + [2884] = 1542, + [2885] = 481, + [2886] = 1634, + [2887] = 464, + [2888] = 465, + [2889] = 2659, + [2890] = 2890, + [2891] = 487, + [2892] = 479, + [2893] = 490, + [2894] = 2894, + [2895] = 464, + [2896] = 465, + [2897] = 2648, + [2898] = 2898, + [2899] = 2899, + [2900] = 2636, + [2901] = 481, + [2902] = 464, + [2903] = 465, + [2904] = 486, + [2905] = 1281, + [2906] = 487, + [2907] = 479, + [2908] = 478, + [2909] = 477, + [2910] = 491, + [2911] = 490, + [2912] = 494, + [2913] = 1556, + [2914] = 1474, + [2915] = 2915, + [2916] = 2916, + [2917] = 2917, + [2918] = 478, + [2919] = 477, + [2920] = 491, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 2924, + [2925] = 2621, + [2926] = 2926, + [2927] = 495, + [2928] = 495, + [2929] = 2929, + [2930] = 2930, [2931] = 2931, - [2932] = 2925, - [2933] = 363, - [2934] = 375, - [2935] = 2925, - [2936] = 2925, - [2937] = 2925, - [2938] = 2925, - [2939] = 362, - [2940] = 2925, - [2941] = 2925, - [2942] = 2925, - [2943] = 2925, - [2944] = 379, - [2945] = 378, - [2946] = 2925, - [2947] = 2925, - [2948] = 373, - [2949] = 383, - [2950] = 384, - [2951] = 376, - [2952] = 385, - [2953] = 374, - [2954] = 1162, - [2955] = 2925, - [2956] = 2925, - [2957] = 380, - [2958] = 2925, - [2959] = 391, - [2960] = 382, - [2961] = 2925, - [2962] = 372, - [2963] = 388, - [2964] = 387, - [2965] = 2925, - [2966] = 386, - [2967] = 2925, - [2968] = 2925, - [2969] = 2925, - [2970] = 377, - [2971] = 2925, - [2972] = 2925, - [2973] = 390, - [2974] = 1162, - [2975] = 905, - [2976] = 1089, - [2977] = 2977, - [2978] = 2978, - [2979] = 391, - [2980] = 880, - [2981] = 2981, - [2982] = 397, - [2983] = 1084, - [2984] = 1079, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2986, - [2990] = 362, - [2991] = 1330, + [2932] = 2739, + [2933] = 2933, + [2934] = 1498, + [2935] = 495, + [2936] = 2936, + [2937] = 2937, + [2938] = 2938, + [2939] = 1631, + [2940] = 1301, + [2941] = 1703, + [2942] = 2942, + [2943] = 2828, + [2944] = 2944, + [2945] = 2589, + [2946] = 2946, + [2947] = 2947, + [2948] = 2948, + [2949] = 2838, + [2950] = 2648, + [2951] = 2868, + [2952] = 2952, + [2953] = 2659, + [2954] = 2627, + [2955] = 2868, + [2956] = 2956, + [2957] = 2810, + [2958] = 2812, + [2959] = 2813, + [2960] = 2814, + [2961] = 2816, + [2962] = 2837, + [2963] = 2827, + [2964] = 2828, + [2965] = 2965, + [2966] = 2829, + [2967] = 2810, + [2968] = 2812, + [2969] = 2813, + [2970] = 2814, + [2971] = 2816, + [2972] = 2827, + [2973] = 2828, + [2974] = 2829, + [2975] = 2830, + [2976] = 2802, + [2977] = 2831, + [2978] = 2832, + [2979] = 2835, + [2980] = 495, + [2981] = 2830, + [2982] = 2944, + [2983] = 2704, + [2984] = 2702, + [2985] = 2802, + [2986] = 2831, + [2987] = 2813, + [2988] = 2832, + [2989] = 2835, + [2990] = 2636, + [2991] = 2991, [2992] = 2992, [2993] = 2993, - [2994] = 2994, - [2995] = 2987, - [2996] = 1334, - [2997] = 2994, - [2998] = 2998, - [2999] = 2994, - [3000] = 3000, - [3001] = 2994, - [3002] = 2994, - [3003] = 967, - [3004] = 2987, - [3005] = 2994, - [3006] = 2993, - [3007] = 397, - [3008] = 2987, - [3009] = 2987, - [3010] = 2994, - [3011] = 2987, - [3012] = 2994, - [3013] = 1341, - [3014] = 2987, - [3015] = 2994, - [3016] = 2987, - [3017] = 2987, - [3018] = 2994, - [3019] = 2994, - [3020] = 2993, - [3021] = 3021, - [3022] = 2987, - [3023] = 2994, - [3024] = 2987, - [3025] = 2987, - [3026] = 2994, - [3027] = 2986, - [3028] = 2987, - [3029] = 2987, - [3030] = 463, - [3031] = 2994, - [3032] = 2993, - [3033] = 2987, - [3034] = 2994, - [3035] = 363, - [3036] = 959, - [3037] = 1345, - [3038] = 2986, - [3039] = 1348, + [2994] = 2837, + [2995] = 2835, + [2996] = 2832, + [2997] = 480, + [2998] = 2627, + [2999] = 2999, + [3000] = 2802, + [3001] = 2830, + [3002] = 2829, + [3003] = 2828, + [3004] = 2827, + [3005] = 3005, + [3006] = 2924, + [3007] = 2816, + [3008] = 2814, + [3009] = 2621, + [3010] = 2813, + [3011] = 2738, + [3012] = 2933, + [3013] = 2812, + [3014] = 2810, + [3015] = 465, + [3016] = 464, + [3017] = 3017, + [3018] = 465, + [3019] = 3019, + [3020] = 481, + [3021] = 484, + [3022] = 2942, + [3023] = 2810, + [3024] = 491, + [3025] = 477, + [3026] = 478, + [3027] = 464, + [3028] = 2696, + [3029] = 2694, + [3030] = 2812, + [3031] = 2838, + [3032] = 3032, + [3033] = 3033, + [3034] = 2831, + [3035] = 2589, + [3036] = 3036, + [3037] = 2942, + [3038] = 3038, + [3039] = 2814, [3040] = 3040, - [3041] = 362, + [3041] = 2933, [3042] = 3042, - [3043] = 3042, - [3044] = 3040, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3040, - [3049] = 3040, - [3050] = 362, - [3051] = 3040, - [3052] = 3042, - [3053] = 363, - [3054] = 363, - [3055] = 3055, - [3056] = 3042, - [3057] = 3040, - [3058] = 3040, - [3059] = 3042, - [3060] = 3055, - [3061] = 3040, - [3062] = 3042, - [3063] = 3042, - [3064] = 3040, - [3065] = 3046, - [3066] = 363, - [3067] = 3067, - [3068] = 3040, - [3069] = 3045, - [3070] = 3040, - [3071] = 3067, - [3072] = 362, - [3073] = 3067, - [3074] = 3055, - [3075] = 3042, - [3076] = 3046, - [3077] = 3067, - [3078] = 3045, - [3079] = 3042, - [3080] = 3042, - [3081] = 3040, - [3082] = 3040, - [3083] = 3042, - [3084] = 3040, - [3085] = 3042, - [3086] = 3042, - [3087] = 3042, - [3088] = 362, - [3089] = 3040, - [3090] = 3067, - [3091] = 363, - [3092] = 3042, - [3093] = 3040, - [3094] = 3067, - [3095] = 3046, - [3096] = 3045, - [3097] = 363, - [3098] = 3040, - [3099] = 3042, - [3100] = 362, - [3101] = 3045, - [3102] = 3042, - [3103] = 3040, - [3104] = 3045, - [3105] = 3046, - [3106] = 3042, - [3107] = 3042, - [3108] = 3046, - [3109] = 3040, - [3110] = 3067, - [3111] = 3111, - [3112] = 3112, + [3043] = 2738, + [3044] = 464, + [3045] = 487, + [3046] = 2816, + [3047] = 465, + [3048] = 2924, + [3049] = 2724, + [3050] = 2868, + [3051] = 2827, + [3052] = 3052, + [3053] = 2594, + [3054] = 2837, + [3055] = 495, + [3056] = 3056, + [3057] = 3038, + [3058] = 2724, + [3059] = 2829, + [3060] = 2868, + [3061] = 2830, + [3062] = 2802, + [3063] = 2831, + [3064] = 2832, + [3065] = 494, + [3066] = 3066, + [3067] = 2835, + [3068] = 2837, + [3069] = 2694, + [3070] = 3032, + [3071] = 2594, + [3072] = 2696, + [3073] = 3033, + [3074] = 3074, + [3075] = 3075, + [3076] = 490, + [3077] = 2810, + [3078] = 2812, + [3079] = 2813, + [3080] = 2814, + [3081] = 2816, + [3082] = 2827, + [3083] = 2828, + [3084] = 2829, + [3085] = 3052, + [3086] = 2830, + [3087] = 3040, + [3088] = 2802, + [3089] = 2933, + [3090] = 2831, + [3091] = 3042, + [3092] = 1163, + [3093] = 1158, + [3094] = 2832, + [3095] = 2835, + [3096] = 2738, + [3097] = 2837, + [3098] = 2933, + [3099] = 2702, + [3100] = 2738, + [3101] = 2924, + [3102] = 2924, + [3103] = 2704, + [3104] = 2942, + [3105] = 2944, + [3106] = 3038, + [3107] = 2924, + [3108] = 2738, + [3109] = 3066, + [3110] = 469, + [3111] = 3042, + [3112] = 2933, [3113] = 3113, - [3114] = 3112, - [3115] = 3112, - [3116] = 3112, - [3117] = 3117, - [3118] = 3117, - [3119] = 3117, - [3120] = 3117, - [3121] = 3121, - [3122] = 3112, - [3123] = 3117, - [3124] = 3112, - [3125] = 3125, - [3126] = 3117, - [3127] = 3112, - [3128] = 3111, - [3129] = 3129, - [3130] = 3112, - [3131] = 3117, - [3132] = 3132, - [3133] = 3133, - [3134] = 3117, - [3135] = 3135, - [3136] = 3117, - [3137] = 3112, - [3138] = 3132, - [3139] = 3112, - [3140] = 3117, - [3141] = 3113, - [3142] = 3113, - [3143] = 3132, - [3144] = 3112, - [3145] = 3117, - [3146] = 3112, - [3147] = 3117, - [3148] = 3112, - [3149] = 3112, - [3150] = 3117, - [3151] = 3117, - [3152] = 3112, - [3153] = 3117, - [3154] = 3111, - [3155] = 3112, - [3156] = 3112, - [3157] = 3157, - [3158] = 3158, - [3159] = 3117, - [3160] = 3117, - [3161] = 3112, - [3162] = 3162, - [3163] = 3125, - [3164] = 3164, + [3114] = 1474, + [3115] = 468, + [3116] = 3116, + [3117] = 473, + [3118] = 3118, + [3119] = 3119, + [3120] = 470, + [3121] = 2636, + [3122] = 3032, + [3123] = 3033, + [3124] = 3052, + [3125] = 3040, + [3126] = 3042, + [3127] = 3127, + [3128] = 3040, + [3129] = 2942, + [3130] = 2621, + [3131] = 3052, + [3132] = 464, + [3133] = 2944, + [3134] = 465, + [3135] = 3038, + [3136] = 3066, + [3137] = 3032, + [3138] = 2648, + [3139] = 3033, + [3140] = 3052, + [3141] = 3040, + [3142] = 3042, + [3143] = 2942, + [3144] = 3033, + [3145] = 3052, + [3146] = 2659, + [3147] = 3040, + [3148] = 2942, + [3149] = 495, + [3150] = 3033, + [3151] = 2868, + [3152] = 3052, + [3153] = 3040, + [3154] = 3033, + [3155] = 3052, + [3156] = 3040, + [3157] = 479, + [3158] = 3033, + [3159] = 488, + [3160] = 492, + [3161] = 486, + [3162] = 464, + [3163] = 465, + [3164] = 3066, [3165] = 3165, - [3166] = 3111, - [3167] = 3125, - [3168] = 3117, - [3169] = 3112, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3175, - [3176] = 3176, - [3177] = 3112, - [3178] = 3178, - [3179] = 3113, - [3180] = 3112, - [3181] = 3111, - [3182] = 3182, - [3183] = 3172, - [3184] = 3112, - [3185] = 3112, - [3186] = 3111, - [3187] = 3125, - [3188] = 3117, - [3189] = 3117, - [3190] = 3117, - [3191] = 3132, - [3192] = 3125, - [3193] = 3172, - [3194] = 3113, - [3195] = 3117, - [3196] = 3112, - [3197] = 3117, - [3198] = 3198, - [3199] = 3112, - [3200] = 3112, - [3201] = 3112, - [3202] = 3111, - [3203] = 3111, - [3204] = 3111, - [3205] = 3111, - [3206] = 3206, - [3207] = 3111, - [3208] = 3111, - [3209] = 3112, - [3210] = 3210, - [3211] = 3132, - [3212] = 3113, - [3213] = 3112, - [3214] = 3112, - [3215] = 3111, - [3216] = 3132, - [3217] = 3210, - [3218] = 3117, - [3219] = 3206, - [3220] = 3117, - [3221] = 3111, - [3222] = 3112, - [3223] = 3198, - [3224] = 3112, - [3225] = 3113, - [3226] = 3117, - [3227] = 3112, - [3228] = 3117, - [3229] = 3111, - [3230] = 3111, - [3231] = 3117, - [3232] = 3111, - [3233] = 3112, - [3234] = 3133, - [3235] = 3117, - [3236] = 3182, - [3237] = 3112, - [3238] = 3172, - [3239] = 3117, - [3240] = 3172, - [3241] = 3172, - [3242] = 3112, - [3243] = 3112, - [3244] = 3178, - [3245] = 3125, - [3246] = 3172, - [3247] = 3117, - [3248] = 3176, - [3249] = 3111, - [3250] = 3175, - [3251] = 3174, - [3252] = 3173, - [3253] = 3171, - [3254] = 3170, - [3255] = 3125, - [3256] = 3165, - [3257] = 3125, - [3258] = 3164, - [3259] = 3162, - [3260] = 3111, - [3261] = 3172, - [3262] = 3117, - [3263] = 3158, - [3264] = 3112, - [3265] = 3125, - [3266] = 3111, - [3267] = 3172, - [3268] = 3157, - [3269] = 3135, - [3270] = 3117, - [3271] = 3129, - [3272] = 3112, - [3273] = 3132, - [3274] = 3113, - [3275] = 3111, - [3276] = 3117, - [3277] = 3111, - [3278] = 3117, - [3279] = 3112, - [3280] = 3117, - [3281] = 3132, - [3282] = 3121, - [3283] = 3117, - [3284] = 3112, - [3285] = 3125, - [3286] = 3172, - [3287] = 3113, - [3288] = 3117, - [3289] = 3111, - [3290] = 3111, - [3291] = 3112, - [3292] = 3125, - [3293] = 3117, - [3294] = 3132, - [3295] = 3112, - [3296] = 3172, - [3297] = 3117, - [3298] = 3112, - [3299] = 3117, - [3300] = 3112, - [3301] = 3112, - [3302] = 3113, - [3303] = 3132, - [3304] = 3113, - [3305] = 3117, - [3306] = 3125, - [3307] = 3117, - [3308] = 3112, - [3309] = 3117, - [3310] = 3172, - [3311] = 3112, - [3312] = 3312, - [3313] = 3111, - [3314] = 3125, - [3315] = 3112, - [3316] = 3172, - [3317] = 3111, - [3318] = 3117, - [3319] = 3112, - [3320] = 3125, - [3321] = 3112, - [3322] = 3117, - [3323] = 3113, - [3324] = 3172, - [3325] = 3111, - [3326] = 3117, - [3327] = 3112, - [3328] = 3111, - [3329] = 3112, - [3330] = 363, - [3331] = 3117, - [3332] = 3111, - [3333] = 3111, - [3334] = 3117, - [3335] = 3117, - [3336] = 3112, - [3337] = 3117, - [3338] = 3125, - [3339] = 3117, - [3340] = 3117, - [3341] = 3172, - [3342] = 3112, - [3343] = 3172, - [3344] = 3112, - [3345] = 3132, - [3346] = 3112, - [3347] = 3111, - [3348] = 3112, - [3349] = 3133, - [3350] = 3111, - [3351] = 3132, - [3352] = 3113, - [3353] = 3112, - [3354] = 3117, - [3355] = 3135, - [3356] = 3121, - [3357] = 3125, - [3358] = 3111, - [3359] = 3112, - [3360] = 3117, - [3361] = 3117, - [3362] = 3112, - [3363] = 3117, - [3364] = 3117, - [3365] = 3112, - [3366] = 3117, - [3367] = 3112, - [3368] = 3117, - [3369] = 3112, - [3370] = 3129, - [3371] = 3111, - [3372] = 3111, - [3373] = 3112, - [3374] = 3125, - [3375] = 3117, - [3376] = 3111, - [3377] = 3111, - [3378] = 3117, - [3379] = 3157, - [3380] = 3158, - [3381] = 3162, - [3382] = 3164, - [3383] = 3165, - [3384] = 3132, - [3385] = 3117, - [3386] = 3170, - [3387] = 3171, - [3388] = 3112, - [3389] = 3173, - [3390] = 3174, - [3391] = 3175, - [3392] = 3117, - [3393] = 3176, - [3394] = 3111, - [3395] = 3113, - [3396] = 3111, - [3397] = 3178, - [3398] = 3117, - [3399] = 3117, - [3400] = 3182, - [3401] = 3125, - [3402] = 3112, - [3403] = 3132, - [3404] = 3117, - [3405] = 3113, - [3406] = 3172, - [3407] = 3111, - [3408] = 3112, - [3409] = 3132, - [3410] = 3132, - [3411] = 3117, - [3412] = 3210, - [3413] = 3206, - [3414] = 3198, - [3415] = 3113, - [3416] = 3111, - [3417] = 3112, - [3418] = 3172, - [3419] = 3125, - [3420] = 3125, - [3421] = 3117, - [3422] = 3132, - [3423] = 3111, - [3424] = 3117, - [3425] = 3112, - [3426] = 3117, - [3427] = 3113, - [3428] = 3112, - [3429] = 3111, - [3430] = 3111, - [3431] = 3172, - [3432] = 3172, - [3433] = 3132, - [3434] = 3113, - [3435] = 3132, - [3436] = 3132, - [3437] = 3125, - [3438] = 3113, - [3439] = 3172, - [3440] = 3125, - [3441] = 3117, - [3442] = 3112, - [3443] = 3113, - [3444] = 3132, - [3445] = 3117, - [3446] = 3172, - [3447] = 3172, - [3448] = 3132, - [3449] = 3113, - [3450] = 3132, - [3451] = 3113, - [3452] = 3112, - [3453] = 3125, - [3454] = 3132, - [3455] = 3172, - [3456] = 3112, - [3457] = 3113, - [3458] = 3132, - [3459] = 3125, - [3460] = 3172, - [3461] = 3117, - [3462] = 3113, - [3463] = 3132, - [3464] = 3113, - [3465] = 3132, - [3466] = 3113, - [3467] = 3132, - [3468] = 3113, - [3469] = 3132, - [3470] = 3113, - [3471] = 3111, - [3472] = 3132, - [3473] = 3113, - [3474] = 3125, - [3475] = 3113, - [3476] = 3132, - [3477] = 3113, - [3478] = 3117, - [3479] = 362, - [3480] = 3112, - [3481] = 3132, - [3482] = 3113, - [3483] = 3117, - [3484] = 3112, - [3485] = 3132, - [3486] = 3113, - [3487] = 3132, - [3488] = 3113, - [3489] = 3117, - [3490] = 3132, - [3491] = 3113, - [3492] = 3132, - [3493] = 3113, - [3494] = 3132, - [3495] = 3113, - [3496] = 3112, - [3497] = 3132, - [3498] = 3111, - [3499] = 3113, - [3500] = 3132, - [3501] = 3113, - [3502] = 3132, - [3503] = 3113, - [3504] = 3132, - [3505] = 3113, - [3506] = 3132, - [3507] = 3113, - [3508] = 3132, - [3509] = 3113, - [3510] = 3132, - [3511] = 3117, - [3512] = 3112, - [3513] = 3113, - [3514] = 3132, - [3515] = 3113, - [3516] = 3132, - [3517] = 3113, - [3518] = 3132, - [3519] = 3113, - [3520] = 3132, - [3521] = 3113, - [3522] = 3522, - [3523] = 3523, - [3524] = 3524, - [3525] = 370, - [3526] = 3526, - [3527] = 3527, - [3528] = 3524, - [3529] = 3529, - [3530] = 3524, - [3531] = 3527, - [3532] = 369, - [3533] = 370, - [3534] = 829, - [3535] = 820, - [3536] = 370, - [3537] = 3537, - [3538] = 3526, - [3539] = 3523, - [3540] = 3540, - [3541] = 3541, - [3542] = 3522, - [3543] = 368, - [3544] = 367, - [3545] = 3545, - [3546] = 367, - [3547] = 3547, + [3166] = 3165, + [3167] = 487, + [3168] = 2931, + [3169] = 2930, + [3170] = 479, + [3171] = 478, + [3172] = 477, + [3173] = 491, + [3174] = 486, + [3175] = 484, + [3176] = 481, + [3177] = 492, + [3178] = 478, + [3179] = 477, + [3180] = 491, + [3181] = 488, + [3182] = 3165, + [3183] = 2924, + [3184] = 480, + [3185] = 3165, + [3186] = 465, + [3187] = 464, + [3188] = 2845, + [3189] = 3056, + [3190] = 2931, + [3191] = 477, + [3192] = 3165, + [3193] = 2738, + [3194] = 2930, + [3195] = 3195, + [3196] = 3005, + [3197] = 2933, + [3198] = 2999, + [3199] = 2993, + [3200] = 2992, + [3201] = 2991, + [3202] = 3019, + [3203] = 487, + [3204] = 3165, + [3205] = 2965, + [3206] = 495, + [3207] = 2956, + [3208] = 2929, + [3209] = 3165, + [3210] = 488, + [3211] = 486, + [3212] = 3165, + [3213] = 492, + [3214] = 2952, + [3215] = 484, + [3216] = 2948, + [3217] = 3036, + [3218] = 2947, + [3219] = 2926, + [3220] = 481, + [3221] = 486, + [3222] = 479, + [3223] = 488, + [3224] = 3165, + [3225] = 487, + [3226] = 479, + [3227] = 465, + [3228] = 2946, + [3229] = 490, + [3230] = 464, + [3231] = 2929, + [3232] = 2926, + [3233] = 3233, + [3234] = 478, + [3235] = 3165, + [3236] = 3236, + [3237] = 465, + [3238] = 464, + [3239] = 3165, + [3240] = 465, + [3241] = 492, + [3242] = 2938, + [3243] = 464, + [3244] = 3165, + [3245] = 484, + [3246] = 2937, + [3247] = 2936, + [3248] = 2923, + [3249] = 2922, + [3250] = 478, + [3251] = 491, + [3252] = 3165, + [3253] = 477, + [3254] = 480, + [3255] = 479, + [3256] = 491, + [3257] = 3165, + [3258] = 2921, + [3259] = 2917, + [3260] = 3165, + [3261] = 2916, + [3262] = 2915, + [3263] = 2899, + [3264] = 2898, + [3265] = 2894, + [3266] = 2890, + [3267] = 480, + [3268] = 3165, + [3269] = 465, + [3270] = 464, + [3271] = 2860, + [3272] = 3074, + [3273] = 3165, + [3274] = 3165, + [3275] = 480, + [3276] = 3075, + [3277] = 2849, + [3278] = 2848, + [3279] = 481, + [3280] = 481, + [3281] = 2843, + [3282] = 484, + [3283] = 2840, + [3284] = 3165, + [3285] = 3113, + [3286] = 3116, + [3287] = 480, + [3288] = 490, + [3289] = 3165, + [3290] = 3118, + [3291] = 487, + [3292] = 3119, + [3293] = 3165, + [3294] = 481, + [3295] = 484, + [3296] = 3165, + [3297] = 490, + [3298] = 464, + [3299] = 3165, + [3300] = 490, + [3301] = 3165, + [3302] = 3165, + [3303] = 3165, + [3304] = 3165, + [3305] = 2837, + [3306] = 492, + [3307] = 488, + [3308] = 3165, + [3309] = 3165, + [3310] = 3310, + [3311] = 474, + [3312] = 486, + [3313] = 465, + [3314] = 2835, + [3315] = 3165, + [3316] = 3165, + [3317] = 3165, + [3318] = 2832, + [3319] = 2831, + [3320] = 3165, + [3321] = 3165, + [3322] = 479, + [3323] = 2802, + [3324] = 3165, + [3325] = 3165, + [3326] = 3165, + [3327] = 2830, + [3328] = 3165, + [3329] = 3165, + [3330] = 2829, + [3331] = 485, + [3332] = 2828, + [3333] = 2827, + [3334] = 3165, + [3335] = 2816, + [3336] = 3165, + [3337] = 3165, + [3338] = 3165, + [3339] = 3165, + [3340] = 3165, + [3341] = 3165, + [3342] = 3165, + [3343] = 3165, + [3344] = 3165, + [3345] = 2814, + [3346] = 3165, + [3347] = 2813, + [3348] = 3165, + [3349] = 3165, + [3350] = 3195, + [3351] = 2812, + [3352] = 478, + [3353] = 477, + [3354] = 491, + [3355] = 3165, + [3356] = 2810, + [3357] = 3165, + [3358] = 2868, + [3359] = 2825, + [3360] = 476, + [3361] = 2809, + [3362] = 3165, + [3363] = 3165, + [3364] = 3165, + [3365] = 3365, + [3366] = 3165, + [3367] = 2803, + [3368] = 3365, + [3369] = 3165, + [3370] = 3165, + [3371] = 3165, + [3372] = 3165, + [3373] = 3165, + [3374] = 3165, + [3375] = 2801, + [3376] = 475, + [3377] = 3310, + [3378] = 3378, + [3379] = 2845, + [3380] = 3056, + [3381] = 3005, + [3382] = 3233, + [3383] = 3236, + [3384] = 2999, + [3385] = 3310, + [3386] = 3378, + [3387] = 2993, + [3388] = 3388, + [3389] = 3389, + [3390] = 2992, + [3391] = 2801, + [3392] = 2991, + [3393] = 489, + [3394] = 3019, + [3395] = 2965, + [3396] = 2803, + [3397] = 3397, + [3398] = 2809, + [3399] = 2956, + [3400] = 2825, + [3401] = 3195, + [3402] = 2952, + [3403] = 2948, + [3404] = 3036, + [3405] = 2947, + [3406] = 2946, + [3407] = 3389, + [3408] = 3365, + [3409] = 2938, + [3410] = 2937, + [3411] = 3233, + [3412] = 2936, + [3413] = 2923, + [3414] = 465, + [3415] = 482, + [3416] = 3236, + [3417] = 464, + [3418] = 483, + [3419] = 3310, + [3420] = 3378, + [3421] = 2922, + [3422] = 3388, + [3423] = 3389, + [3424] = 3388, + [3425] = 2921, + [3426] = 3165, + [3427] = 487, + [3428] = 2917, + [3429] = 2916, + [3430] = 2915, + [3431] = 2899, + [3432] = 2898, + [3433] = 2894, + [3434] = 2890, + [3435] = 3165, + [3436] = 2860, + [3437] = 3389, + [3438] = 3388, + [3439] = 486, + [3440] = 3378, + [3441] = 3119, + [3442] = 3118, + [3443] = 3116, + [3444] = 3113, + [3445] = 488, + [3446] = 2840, + [3447] = 2843, + [3448] = 492, + [3449] = 2848, + [3450] = 2849, + [3451] = 3233, + [3452] = 3236, + [3453] = 490, + [3454] = 3075, + [3455] = 3074, + [3456] = 832, + [3457] = 465, + [3458] = 3458, + [3459] = 470, + [3460] = 3458, + [3461] = 473, + [3462] = 3462, + [3463] = 465, + [3464] = 464, + [3465] = 1011, + [3466] = 1148, + [3467] = 880, + [3468] = 468, + [3469] = 1474, + [3470] = 3470, + [3471] = 1100, + [3472] = 885, + [3473] = 494, + [3474] = 464, + [3475] = 3458, + [3476] = 469, + [3477] = 3477, + [3478] = 583, + [3479] = 1163, + [3480] = 1158, + [3481] = 1081, + [3482] = 465, + [3483] = 859, + [3484] = 3458, + [3485] = 464, + [3486] = 3486, + [3487] = 3487, + [3488] = 481, + [3489] = 3487, + [3490] = 479, + [3491] = 3491, + [3492] = 486, + [3493] = 3487, + [3494] = 488, + [3495] = 3487, + [3496] = 3487, + [3497] = 3487, + [3498] = 492, + [3499] = 3487, + [3500] = 3487, + [3501] = 476, + [3502] = 3487, + [3503] = 3487, + [3504] = 491, + [3505] = 477, + [3506] = 478, + [3507] = 3487, + [3508] = 483, + [3509] = 3487, + [3510] = 482, + [3511] = 495, + [3512] = 475, + [3513] = 474, + [3514] = 3487, + [3515] = 485, + [3516] = 480, + [3517] = 3487, + [3518] = 3487, + [3519] = 3487, + [3520] = 3487, + [3521] = 3487, + [3522] = 490, + [3523] = 3487, + [3524] = 3487, + [3525] = 489, + [3526] = 3487, + [3527] = 3487, + [3528] = 487, + [3529] = 484, + [3530] = 3487, + [3531] = 3531, + [3532] = 3532, + [3533] = 3533, + [3534] = 3534, + [3535] = 464, + [3536] = 1361, + [3537] = 465, + [3538] = 464, + [3539] = 1146, + [3540] = 465, + [3541] = 1382, + [3542] = 1149, + [3543] = 1474, + [3544] = 494, + [3545] = 1429, + [3546] = 3546, + [3547] = 1301, [3548] = 3548, - [3549] = 3547, - [3550] = 379, - [3551] = 379, - [3552] = 363, - [3553] = 378, - [3554] = 3523, - [3555] = 362, - [3556] = 378, - [3557] = 3523, - [3558] = 372, - [3559] = 374, - [3560] = 374, - [3561] = 3526, - [3562] = 373, - [3563] = 373, - [3564] = 3564, + [3549] = 3546, + [3550] = 3546, + [3551] = 3548, + [3552] = 495, + [3553] = 3548, + [3554] = 3546, + [3555] = 3555, + [3556] = 1534, + [3557] = 3548, + [3558] = 3548, + [3559] = 464, + [3560] = 465, + [3561] = 3546, + [3562] = 465, + [3563] = 3548, + [3564] = 3546, [3565] = 3565, - [3566] = 370, - [3567] = 380, - [3568] = 375, - [3569] = 385, - [3570] = 381, - [3571] = 380, - [3572] = 389, - [3573] = 385, + [3566] = 3548, + [3567] = 3567, + [3568] = 3546, + [3569] = 1281, + [3570] = 3565, + [3571] = 3571, + [3572] = 464, + [3573] = 1607, [3574] = 3574, - [3575] = 3575, - [3576] = 3522, - [3577] = 3577, - [3578] = 3578, - [3579] = 389, - [3580] = 2147, - [3581] = 2146, - [3582] = 375, - [3583] = 3526, - [3584] = 381, - [3585] = 2131, - [3586] = 383, - [3587] = 384, - [3588] = 376, - [3589] = 3527, - [3590] = 2129, - [3591] = 3526, - [3592] = 372, - [3593] = 3527, - [3594] = 722, - [3595] = 391, - [3596] = 720, - [3597] = 705, - [3598] = 388, - [3599] = 3527, - [3600] = 694, - [3601] = 388, - [3602] = 391, - [3603] = 369, - [3604] = 370, - [3605] = 383, - [3606] = 384, - [3607] = 376, - [3608] = 390, - [3609] = 368, - [3610] = 367, - [3611] = 3522, - [3612] = 3522, - [3613] = 370, - [3614] = 370, - [3615] = 863, - [3616] = 377, - [3617] = 369, - [3618] = 368, - [3619] = 1089, - [3620] = 390, - [3621] = 382, - [3622] = 820, - [3623] = 382, - [3624] = 3624, - [3625] = 862, - [3626] = 387, - [3627] = 386, - [3628] = 829, - [3629] = 1089, - [3630] = 377, - [3631] = 367, - [3632] = 386, - [3633] = 387, - [3634] = 3523, - [3635] = 3540, - [3636] = 397, - [3637] = 3637, - [3638] = 1084, - [3639] = 377, - [3640] = 3640, - [3641] = 3547, - [3642] = 829, - [3643] = 820, - [3644] = 388, - [3645] = 3548, - [3646] = 863, - [3647] = 3624, - [3648] = 820, - [3649] = 386, - [3650] = 862, - [3651] = 385, - [3652] = 372, - [3653] = 694, - [3654] = 705, - [3655] = 720, - [3656] = 722, - [3657] = 829, - [3658] = 390, - [3659] = 880, - [3660] = 368, - [3661] = 1084, - [3662] = 387, - [3663] = 377, - [3664] = 3664, - [3665] = 3526, - [3666] = 3523, - [3667] = 3577, - [3668] = 391, - [3669] = 382, - [3670] = 369, - [3671] = 388, - [3672] = 1079, - [3673] = 368, - [3674] = 369, - [3675] = 386, - [3676] = 368, - [3677] = 369, - [3678] = 372, - [3679] = 370, - [3680] = 370, - [3681] = 369, - [3682] = 2278, - [3683] = 387, - [3684] = 905, - [3685] = 368, - [3686] = 391, - [3687] = 382, - [3688] = 3547, - [3689] = 390, - [3690] = 376, - [3691] = 367, - [3692] = 3540, - [3693] = 384, - [3694] = 3540, - [3695] = 383, - [3696] = 905, - [3697] = 1079, - [3698] = 3564, - [3699] = 380, - [3700] = 3565, - [3701] = 874, - [3702] = 381, - [3703] = 880, - [3704] = 3637, - [3705] = 2273, - [3706] = 876, - [3707] = 397, - [3708] = 2272, - [3709] = 2274, - [3710] = 3575, - [3711] = 375, - [3712] = 378, - [3713] = 3540, - [3714] = 3637, - [3715] = 3547, - [3716] = 829, - [3717] = 379, - [3718] = 376, - [3719] = 820, - [3720] = 384, - [3721] = 383, - [3722] = 370, - [3723] = 389, - [3724] = 385, - [3725] = 373, - [3726] = 374, - [3727] = 374, - [3728] = 380, - [3729] = 370, - [3730] = 3730, - [3731] = 369, - [3732] = 368, - [3733] = 373, - [3734] = 370, - [3735] = 381, - [3736] = 375, - [3737] = 379, - [3738] = 378, - [3739] = 389, - [3740] = 3578, - [3741] = 3574, - [3742] = 3742, - [3743] = 3743, - [3744] = 384, - [3745] = 3565, - [3746] = 3742, - [3747] = 3742, - [3748] = 3575, - [3749] = 376, - [3750] = 381, - [3751] = 3742, - [3752] = 3564, - [3753] = 3574, - [3754] = 3742, - [3755] = 3755, - [3756] = 3742, - [3757] = 389, - [3758] = 379, - [3759] = 378, - [3760] = 375, - [3761] = 3742, - [3762] = 385, - [3763] = 3742, - [3764] = 374, - [3765] = 380, - [3766] = 373, - [3767] = 863, - [3768] = 722, - [3769] = 720, - [3770] = 862, - [3771] = 3624, - [3772] = 705, - [3773] = 694, - [3774] = 863, - [3775] = 3742, - [3776] = 3548, - [3777] = 368, - [3778] = 3742, - [3779] = 369, - [3780] = 3742, - [3781] = 3781, - [3782] = 694, - [3783] = 372, - [3784] = 3742, - [3785] = 388, - [3786] = 820, - [3787] = 829, - [3788] = 390, - [3789] = 377, - [3790] = 3742, - [3791] = 386, - [3792] = 387, - [3793] = 397, - [3794] = 382, - [3795] = 3795, - [3796] = 368, - [3797] = 3797, - [3798] = 3798, - [3799] = 705, - [3800] = 369, - [3801] = 370, - [3802] = 3742, - [3803] = 3742, - [3804] = 3742, - [3805] = 369, - [3806] = 3574, - [3807] = 3742, - [3808] = 368, - [3809] = 1345, - [3810] = 3577, - [3811] = 3742, - [3812] = 3575, - [3813] = 3813, - [3814] = 3742, - [3815] = 1348, - [3816] = 3742, - [3817] = 3577, - [3818] = 3742, - [3819] = 3742, - [3820] = 1341, - [3821] = 3742, - [3822] = 3742, - [3823] = 3730, - [3824] = 383, - [3825] = 3742, - [3826] = 3826, + [3575] = 3548, + [3576] = 3546, + [3577] = 3546, + [3578] = 1542, + [3579] = 464, + [3580] = 465, + [3581] = 3581, + [3582] = 464, + [3583] = 3567, + [3584] = 464, + [3585] = 3565, + [3586] = 3548, + [3587] = 3546, + [3588] = 3546, + [3589] = 3548, + [3590] = 3546, + [3591] = 3567, + [3592] = 3548, + [3593] = 3548, + [3594] = 3548, + [3595] = 3546, + [3596] = 3567, + [3597] = 1556, + [3598] = 465, + [3599] = 3548, + [3600] = 465, + [3601] = 1498, + [3602] = 3548, + [3603] = 3565, + [3604] = 583, + [3605] = 3567, + [3606] = 3546, + [3607] = 465, + [3608] = 3565, + [3609] = 3609, + [3610] = 3546, + [3611] = 3548, + [3612] = 464, + [3613] = 3546, + [3614] = 3614, + [3615] = 3615, + [3616] = 3616, + [3617] = 3614, + [3618] = 3618, + [3619] = 465, + [3620] = 3620, + [3621] = 3621, + [3622] = 3618, + [3623] = 3621, + [3624] = 3618, + [3625] = 3618, + [3626] = 3621, + [3627] = 3621, + [3628] = 3628, + [3629] = 3618, + [3630] = 3621, + [3631] = 3621, + [3632] = 3621, + [3633] = 3618, + [3634] = 3618, + [3635] = 3618, + [3636] = 464, + [3637] = 3618, + [3638] = 3621, + [3639] = 3621, + [3640] = 3618, + [3641] = 3621, + [3642] = 3618, + [3643] = 3615, + [3644] = 3616, + [3645] = 3618, + [3646] = 3621, + [3647] = 3618, + [3648] = 3621, + [3649] = 3618, + [3650] = 3621, + [3651] = 3618, + [3652] = 3621, + [3653] = 3618, + [3654] = 3618, + [3655] = 3621, + [3656] = 3616, + [3657] = 3615, + [3658] = 3615, + [3659] = 3621, + [3660] = 3620, + [3661] = 3618, + [3662] = 3621, + [3663] = 3616, + [3664] = 465, + [3665] = 3618, + [3666] = 464, + [3667] = 3621, + [3668] = 3616, + [3669] = 3618, + [3670] = 3618, + [3671] = 3615, + [3672] = 3620, + [3673] = 3621, + [3674] = 3621, + [3675] = 3621, + [3676] = 3614, + [3677] = 3618, + [3678] = 3618, + [3679] = 3621, + [3680] = 3621, + [3681] = 3621, + [3682] = 3620, + [3683] = 3616, + [3684] = 3618, + [3685] = 3615, + [3686] = 3620, + [3687] = 3621, + [3688] = 3618, + [3689] = 3618, + [3690] = 3618, + [3691] = 3621, + [3692] = 3614, + [3693] = 3621, + [3694] = 3621, + [3695] = 3620, + [3696] = 3618, + [3697] = 3620, + [3698] = 3698, + [3699] = 3699, + [3700] = 3700, + [3701] = 3700, + [3702] = 3702, + [3703] = 3703, + [3704] = 3702, + [3705] = 3705, + [3706] = 3706, + [3707] = 3702, + [3708] = 3699, + [3709] = 3705, + [3710] = 3699, + [3711] = 3698, + [3712] = 3700, + [3713] = 3705, + [3714] = 3699, + [3715] = 3703, + [3716] = 3703, + [3717] = 3702, + [3718] = 3706, + [3719] = 3698, + [3720] = 3706, + [3721] = 3706, + [3722] = 3705, + [3723] = 3698, + [3724] = 3699, + [3725] = 3703, + [3726] = 3705, + [3727] = 3700, + [3728] = 3699, + [3729] = 3699, + [3730] = 3705, + [3731] = 3731, + [3732] = 3702, + [3733] = 3702, + [3734] = 3703, + [3735] = 3698, + [3736] = 3706, + [3737] = 3700, + [3738] = 3702, + [3739] = 3703, + [3740] = 3706, + [3741] = 3699, + [3742] = 3705, + [3743] = 3705, + [3744] = 3699, + [3745] = 3698, + [3746] = 3700, + [3747] = 3698, + [3748] = 3705, + [3749] = 3699, + [3750] = 3700, + [3751] = 3705, + [3752] = 3698, + [3753] = 3699, + [3754] = 3705, + [3755] = 3699, + [3756] = 3700, + [3757] = 3700, + [3758] = 3702, + [3759] = 3705, + [3760] = 3698, + [3761] = 3706, + [3762] = 3703, + [3763] = 3703, + [3764] = 3699, + [3765] = 3706, + [3766] = 3702, + [3767] = 3698, + [3768] = 3702, + [3769] = 3703, + [3770] = 3698, + [3771] = 3698, + [3772] = 3706, + [3773] = 3700, + [3774] = 3702, + [3775] = 3703, + [3776] = 3702, + [3777] = 3706, + [3778] = 3702, + [3779] = 3706, + [3780] = 3703, + [3781] = 3698, + [3782] = 3706, + [3783] = 3705, + [3784] = 3699, + [3785] = 3700, + [3786] = 3699, + [3787] = 3703, + [3788] = 3702, + [3789] = 3705, + [3790] = 3700, + [3791] = 3698, + [3792] = 3700, + [3793] = 3705, + [3794] = 3698, + [3795] = 3700, + [3796] = 3698, + [3797] = 3699, + [3798] = 3702, + [3799] = 3703, + [3800] = 3800, + [3801] = 3706, + [3802] = 3702, + [3803] = 3698, + [3804] = 3705, + [3805] = 3703, + [3806] = 3700, + [3807] = 3706, + [3808] = 3703, + [3809] = 3699, + [3810] = 3698, + [3811] = 3698, + [3812] = 3705, + [3813] = 3700, + [3814] = 3700, + [3815] = 3702, + [3816] = 3699, + [3817] = 3699, + [3818] = 3705, + [3819] = 3700, + [3820] = 3705, + [3821] = 3703, + [3822] = 3706, + [3823] = 3702, + [3824] = 3699, + [3825] = 3705, + [3826] = 3698, [3827] = 3827, - [3828] = 3664, - [3829] = 3548, - [3830] = 3830, - [3831] = 3742, - [3832] = 3742, - [3833] = 3833, - [3834] = 3742, - [3835] = 3742, - [3836] = 3742, - [3837] = 3624, - [3838] = 3742, - [3839] = 3826, - [3840] = 3742, - [3841] = 3841, - [3842] = 862, - [3843] = 368, - [3844] = 369, - [3845] = 3742, - [3846] = 1345, - [3847] = 720, - [3848] = 3547, - [3849] = 3540, - [3850] = 397, - [3851] = 3742, - [3852] = 3795, - [3853] = 722, - [3854] = 3742, - [3855] = 3742, - [3856] = 1341, - [3857] = 3742, - [3858] = 3742, - [3859] = 3578, - [3860] = 3742, - [3861] = 3861, - [3862] = 3742, - [3863] = 3863, - [3864] = 3742, - [3865] = 3865, - [3866] = 3866, - [3867] = 722, - [3868] = 3742, - [3869] = 720, - [3870] = 3742, - [3871] = 862, - [3872] = 3575, - [3873] = 3624, - [3874] = 1348, - [3875] = 3577, - [3876] = 705, - [3877] = 694, - [3878] = 863, - [3879] = 3548, - [3880] = 3742, - [3881] = 3881, - [3882] = 3742, - [3883] = 3841, - [3884] = 3742, - [3885] = 3742, - [3886] = 3742, - [3887] = 3565, - [3888] = 3888, - [3889] = 3742, - [3890] = 3890, - [3891] = 3891, - [3892] = 3742, - [3893] = 3742, - [3894] = 3894, - [3895] = 3742, - [3896] = 3565, - [3897] = 3564, - [3898] = 3742, - [3899] = 3578, - [3900] = 3900, - [3901] = 3861, - [3902] = 3742, - [3903] = 3900, - [3904] = 3742, - [3905] = 3564, - [3906] = 3894, - [3907] = 3574, - [3908] = 3742, - [3909] = 3742, - [3910] = 3578, - [3911] = 3742, - [3912] = 3742, - [3913] = 3913, - [3914] = 3742, - [3915] = 3881, - [3916] = 3916, - [3917] = 3863, - [3918] = 3742, - [3919] = 3664, - [3920] = 3920, - [3921] = 3921, - [3922] = 3922, - [3923] = 3923, - [3924] = 3924, - [3925] = 3925, - [3926] = 3664, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, - [3930] = 3930, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3925, - [3935] = 3932, - [3936] = 3924, - [3937] = 3931, - [3938] = 3923, - [3939] = 3930, - [3940] = 3929, - [3941] = 3833, - [3942] = 3942, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, - [3946] = 3946, - [3947] = 3947, - [3948] = 3891, - [3949] = 3949, - [3950] = 3928, - [3951] = 3951, - [3952] = 3952, - [3953] = 3927, - [3954] = 3730, - [3955] = 3955, - [3956] = 3956, - [3957] = 3957, - [3958] = 3958, - [3959] = 3959, - [3960] = 3921, - [3961] = 3920, - [3962] = 3962, - [3963] = 3894, - [3964] = 3964, - [3965] = 3894, - [3966] = 3966, - [3967] = 967, - [3968] = 3968, - [3969] = 3945, - [3970] = 1334, - [3971] = 3943, - [3972] = 3863, - [3973] = 1162, - [3974] = 3974, - [3975] = 3574, - [3976] = 3946, - [3977] = 3977, - [3978] = 3951, - [3979] = 3944, - [3980] = 3813, - [3981] = 3947, - [3982] = 3933, - [3983] = 3983, - [3984] = 3565, - [3985] = 3564, - [3986] = 3578, - [3987] = 3958, - [3988] = 3988, - [3989] = 3863, - [3990] = 1330, - [3991] = 3890, - [3992] = 3933, - [3993] = 1334, - [3994] = 3959, - [3995] = 3925, - [3996] = 3924, - [3997] = 3966, - [3998] = 3957, - [3999] = 3916, - [4000] = 3888, + [3828] = 3706, + [3829] = 3702, + [3830] = 3699, + [3831] = 3705, + [3832] = 3703, + [3833] = 3706, + [3834] = 3700, + [3835] = 3699, + [3836] = 3706, + [3837] = 3702, + [3838] = 3703, + [3839] = 3698, + [3840] = 3703, + [3841] = 3698, + [3842] = 3842, + [3843] = 3700, + [3844] = 3700, + [3845] = 3698, + [3846] = 3700, + [3847] = 3698, + [3848] = 3700, + [3849] = 3699, + [3850] = 3705, + [3851] = 3698, + [3852] = 3700, + [3853] = 3702, + [3854] = 3700, + [3855] = 3705, + [3856] = 3700, + [3857] = 3699, + [3858] = 3698, + [3859] = 3706, + [3860] = 3702, + [3861] = 3700, + [3862] = 3705, + [3863] = 3699, + [3864] = 3702, + [3865] = 3702, + [3866] = 3702, + [3867] = 3698, + [3868] = 3698, + [3869] = 3702, + [3870] = 3702, + [3871] = 3698, + [3872] = 3700, + [3873] = 3702, + [3874] = 3705, + [3875] = 3699, + [3876] = 3705, + [3877] = 3702, + [3878] = 3702, + [3879] = 3699, + [3880] = 3702, + [3881] = 3702, + [3882] = 3702, + [3883] = 3698, + [3884] = 3702, + [3885] = 3702, + [3886] = 3698, + [3887] = 3700, + [3888] = 3699, + [3889] = 3700, + [3890] = 3702, + [3891] = 3702, + [3892] = 3705, + [3893] = 3705, + [3894] = 3702, + [3895] = 3702, + [3896] = 3702, + [3897] = 3698, + [3898] = 3706, + [3899] = 3702, + [3900] = 3702, + [3901] = 3700, + [3902] = 3703, + [3903] = 3700, + [3904] = 3698, + [3905] = 3702, + [3906] = 3698, + [3907] = 3703, + [3908] = 3700, + [3909] = 3698, + [3910] = 3700, + [3911] = 3698, + [3912] = 3702, + [3913] = 3700, + [3914] = 3700, + [3915] = 3699, + [3916] = 3705, + [3917] = 3698, + [3918] = 3700, + [3919] = 3699, + [3920] = 3705, + [3921] = 3702, + [3922] = 3698, + [3923] = 3700, + [3924] = 3700, + [3925] = 3698, + [3926] = 3698, + [3927] = 3700, + [3928] = 3698, + [3929] = 3702, + [3930] = 3700, + [3931] = 3700, + [3932] = 3699, + [3933] = 3705, + [3934] = 3699, + [3935] = 3698, + [3936] = 3700, + [3937] = 3700, + [3938] = 3698, + [3939] = 3698, + [3940] = 3702, + [3941] = 3702, + [3942] = 3702, + [3943] = 3702, + [3944] = 3705, + [3945] = 3699, + [3946] = 3702, + [3947] = 3702, + [3948] = 3702, + [3949] = 3698, + [3950] = 3702, + [3951] = 3702, + [3952] = 3702, + [3953] = 3702, + [3954] = 3698, + [3955] = 3698, + [3956] = 3698, + [3957] = 3700, + [3958] = 3698, + [3959] = 3700, + [3960] = 3960, + [3961] = 3700, + [3962] = 3700, + [3963] = 3706, + [3964] = 3698, + [3965] = 3703, + [3966] = 3699, + [3967] = 3705, + [3968] = 3700, + [3969] = 3698, + [3970] = 3970, + [3971] = 3700, + [3972] = 3698, + [3973] = 3705, + [3974] = 3699, + [3975] = 3700, + [3976] = 3698, + [3977] = 3705, + [3978] = 3699, + [3979] = 3700, + [3980] = 3698, + [3981] = 3981, + [3982] = 3705, + [3983] = 3699, + [3984] = 3698, + [3985] = 3705, + [3986] = 3699, + [3987] = 3842, + [3988] = 3700, + [3989] = 3700, + [3990] = 3698, + [3991] = 3700, + [3992] = 3698, + [3993] = 3700, + [3994] = 3705, + [3995] = 3699, + [3996] = 3698, + [3997] = 3705, + [3998] = 3700, + [3999] = 3698, + [4000] = 3699, [4001] = 4001, - [4002] = 959, - [4003] = 967, - [4004] = 4004, - [4005] = 4005, - [4006] = 3952, - [4007] = 3730, - [4008] = 4008, - [4009] = 4004, - [4010] = 4010, - [4011] = 3949, - [4012] = 4012, - [4013] = 4013, - [4014] = 3977, - [4015] = 4001, - [4016] = 369, - [4017] = 4017, - [4018] = 368, - [4019] = 4019, - [4020] = 959, - [4021] = 4021, - [4022] = 4005, - [4023] = 4008, - [4024] = 4010, - [4025] = 3781, - [4026] = 3964, - [4027] = 3548, - [4028] = 863, - [4029] = 694, - [4030] = 705, - [4031] = 3624, - [4032] = 862, - [4033] = 3968, - [4034] = 720, + [4002] = 3700, + [4003] = 3700, + [4004] = 3698, + [4005] = 3705, + [4006] = 3699, + [4007] = 3700, + [4008] = 3705, + [4009] = 3698, + [4010] = 3700, + [4011] = 3698, + [4012] = 3699, + [4013] = 3698, + [4014] = 3700, + [4015] = 3698, + [4016] = 3702, + [4017] = 3700, + [4018] = 3827, + [4019] = 3700, + [4020] = 3698, + [4021] = 3705, + [4022] = 3700, + [4023] = 3700, + [4024] = 3706, + [4025] = 3699, + [4026] = 3700, + [4027] = 3702, + [4028] = 3702, + [4029] = 3698, + [4030] = 3703, + [4031] = 3706, + [4032] = 4001, + [4033] = 4033, + [4034] = 3702, [4035] = 4035, - [4036] = 722, - [4037] = 4012, - [4038] = 4013, - [4039] = 3955, - [4040] = 391, - [4041] = 3962, - [4042] = 3942, - [4043] = 3949, - [4044] = 1330, - [4045] = 4019, - [4046] = 3730, - [4047] = 4021, - [4048] = 3956, - [4049] = 4017, - [4050] = 3988, + [4036] = 3703, + [4037] = 3705, + [4038] = 3700, + [4039] = 3706, + [4040] = 4040, + [4041] = 4041, + [4042] = 3698, + [4043] = 4043, + [4044] = 4044, + [4045] = 3703, + [4046] = 3700, + [4047] = 3699, + [4048] = 3705, + [4049] = 3699, + [4050] = 3706, [4051] = 4051, - [4052] = 3664, - [4053] = 4053, - [4054] = 4035, - [4055] = 4055, - [4056] = 3983, - [4057] = 3974, - [4058] = 4051, - [4059] = 4053, - [4060] = 4055, - [4061] = 4061, - [4062] = 4062, - [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 4061, - [4067] = 4062, - [4068] = 4063, - [4069] = 4064, - [4070] = 4065, - [4071] = 370, - [4072] = 397, - [4073] = 3890, - [4074] = 3890, - [4075] = 3813, - [4076] = 3781, - [4077] = 4077, - [4078] = 369, - [4079] = 4079, - [4080] = 368, - [4081] = 370, - [4082] = 4082, - [4083] = 3916, - [4084] = 874, - [4085] = 3888, - [4086] = 4086, - [4087] = 3730, - [4088] = 876, - [4089] = 3781, - [4090] = 3664, - [4091] = 3891, - [4092] = 3888, - [4093] = 3891, - [4094] = 3888, - [4095] = 3813, - [4096] = 3833, - [4097] = 3813, - [4098] = 368, - [4099] = 3916, - [4100] = 367, - [4101] = 3781, - [4102] = 369, - [4103] = 3833, - [4104] = 3833, - [4105] = 3523, - [4106] = 3891, - [4107] = 3526, - [4108] = 3890, - [4109] = 3916, - [4110] = 370, - [4111] = 386, - [4112] = 3526, - [4113] = 3526, - [4114] = 4114, - [4115] = 4115, - [4116] = 4116, - [4117] = 4117, - [4118] = 4118, - [4119] = 4119, - [4120] = 4120, - [4121] = 4121, - [4122] = 4122, - [4123] = 4123, - [4124] = 370, - [4125] = 4125, - [4126] = 4126, - [4127] = 4117, - [4128] = 4128, - [4129] = 376, - [4130] = 4130, - [4131] = 4131, - [4132] = 4132, - [4133] = 384, - [4134] = 383, - [4135] = 370, - [4136] = 4136, - [4137] = 4128, - [4138] = 4138, - [4139] = 4123, - [4140] = 4136, - [4141] = 4132, - [4142] = 4142, - [4143] = 4143, - [4144] = 4131, - [4145] = 4145, - [4146] = 3888, - [4147] = 4147, - [4148] = 4148, - [4149] = 368, - [4150] = 4150, - [4151] = 4150, - [4152] = 4152, - [4153] = 3916, - [4154] = 3890, - [4155] = 369, - [4156] = 4130, - [4157] = 370, - [4158] = 381, - [4159] = 4126, - [4160] = 4125, - [4161] = 4121, - [4162] = 4162, - [4163] = 4120, - [4164] = 375, - [4165] = 378, - [4166] = 379, - [4167] = 4167, - [4168] = 389, - [4169] = 3833, - [4170] = 4170, - [4171] = 385, - [4172] = 3891, - [4173] = 4148, - [4174] = 4174, - [4175] = 4175, - [4176] = 4123, - [4177] = 374, - [4178] = 380, - [4179] = 373, - [4180] = 4128, - [4181] = 4136, - [4182] = 377, - [4183] = 4132, - [4184] = 4131, - [4185] = 4148, - [4186] = 4130, - [4187] = 4117, - [4188] = 4126, - [4189] = 4125, - [4190] = 4121, - [4191] = 3547, - [4192] = 820, - [4193] = 4120, - [4194] = 3523, - [4195] = 4195, - [4196] = 4196, - [4197] = 4150, - [4198] = 382, - [4199] = 829, - [4200] = 387, - [4201] = 3540, - [4202] = 4202, - [4203] = 4203, - [4204] = 4204, - [4205] = 4205, - [4206] = 4174, - [4207] = 4207, - [4208] = 390, - [4209] = 4209, - [4210] = 388, - [4211] = 372, - [4212] = 4212, - [4213] = 4174, - [4214] = 4214, - [4215] = 4215, - [4216] = 4216, + [4052] = 3703, + [4053] = 3706, + [4054] = 3705, + [4055] = 3698, + [4056] = 4056, + [4057] = 3970, + [4058] = 4058, + [4059] = 3698, + [4060] = 3731, + [4061] = 3699, + [4062] = 3699, + [4063] = 3705, + [4064] = 4033, + [4065] = 3702, + [4066] = 3981, + [4067] = 3842, + [4068] = 4035, + [4069] = 4069, + [4070] = 4040, + [4071] = 3698, + [4072] = 4041, + [4073] = 4043, + [4074] = 3705, + [4075] = 3700, + [4076] = 3699, + [4077] = 3700, + [4078] = 3827, + [4079] = 3705, + [4080] = 3698, + [4081] = 3700, + [4082] = 3699, + [4083] = 4083, + [4084] = 4044, + [4085] = 4085, + [4086] = 3698, + [4087] = 3698, + [4088] = 3700, + [4089] = 3700, + [4090] = 4051, + [4091] = 3960, + [4092] = 3698, + [4093] = 4056, + [4094] = 3698, + [4095] = 3698, + [4096] = 4069, + [4097] = 3700, + [4098] = 4058, + [4099] = 3698, + [4100] = 3698, + [4101] = 3705, + [4102] = 4085, + [4103] = 3699, + [4104] = 3700, + [4105] = 3700, + [4106] = 3698, + [4107] = 3703, + [4108] = 4108, + [4109] = 3706, + [4110] = 4083, + [4111] = 3706, + [4112] = 3705, + [4113] = 3698, + [4114] = 3699, + [4115] = 3703, + [4116] = 3698, + [4117] = 3700, + [4118] = 3703, + [4119] = 3706, + [4120] = 4085, + [4121] = 4083, + [4122] = 3827, + [4123] = 4069, + [4124] = 3981, + [4125] = 3703, + [4126] = 3706, + [4127] = 3702, + [4128] = 3698, + [4129] = 3698, + [4130] = 3731, + [4131] = 4058, + [4132] = 3970, + [4133] = 3700, + [4134] = 4056, + [4135] = 3705, + [4136] = 3699, + [4137] = 3800, + [4138] = 3703, + [4139] = 3698, + [4140] = 3698, + [4141] = 3700, + [4142] = 3960, + [4143] = 4051, + [4144] = 3705, + [4145] = 4044, + [4146] = 4043, + [4147] = 4041, + [4148] = 4040, + [4149] = 4035, + [4150] = 4033, + [4151] = 4001, + [4152] = 3706, + [4153] = 3700, + [4154] = 3699, + [4155] = 3705, + [4156] = 3700, + [4157] = 3698, + [4158] = 3698, + [4159] = 3700, + [4160] = 3700, + [4161] = 3700, + [4162] = 3700, + [4163] = 3698, + [4164] = 3699, + [4165] = 3703, + [4166] = 3705, + [4167] = 3706, + [4168] = 3702, + [4169] = 3699, + [4170] = 3703, + [4171] = 3700, + [4172] = 3698, + [4173] = 3700, + [4174] = 3706, + [4175] = 3699, + [4176] = 3705, + [4177] = 3700, + [4178] = 3700, + [4179] = 3698, + [4180] = 3700, + [4181] = 3698, + [4182] = 3703, + [4183] = 3705, + [4184] = 3699, + [4185] = 3800, + [4186] = 3706, + [4187] = 3698, + [4188] = 3703, + [4189] = 3706, + [4190] = 3699, + [4191] = 3700, + [4192] = 3705, + [4193] = 3699, + [4194] = 3705, + [4195] = 3705, + [4196] = 3699, + [4197] = 3700, + [4198] = 3698, + [4199] = 3698, + [4200] = 3699, + [4201] = 3705, + [4202] = 3699, + [4203] = 3700, + [4204] = 3705, + [4205] = 3699, + [4206] = 3705, + [4207] = 3699, + [4208] = 3705, + [4209] = 3705, + [4210] = 3699, + [4211] = 3699, + [4212] = 3705, + [4213] = 3700, + [4214] = 3698, + [4215] = 3705, + [4216] = 464, [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 3578, - [4221] = 391, - [4222] = 3564, + [4218] = 469, + [4219] = 4217, + [4220] = 4217, + [4221] = 4221, + [4222] = 469, [4223] = 4223, - [4224] = 3565, + [4224] = 4224, [4225] = 4225, - [4226] = 4226, + [4226] = 4217, [4227] = 4227, - [4228] = 3574, - [4229] = 862, + [4228] = 465, + [4229] = 1011, [4230] = 4230, [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 369, + [4232] = 468, + [4233] = 469, + [4234] = 4227, [4235] = 4235, [4236] = 4236, [4237] = 4237, - [4238] = 3624, - [4239] = 4239, - [4240] = 4216, + [4238] = 1148, + [4239] = 4225, + [4240] = 1100, [4241] = 4241, - [4242] = 4242, + [4242] = 832, [4243] = 4243, - [4244] = 4244, - [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 4248, - [4249] = 367, + [4244] = 468, + [4245] = 473, + [4246] = 859, + [4247] = 1081, + [4248] = 470, + [4249] = 4223, [4250] = 4250, - [4251] = 4251, - [4252] = 3574, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 4256, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 3540, - [4262] = 694, - [4263] = 705, - [4264] = 4264, - [4265] = 722, - [4266] = 863, - [4267] = 4216, - [4268] = 3548, - [4269] = 720, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, + [4251] = 470, + [4252] = 4252, + [4253] = 468, + [4254] = 4224, + [4255] = 469, + [4256] = 468, + [4257] = 885, + [4258] = 473, + [4259] = 469, + [4260] = 880, + [4261] = 494, + [4262] = 1429, + [4263] = 489, + [4264] = 491, + [4265] = 475, + [4266] = 468, + [4267] = 476, + [4268] = 468, + [4269] = 4227, + [4270] = 880, + [4271] = 1100, + [4272] = 885, [4273] = 4273, - [4274] = 367, - [4275] = 1162, - [4276] = 4276, - [4277] = 862, + [4274] = 832, + [4275] = 478, + [4276] = 859, + [4277] = 1429, [4278] = 4278, - [4279] = 4279, - [4280] = 3624, - [4281] = 4281, - [4282] = 4282, + [4279] = 4235, + [4280] = 474, + [4281] = 4224, + [4282] = 4230, [4283] = 4283, - [4284] = 4284, - [4285] = 3578, - [4286] = 3547, - [4287] = 720, - [4288] = 722, - [4289] = 370, - [4290] = 4290, - [4291] = 4291, - [4292] = 368, - [4293] = 4293, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 369, - [4300] = 4300, - [4301] = 4301, - [4302] = 4302, - [4303] = 368, - [4304] = 368, - [4305] = 369, - [4306] = 3548, - [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 829, - [4311] = 863, - [4312] = 820, - [4313] = 4313, - [4314] = 4314, - [4315] = 4315, - [4316] = 694, - [4317] = 4317, - [4318] = 4318, - [4319] = 4319, - [4320] = 4320, - [4321] = 705, - [4322] = 389, - [4323] = 382, - [4324] = 387, - [4325] = 379, - [4326] = 3574, - [4327] = 4327, - [4328] = 391, - [4329] = 369, - [4330] = 367, - [4331] = 380, - [4332] = 694, - [4333] = 375, - [4334] = 705, - [4335] = 388, - [4336] = 385, - [4337] = 386, - [4338] = 381, + [4284] = 473, + [4285] = 482, + [4286] = 468, + [4287] = 1361, + [4288] = 474, + [4289] = 4224, + [4290] = 1146, + [4291] = 2704, + [4292] = 832, + [4293] = 2702, + [4294] = 1149, + [4295] = 485, + [4296] = 859, + [4297] = 473, + [4298] = 481, + [4299] = 4252, + [4300] = 486, + [4301] = 487, + [4302] = 479, + [4303] = 483, + [4304] = 470, + [4305] = 1382, + [4306] = 490, + [4307] = 488, + [4308] = 492, + [4309] = 470, + [4310] = 1100, + [4311] = 479, + [4312] = 4223, + [4313] = 485, + [4314] = 4225, + [4315] = 469, + [4316] = 481, + [4317] = 474, + [4318] = 486, + [4319] = 4231, + [4320] = 484, + [4321] = 4225, + [4322] = 489, + [4323] = 481, + [4324] = 494, + [4325] = 486, + [4326] = 487, + [4327] = 479, + [4328] = 478, + [4329] = 477, + [4330] = 491, + [4331] = 1081, + [4332] = 490, + [4333] = 487, + [4334] = 479, + [4335] = 475, + [4336] = 476, + [4337] = 482, + [4338] = 483, [4339] = 4339, - [4340] = 374, - [4341] = 1084, - [4342] = 391, - [4343] = 381, - [4344] = 862, - [4345] = 368, - [4346] = 382, - [4347] = 3624, - [4348] = 720, - [4349] = 397, - [4350] = 722, - [4351] = 863, - [4352] = 375, - [4353] = 373, - [4354] = 378, - [4355] = 4355, - [4356] = 3548, - [4357] = 880, - [4358] = 3664, - [4359] = 389, - [4360] = 383, - [4361] = 384, - [4362] = 376, - [4363] = 388, - [4364] = 3730, - [4365] = 387, - [4366] = 383, - [4367] = 3564, - [4368] = 1089, - [4369] = 384, - [4370] = 386, - [4371] = 376, - [4372] = 3565, - [4373] = 4373, - [4374] = 372, - [4375] = 905, - [4376] = 378, - [4377] = 3730, - [4378] = 390, - [4379] = 3664, - [4380] = 377, - [4381] = 373, - [4382] = 385, - [4383] = 377, - [4384] = 390, - [4385] = 3578, - [4386] = 372, + [4340] = 485, + [4341] = 4341, + [4342] = 4342, + [4343] = 474, + [4344] = 2694, + [4345] = 469, + [4346] = 4346, + [4347] = 1146, + [4348] = 486, + [4349] = 4349, + [4350] = 469, + [4351] = 1382, + [4352] = 885, + [4353] = 4227, + [4354] = 478, + [4355] = 477, + [4356] = 491, + [4357] = 482, + [4358] = 4237, + [4359] = 469, + [4360] = 492, + [4361] = 469, + [4362] = 469, + [4363] = 2696, + [4364] = 4231, + [4365] = 478, + [4366] = 488, + [4367] = 492, + [4368] = 494, + [4369] = 475, + [4370] = 1081, + [4371] = 4250, + [4372] = 490, + [4373] = 488, + [4374] = 491, + [4375] = 880, + [4376] = 4224, + [4377] = 480, + [4378] = 490, + [4379] = 487, + [4380] = 470, + [4381] = 4227, + [4382] = 1149, + [4383] = 1361, + [4384] = 488, + [4385] = 492, + [4386] = 484, [4387] = 4387, - [4388] = 380, - [4389] = 374, - [4390] = 379, - [4391] = 1079, - [4392] = 382, - [4393] = 397, - [4394] = 376, - [4395] = 384, - [4396] = 380, - [4397] = 3833, - [4398] = 383, - [4399] = 389, - [4400] = 4400, - [4401] = 397, - [4402] = 375, - [4403] = 378, - [4404] = 3891, - [4405] = 379, - [4406] = 377, - [4407] = 374, - [4408] = 390, - [4409] = 4409, - [4410] = 373, - [4411] = 880, - [4412] = 381, - [4413] = 1079, - [4414] = 3664, - [4415] = 3888, - [4416] = 387, - [4417] = 3730, - [4418] = 4418, - [4419] = 388, - [4420] = 386, - [4421] = 905, - [4422] = 1084, - [4423] = 385, - [4424] = 391, - [4425] = 3916, - [4426] = 372, - [4427] = 3890, - [4428] = 4005, - [4429] = 3890, - [4430] = 4064, - [4431] = 4065, - [4432] = 4432, - [4433] = 362, - [4434] = 4432, - [4435] = 4432, - [4436] = 4432, - [4437] = 363, - [4438] = 4035, - [4439] = 3956, - [4440] = 4432, - [4441] = 4432, - [4442] = 4432, - [4443] = 3833, - [4444] = 4004, - [4445] = 3841, - [4446] = 3888, - [4447] = 3881, - [4448] = 4062, - [4449] = 4061, - [4450] = 1334, - [4451] = 4055, - [4452] = 4053, - [4453] = 370, - [4454] = 4051, - [4455] = 4063, - [4456] = 3900, - [4457] = 1341, - [4458] = 959, - [4459] = 967, - [4460] = 3826, - [4461] = 3861, - [4462] = 3795, - [4463] = 4021, - [4464] = 3891, - [4465] = 1348, - [4466] = 4019, - [4467] = 4017, - [4468] = 4013, - [4469] = 4012, - [4470] = 4010, - [4471] = 4008, - [4472] = 397, - [4473] = 4001, - [4474] = 3916, - [4475] = 1330, - [4476] = 3894, - [4477] = 4432, - [4478] = 3977, - [4479] = 1345, - [4480] = 4432, - [4481] = 3863, - [4482] = 3932, - [4483] = 3927, - [4484] = 4484, - [4485] = 3983, - [4486] = 3968, - [4487] = 4005, - [4488] = 369, - [4489] = 863, - [4490] = 3988, - [4491] = 3966, - [4492] = 368, - [4493] = 4493, - [4494] = 4013, - [4495] = 3959, - [4496] = 4484, - [4497] = 3958, - [4498] = 3964, - [4499] = 3624, - [4500] = 3548, - [4501] = 3957, - [4502] = 3944, - [4503] = 367, - [4504] = 3951, - [4505] = 4493, - [4506] = 3942, - [4507] = 3945, - [4508] = 4001, - [4509] = 4017, - [4510] = 3962, - [4511] = 1330, - [4512] = 959, - [4513] = 1334, - [4514] = 3955, - [4515] = 3921, - [4516] = 4012, - [4517] = 3863, - [4518] = 3894, - [4519] = 4004, - [4520] = 4051, - [4521] = 3923, - [4522] = 3952, - [4523] = 3956, - [4524] = 4035, - [4525] = 862, - [4526] = 4484, - [4527] = 3947, - [4528] = 4065, - [4529] = 967, - [4530] = 3946, - [4531] = 3920, - [4532] = 4064, - [4533] = 3928, - [4534] = 4010, - [4535] = 4063, - [4536] = 4062, - [4537] = 3974, - [4538] = 4061, - [4539] = 3929, - [4540] = 4055, - [4541] = 4053, - [4542] = 3977, - [4543] = 4008, - [4544] = 4493, - [4545] = 3943, - [4546] = 3930, - [4547] = 4019, - [4548] = 4021, - [4549] = 4549, - [4550] = 4493, - [4551] = 3931, - [4552] = 4484, - [4553] = 380, - [4554] = 379, - [4555] = 375, - [4556] = 385, - [4557] = 378, - [4558] = 373, - [4559] = 374, - [4560] = 381, - [4561] = 389, - [4562] = 383, - [4563] = 384, - [4564] = 376, - [4565] = 390, - [4566] = 377, - [4567] = 3664, - [4568] = 382, - [4569] = 391, - [4570] = 4570, - [4571] = 372, - [4572] = 4572, - [4573] = 1084, - [4574] = 386, - [4575] = 1079, - [4576] = 388, - [4577] = 387, - [4578] = 4578, - [4579] = 4579, - [4580] = 4578, - [4581] = 4579, - [4582] = 4579, - [4583] = 4578, - [4584] = 4578, - [4585] = 4578, - [4586] = 4579, - [4587] = 4578, - [4588] = 4588, - [4589] = 4579, - [4590] = 4578, - [4591] = 4579, - [4592] = 4578, - [4593] = 4579, - [4594] = 4579, - [4595] = 4579, - [4596] = 4578, - [4597] = 4579, - [4598] = 4578, - [4599] = 4579, - [4600] = 4579, - [4601] = 4579, - [4602] = 4578, - [4603] = 4579, - [4604] = 4578, - [4605] = 4578, - [4606] = 4579, - [4607] = 4579, - [4608] = 4578, - [4609] = 4578, - [4610] = 4579, - [4611] = 362, - [4612] = 4578, - [4613] = 4579, - [4614] = 363, - [4615] = 4578, - [4616] = 4579, - [4617] = 4578, - [4618] = 4578, - [4619] = 4579, - [4620] = 4579, - [4621] = 4579, - [4622] = 4578, - [4623] = 4578, - [4624] = 4578, - [4625] = 4579, - [4626] = 4579, - [4627] = 4578, - [4628] = 4578, - [4629] = 4579, - [4630] = 4578, - [4631] = 4579, - [4632] = 4578, - [4633] = 4578, - [4634] = 4579, - [4635] = 4578, - [4636] = 4579, - [4637] = 4579, - [4638] = 4578, - [4639] = 4579, - [4640] = 4578, - [4641] = 4578, - [4642] = 4578, - [4643] = 4579, - [4644] = 4579, - [4645] = 4578, - [4646] = 4579, - [4647] = 4579, - [4648] = 4578, - [4649] = 4579, - [4650] = 4579, - [4651] = 4578, - [4652] = 4579, - [4653] = 4578, - [4654] = 4579, - [4655] = 4578, - [4656] = 4578, - [4657] = 4579, - [4658] = 4578, - [4659] = 4579, - [4660] = 4578, - [4661] = 4579, - [4662] = 4579, - [4663] = 4578, - [4664] = 4578, - [4665] = 4578, - [4666] = 4578, - [4667] = 4578, - [4668] = 4579, - [4669] = 4578, - [4670] = 397, - [4671] = 4579, - [4672] = 4578, - [4673] = 4579, - [4674] = 4579, - [4675] = 4579, - [4676] = 4578, - [4677] = 4578, - [4678] = 4579, - [4679] = 4578, - [4680] = 4579, - [4681] = 4578, - [4682] = 4579, - [4683] = 4578, - [4684] = 4579, - [4685] = 4579, - [4686] = 4579, - [4687] = 4578, - [4688] = 4578, - [4689] = 4579, - [4690] = 4579, - [4691] = 4578, - [4692] = 4579, - [4693] = 4579, - [4694] = 4578, - [4695] = 4579, - [4696] = 4578, - [4697] = 4578, - [4698] = 4579, - [4699] = 4578, - [4700] = 4578, - [4701] = 4579, - [4702] = 1330, - [4703] = 1334, - [4704] = 4704, - [4705] = 4705, - [4706] = 4704, - [4707] = 4707, - [4708] = 4704, - [4709] = 4707, - [4710] = 4704, - [4711] = 4707, + [4388] = 484, + [4389] = 489, + [4390] = 1011, + [4391] = 481, + [4392] = 485, + [4393] = 489, + [4394] = 494, + [4395] = 480, + [4396] = 4223, + [4397] = 4223, + [4398] = 483, + [4399] = 480, + [4400] = 4225, + [4401] = 469, + [4402] = 477, + [4403] = 476, + [4404] = 482, + [4405] = 484, + [4406] = 4252, + [4407] = 475, + [4408] = 476, + [4409] = 483, + [4410] = 1148, + [4411] = 477, + [4412] = 480, + [4413] = 468, + [4414] = 473, + [4415] = 4415, + [4416] = 4349, + [4417] = 476, + [4418] = 859, + [4419] = 483, + [4420] = 4387, + [4421] = 1146, + [4422] = 470, + [4423] = 495, + [4424] = 481, + [4425] = 486, + [4426] = 487, + [4427] = 479, + [4428] = 4339, + [4429] = 483, + [4430] = 880, + [4431] = 1361, + [4432] = 490, + [4433] = 4341, + [4434] = 481, + [4435] = 486, + [4436] = 487, + [4437] = 479, + [4438] = 475, + [4439] = 4230, + [4440] = 832, + [4441] = 490, + [4442] = 475, + [4443] = 478, + [4444] = 477, + [4445] = 491, + [4446] = 489, + [4447] = 478, + [4448] = 477, + [4449] = 491, + [4450] = 885, + [4451] = 480, + [4452] = 880, + [4453] = 468, + [4454] = 476, + [4455] = 4283, + [4456] = 479, + [4457] = 489, + [4458] = 1163, + [4459] = 885, + [4460] = 1158, + [4461] = 485, + [4462] = 1146, + [4463] = 832, + [4464] = 485, + [4465] = 4278, + [4466] = 859, + [4467] = 859, + [4468] = 473, + [4469] = 488, + [4470] = 492, + [4471] = 470, + [4472] = 1081, + [4473] = 485, + [4474] = 474, + [4475] = 481, + [4476] = 4231, + [4477] = 832, + [4478] = 475, + [4479] = 1100, + [4480] = 4250, + [4481] = 4231, + [4482] = 474, + [4483] = 494, + [4484] = 4252, + [4485] = 494, + [4486] = 1100, + [4487] = 469, + [4488] = 4252, + [4489] = 4489, + [4490] = 476, + [4491] = 469, + [4492] = 1149, + [4493] = 482, + [4494] = 483, + [4495] = 469, + [4496] = 481, + [4497] = 486, + [4498] = 494, + [4499] = 485, + [4500] = 1149, + [4501] = 487, + [4502] = 479, + [4503] = 495, + [4504] = 1081, + [4505] = 473, + [4506] = 4231, + [4507] = 1429, + [4508] = 474, + [4509] = 2926, + [4510] = 473, + [4511] = 470, + [4512] = 489, + [4513] = 880, + [4514] = 1011, + [4515] = 486, + [4516] = 490, + [4517] = 4235, + [4518] = 1081, + [4519] = 4230, + [4520] = 468, + [4521] = 1429, + [4522] = 1100, + [4523] = 470, + [4524] = 469, + [4525] = 1148, + [4526] = 482, + [4527] = 1146, + [4528] = 4342, + [4529] = 4252, + [4530] = 4235, + [4531] = 1148, + [4532] = 482, + [4533] = 494, + [4534] = 4237, + [4535] = 1011, + [4536] = 487, + [4537] = 488, + [4538] = 1149, + [4539] = 483, + [4540] = 492, + [4541] = 2931, + [4542] = 2930, + [4543] = 478, + [4544] = 477, + [4545] = 491, + [4546] = 1382, + [4547] = 4235, + [4548] = 476, + [4549] = 4346, + [4550] = 1148, + [4551] = 4489, + [4552] = 478, + [4553] = 477, + [4554] = 1382, + [4555] = 1100, + [4556] = 488, + [4557] = 492, + [4558] = 473, + [4559] = 1011, + [4560] = 491, + [4561] = 484, + [4562] = 4252, + [4563] = 495, + [4564] = 490, + [4565] = 4227, + [4566] = 482, + [4567] = 4489, + [4568] = 4237, + [4569] = 475, + [4570] = 4224, + [4571] = 4250, + [4572] = 484, + [4573] = 4250, + [4574] = 4237, + [4575] = 480, + [4576] = 484, + [4577] = 495, + [4578] = 469, + [4579] = 832, + [4580] = 4273, + [4581] = 4230, + [4582] = 1081, + [4583] = 470, + [4584] = 473, + [4585] = 473, + [4586] = 470, + [4587] = 480, + [4588] = 488, + [4589] = 859, + [4590] = 492, + [4591] = 473, + [4592] = 470, + [4593] = 469, + [4594] = 470, + [4595] = 484, + [4596] = 1382, + [4597] = 1429, + [4598] = 474, + [4599] = 4231, + [4600] = 480, + [4601] = 885, + [4602] = 885, + [4603] = 473, + [4604] = 880, + [4605] = 2929, + [4606] = 489, + [4607] = 4607, + [4608] = 4339, + [4609] = 4609, + [4610] = 4610, + [4611] = 473, + [4612] = 4607, + [4613] = 4610, + [4614] = 1081, + [4615] = 4615, + [4616] = 4616, + [4617] = 1301, + [4618] = 475, + [4619] = 859, + [4620] = 4620, + [4621] = 4252, + [4622] = 832, + [4623] = 4623, + [4624] = 4624, + [4625] = 4273, + [4626] = 4231, + [4627] = 1100, + [4628] = 491, + [4629] = 4624, + [4630] = 470, + [4631] = 477, + [4632] = 4632, + [4633] = 4252, + [4634] = 470, + [4635] = 473, + [4636] = 1556, + [4637] = 488, + [4638] = 492, + [4639] = 1498, + [4640] = 1081, + [4641] = 4624, + [4642] = 4642, + [4643] = 4609, + [4644] = 4250, + [4645] = 1146, + [4646] = 4646, + [4647] = 4642, + [4648] = 4648, + [4649] = 4624, + [4650] = 4283, + [4651] = 4651, + [4652] = 4624, + [4653] = 478, + [4654] = 4624, + [4655] = 4655, + [4656] = 476, + [4657] = 4624, + [4658] = 4624, + [4659] = 4346, + [4660] = 4624, + [4661] = 4624, + [4662] = 4349, + [4663] = 4341, + [4664] = 4664, + [4665] = 4235, + [4666] = 4632, + [4667] = 4387, + [4668] = 4624, + [4669] = 473, + [4670] = 476, + [4671] = 4624, + [4672] = 4624, + [4673] = 880, + [4674] = 470, + [4675] = 4624, + [4676] = 4624, + [4677] = 4624, + [4678] = 4624, + [4679] = 4624, + [4680] = 4624, + [4681] = 4624, + [4682] = 4624, + [4683] = 859, + [4684] = 880, + [4685] = 4273, + [4686] = 4624, + [4687] = 832, + [4688] = 1542, + [4689] = 4231, + [4690] = 4624, + [4691] = 4624, + [4692] = 1081, + [4693] = 4624, + [4694] = 4624, + [4695] = 1429, + [4696] = 4624, + [4697] = 4283, + [4698] = 885, + [4699] = 880, + [4700] = 4700, + [4701] = 484, + [4702] = 4648, + [4703] = 4624, + [4704] = 1149, + [4705] = 1100, + [4706] = 480, + [4707] = 4624, + [4708] = 475, + [4709] = 1301, + [4710] = 4278, + [4711] = 885, [4712] = 4712, - [4713] = 4705, - [4714] = 4705, - [4715] = 4705, - [4716] = 4705, - [4717] = 4705, - [4718] = 4707, - [4719] = 4707, - [4720] = 4705, - [4721] = 4707, - [4722] = 4705, - [4723] = 4705, - [4724] = 4707, - [4725] = 4707, - [4726] = 4705, - [4727] = 4704, - [4728] = 4704, - [4729] = 4707, - [4730] = 4705, - [4731] = 4704, - [4732] = 4707, - [4733] = 4707, - [4734] = 4705, - [4735] = 4707, - [4736] = 4705, - [4737] = 4705, - [4738] = 4712, - [4739] = 4704, - [4740] = 4707, - [4741] = 4707, - [4742] = 4705, - [4743] = 4707, - [4744] = 4707, - [4745] = 4705, - [4746] = 4704, - [4747] = 4707, - [4748] = 4705, - [4749] = 4707, - [4750] = 4704, - [4751] = 4707, - [4752] = 4705, - [4753] = 4705, - [4754] = 4704, - [4755] = 4705, - [4756] = 4707, - [4757] = 4707, - [4758] = 4705, - [4759] = 4705, - [4760] = 4705, - [4761] = 4707, - [4762] = 4704, - [4763] = 4704, - [4764] = 4704, - [4765] = 4704, - [4766] = 4707, - [4767] = 4707, - [4768] = 4707, - [4769] = 4705, - [4770] = 4705, - [4771] = 4704, - [4772] = 4705, - [4773] = 4707, - [4774] = 4712, - [4775] = 4705, - [4776] = 4705, - [4777] = 4704, - [4778] = 4707, - [4779] = 4707, - [4780] = 4707, - [4781] = 4707, - [4782] = 4704, - [4783] = 4705, - [4784] = 4704, - [4785] = 4705, - [4786] = 4707, - [4787] = 4705, - [4788] = 4705, - [4789] = 4704, - [4790] = 4704, - [4791] = 4707, - [4792] = 4705, - [4793] = 4707, - [4794] = 4704, - [4795] = 4705, - [4796] = 4704, - [4797] = 4707, - [4798] = 4707, - [4799] = 4707, - [4800] = 4704, - [4801] = 4707, - [4802] = 4712, - [4803] = 4705, - [4804] = 4704, - [4805] = 4707, - [4806] = 4705, - [4807] = 4705, - [4808] = 4705, - [4809] = 4705, - [4810] = 4704, - [4811] = 4707, - [4812] = 4707, - [4813] = 4705, - [4814] = 4705, - [4815] = 4707, - [4816] = 4707, - [4817] = 4704, - [4818] = 4704, - [4819] = 4704, - [4820] = 4707, - [4821] = 4705, - [4822] = 4707, - [4823] = 4705, - [4824] = 4705, - [4825] = 4704, - [4826] = 4704, - [4827] = 4705, - [4828] = 4704, - [4829] = 4705, - [4830] = 4707, - [4831] = 4705, - [4832] = 4704, - [4833] = 4707, - [4834] = 4704, - [4835] = 4704, - [4836] = 4707, - [4837] = 4707, - [4838] = 4705, - [4839] = 4707, - [4840] = 4704, - [4841] = 4705, - [4842] = 4712, - [4843] = 4704, - [4844] = 4707, - [4845] = 4705, - [4846] = 4705, - [4847] = 4705, - [4848] = 4707, - [4849] = 4704, - [4850] = 4707, - [4851] = 4704, - [4852] = 4704, - [4853] = 4704, - [4854] = 4707, - [4855] = 4707, - [4856] = 4707, - [4857] = 4705, - [4858] = 4705, - [4859] = 4712, - [4860] = 4705, - [4861] = 4705, - [4862] = 4704, - [4863] = 4705, - [4864] = 4705, - [4865] = 4704, - [4866] = 4704, - [4867] = 4707, - [4868] = 4712, - [4869] = 4704, - [4870] = 4704, - [4871] = 4707, - [4872] = 4707, - [4873] = 4707, - [4874] = 4707, - [4875] = 4705, - [4876] = 4704, - [4877] = 4705, - [4878] = 4712, - [4879] = 4879, - [4880] = 4879, - [4881] = 4879, - [4882] = 4879, + [4713] = 4624, + [4714] = 4624, + [4715] = 4624, + [4716] = 4339, + [4717] = 4342, + [4718] = 4624, + [4719] = 4387, + [4720] = 4624, + [4721] = 4721, + [4722] = 4342, + [4723] = 4387, + [4724] = 4339, + [4725] = 4278, + [4726] = 495, + [4727] = 4727, + [4728] = 4624, + [4729] = 4624, + [4730] = 4624, + [4731] = 4624, + [4732] = 4624, + [4733] = 4252, + [4734] = 4278, + [4735] = 479, + [4736] = 1607, + [4737] = 4624, + [4738] = 4624, + [4739] = 490, + [4740] = 4624, + [4741] = 4741, + [4742] = 4742, + [4743] = 4743, + [4744] = 4624, + [4745] = 4342, + [4746] = 4283, + [4747] = 4273, + [4748] = 859, + [4749] = 4624, + [4750] = 880, + [4751] = 4624, + [4752] = 4624, + [4753] = 481, + [4754] = 885, + [4755] = 4755, + [4756] = 4624, + [4757] = 4757, + [4758] = 4346, + [4759] = 1498, + [4760] = 832, + [4761] = 4624, + [4762] = 486, + [4763] = 4624, + [4764] = 4624, + [4765] = 4624, + [4766] = 486, + [4767] = 1382, + [4768] = 4624, + [4769] = 4755, + [4770] = 487, + [4771] = 885, + [4772] = 495, + [4773] = 4624, + [4774] = 469, + [4775] = 1011, + [4776] = 470, + [4777] = 473, + [4778] = 4341, + [4779] = 4624, + [4780] = 479, + [4781] = 470, + [4782] = 1534, + [4783] = 473, + [4784] = 4230, + [4785] = 4785, + [4786] = 4727, + [4787] = 4237, + [4788] = 495, + [4789] = 1607, + [4790] = 485, + [4791] = 4624, + [4792] = 4792, + [4793] = 4341, + [4794] = 4616, + [4795] = 4231, + [4796] = 474, + [4797] = 4349, + [4798] = 4624, + [4799] = 4624, + [4800] = 4624, + [4801] = 474, + [4802] = 1148, + [4803] = 4803, + [4804] = 1542, + [4805] = 483, + [4806] = 832, + [4807] = 488, + [4808] = 489, + [4809] = 4624, + [4810] = 482, + [4811] = 483, + [4812] = 492, + [4813] = 4624, + [4814] = 4624, + [4815] = 4624, + [4816] = 4252, + [4817] = 4624, + [4818] = 4623, + [4819] = 4624, + [4820] = 1534, + [4821] = 4655, + [4822] = 859, + [4823] = 4624, + [4824] = 4824, + [4825] = 490, + [4826] = 4624, + [4827] = 1281, + [4828] = 1100, + [4829] = 4346, + [4830] = 4624, + [4831] = 482, + [4832] = 4624, + [4833] = 485, + [4834] = 1100, + [4835] = 4231, + [4836] = 4624, + [4837] = 480, + [4838] = 1081, + [4839] = 4624, + [4840] = 1556, + [4841] = 4624, + [4842] = 487, + [4843] = 4624, + [4844] = 4615, + [4845] = 4624, + [4846] = 495, + [4847] = 481, + [4848] = 4624, + [4849] = 491, + [4850] = 4624, + [4851] = 4624, + [4852] = 477, + [4853] = 478, + [4854] = 4624, + [4855] = 494, + [4856] = 4712, + [4857] = 4624, + [4858] = 4785, + [4859] = 489, + [4860] = 4349, + [4861] = 1281, + [4862] = 484, + [4863] = 4624, + [4864] = 4712, + [4865] = 4648, + [4866] = 4866, + [4867] = 4867, + [4868] = 4868, + [4869] = 1301, + [4870] = 1542, + [4871] = 4871, + [4872] = 4872, + [4873] = 4873, + [4874] = 4874, + [4875] = 4712, + [4876] = 4876, + [4877] = 4877, + [4878] = 4878, + [4879] = 1534, + [4880] = 4880, + [4881] = 4881, + [4882] = 4882, [4883] = 4883, - [4884] = 4879, - [4885] = 4879, - [4886] = 4879, - [4887] = 4879, - [4888] = 4879, - [4889] = 4889, + [4884] = 4884, + [4885] = 1301, + [4886] = 4886, + [4887] = 4887, + [4888] = 1301, + [4889] = 4877, [4890] = 4890, - [4891] = 4890, - [4892] = 4890, - [4893] = 376, - [4894] = 4889, - [4895] = 4889, - [4896] = 4890, - [4897] = 4890, + [4891] = 4891, + [4892] = 4892, + [4893] = 1281, + [4894] = 4873, + [4895] = 4895, + [4896] = 880, + [4897] = 885, [4898] = 4898, - [4899] = 4890, - [4900] = 378, - [4901] = 4901, - [4902] = 4889, - [4903] = 4890, - [4904] = 384, - [4905] = 375, - [4906] = 4889, - [4907] = 381, - [4908] = 379, - [4909] = 388, - [4910] = 4910, + [4899] = 4871, + [4900] = 4900, + [4901] = 1081, + [4902] = 4655, + [4903] = 4884, + [4904] = 4824, + [4905] = 4615, + [4906] = 4231, + [4907] = 1607, + [4908] = 4908, + [4909] = 4883, + [4910] = 4620, [4911] = 4911, - [4912] = 383, - [4913] = 4889, - [4914] = 4889, - [4915] = 4890, - [4916] = 372, - [4917] = 4917, + [4912] = 4866, + [4913] = 495, + [4914] = 1607, + [4915] = 4915, + [4916] = 4916, + [4917] = 4755, [4918] = 4918, - [4919] = 4890, - [4920] = 4889, - [4921] = 4921, - [4922] = 4921, - [4923] = 982, - [4924] = 4921, - [4925] = 4921, - [4926] = 4926, + [4919] = 859, + [4920] = 4920, + [4921] = 1100, + [4922] = 4922, + [4923] = 4900, + [4924] = 4924, + [4925] = 1498, + [4926] = 4920, [4927] = 4927, - [4928] = 4921, - [4929] = 4921, - [4930] = 4921, + [4928] = 4928, + [4929] = 4929, + [4930] = 1281, [4931] = 4931, - [4932] = 4921, - [4933] = 4921, - [4934] = 4921, - [4935] = 370, + [4932] = 4915, + [4933] = 4892, + [4934] = 4924, + [4935] = 4929, [4936] = 4936, [4937] = 4937, [4938] = 4938, - [4939] = 4937, + [4939] = 4792, [4940] = 4940, - [4941] = 4937, - [4942] = 4942, + [4941] = 4252, + [4942] = 4616, [4943] = 4943, - [4944] = 4943, - [4945] = 4943, - [4946] = 4940, - [4947] = 4940, - [4948] = 4938, - [4949] = 4942, - [4950] = 369, + [4944] = 4944, + [4945] = 4945, + [4946] = 4632, + [4947] = 4947, + [4948] = 4936, + [4949] = 4949, + [4950] = 4610, [4951] = 4951, [4952] = 4952, - [4953] = 4943, - [4954] = 367, - [4955] = 4940, - [4956] = 4938, - [4957] = 4937, - [4958] = 4937, - [4959] = 4943, - [4960] = 4940, - [4961] = 4940, - [4962] = 4942, - [4963] = 4937, - [4964] = 4940, - [4965] = 4937, - [4966] = 4943, - [4967] = 4940, - [4968] = 368, - [4969] = 4937, - [4970] = 4943, - [4971] = 4943, - [4972] = 4972, - [4973] = 383, - [4974] = 385, - [4975] = 4975, - [4976] = 378, - [4977] = 4977, - [4978] = 372, - [4979] = 389, - [4980] = 379, - [4981] = 4981, - [4982] = 377, - [4983] = 373, - [4984] = 4984, - [4985] = 4985, - [4986] = 381, - [4987] = 376, - [4988] = 384, - [4989] = 391, - [4990] = 373, - [4991] = 378, - [4992] = 381, - [4993] = 381, - [4994] = 375, - [4995] = 375, - [4996] = 379, - [4997] = 382, - [4998] = 386, - [4999] = 4981, - [5000] = 390, - [5001] = 5001, - [5002] = 376, - [5003] = 383, - [5004] = 4981, - [5005] = 375, - [5006] = 387, - [5007] = 384, - [5008] = 388, - [5009] = 374, - [5010] = 380, - [5011] = 374, - [5012] = 5012, - [5013] = 5013, - [5014] = 5014, - [5015] = 5015, - [5016] = 5016, - [5017] = 5017, - [5018] = 5018, - [5019] = 5019, - [5020] = 5020, - [5021] = 5021, - [5022] = 5022, - [5023] = 5023, - [5024] = 5024, - [5025] = 5025, - [5026] = 5026, + [4953] = 4615, + [4954] = 4607, + [4955] = 4607, + [4956] = 4886, + [4957] = 4887, + [4958] = 4609, + [4959] = 4609, + [4960] = 4960, + [4961] = 4922, + [4962] = 4727, + [4963] = 4895, + [4964] = 1534, + [4965] = 4642, + [4966] = 4898, + [4967] = 4891, + [4968] = 4890, + [4969] = 4960, + [4970] = 4881, + [4971] = 4664, + [4972] = 4918, + [4973] = 4872, + [4974] = 4924, + [4975] = 1474, + [4976] = 4615, + [4977] = 4952, + [4978] = 4642, + [4979] = 4908, + [4980] = 4876, + [4981] = 4874, + [4982] = 4785, + [4983] = 4867, + [4984] = 4648, + [4985] = 4868, + [4986] = 4283, + [4987] = 4878, + [4988] = 4880, + [4989] = 4882, + [4990] = 1556, + [4991] = 4911, + [4992] = 832, + [4993] = 4951, + [4994] = 4727, + [4995] = 4387, + [4996] = 4342, + [4997] = 4339, + [4998] = 4278, + [4999] = 4918, + [5000] = 4273, + [5001] = 4346, + [5002] = 4944, + [5003] = 4931, + [5004] = 1607, + [5005] = 4916, + [5006] = 4938, + [5007] = 4951, + [5008] = 4712, + [5009] = 4927, + [5010] = 4785, + [5011] = 4947, + [5012] = 4727, + [5013] = 4940, + [5014] = 4943, + [5015] = 4891, + [5016] = 4785, + [5017] = 4949, + [5018] = 4607, + [5019] = 4609, + [5020] = 4642, + [5021] = 494, + [5022] = 4937, + [5023] = 1534, + [5024] = 4623, + [5025] = 4648, + [5026] = 4945, [5027] = 5027, - [5028] = 5024, - [5029] = 5029, - [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 5034, - [5035] = 5030, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 5039, - [5040] = 5040, - [5041] = 5024, - [5042] = 397, - [5043] = 5043, - [5044] = 370, - [5045] = 5045, - [5046] = 5030, - [5047] = 5047, + [5028] = 5028, + [5029] = 1281, + [5030] = 5028, + [5031] = 470, + [5032] = 5027, + [5033] = 473, + [5034] = 469, + [5035] = 4882, + [5036] = 4824, + [5037] = 4884, + [5038] = 468, + [5039] = 4883, + [5040] = 4792, + [5041] = 1163, + [5042] = 4615, + [5043] = 4877, + [5044] = 495, + [5045] = 1158, + [5046] = 4945, + [5047] = 4880, [5048] = 5048, - [5049] = 2131, - [5050] = 5050, - [5051] = 5051, - [5052] = 2129, - [5053] = 5053, - [5054] = 2146, - [5055] = 5055, - [5056] = 5056, - [5057] = 5057, - [5058] = 2147, - [5059] = 5059, - [5060] = 5059, - [5061] = 5061, - [5062] = 5059, - [5063] = 5057, - [5064] = 5064, - [5065] = 5065, - [5066] = 5066, - [5067] = 5067, - [5068] = 5057, - [5069] = 5069, - [5070] = 5070, - [5071] = 5071, - [5072] = 5072, - [5073] = 5070, - [5074] = 5064, - [5075] = 5065, - [5076] = 5066, - [5077] = 5072, - [5078] = 5078, - [5079] = 5079, - [5080] = 5080, - [5081] = 5048, - [5082] = 5070, - [5083] = 5048, - [5084] = 5078, - [5085] = 5080, - [5086] = 5069, - [5087] = 5079, - [5088] = 5064, - [5089] = 5089, - [5090] = 5065, - [5091] = 5091, - [5092] = 5056, - [5093] = 5066, - [5094] = 5094, - [5095] = 5095, - [5096] = 5079, - [5097] = 5078, - [5098] = 5098, - [5099] = 5099, - [5100] = 5072, - [5101] = 376, - [5102] = 384, - [5103] = 383, - [5104] = 5066, - [5105] = 5065, - [5106] = 367, - [5107] = 5107, - [5108] = 5108, - [5109] = 5109, - [5110] = 5080, - [5111] = 368, - [5112] = 5048, - [5113] = 369, - [5114] = 5114, - [5115] = 5115, - [5116] = 5116, - [5117] = 5064, - [5118] = 5069, - [5119] = 5119, - [5120] = 5057, - [5121] = 5059, - [5122] = 5070, - [5123] = 5123, - [5124] = 5067, + [5049] = 4712, + [5050] = 4727, + [5051] = 4792, + [5052] = 4947, + [5053] = 4642, + [5054] = 4620, + [5055] = 473, + [5056] = 4224, + [5057] = 470, + [5058] = 4227, + [5059] = 473, + [5060] = 4878, + [5061] = 4916, + [5062] = 5062, + [5063] = 4927, + [5064] = 469, + [5065] = 470, + [5066] = 4915, + [5067] = 4867, + [5068] = 4908, + [5069] = 4866, + [5070] = 4620, + [5071] = 4943, + [5072] = 4872, + [5073] = 4873, + [5074] = 4785, + [5075] = 4871, + [5076] = 4876, + [5077] = 4881, + [5078] = 4874, + [5079] = 4620, + [5080] = 4890, + [5081] = 4664, + [5082] = 4664, + [5083] = 4922, + [5084] = 4868, + [5085] = 4931, + [5086] = 1301, + [5087] = 4900, + [5088] = 4938, + [5089] = 4940, + [5090] = 4895, + [5091] = 4607, + [5092] = 4609, + [5093] = 4960, + [5094] = 4648, + [5095] = 4824, + [5096] = 1534, + [5097] = 469, + [5098] = 4920, + [5099] = 4929, + [5100] = 4936, + [5101] = 4892, + [5102] = 4824, + [5103] = 4937, + [5104] = 4898, + [5105] = 4944, + [5106] = 1281, + [5107] = 5027, + [5108] = 4792, + [5109] = 469, + [5110] = 469, + [5111] = 4952, + [5112] = 4887, + [5113] = 4949, + [5114] = 1607, + [5115] = 4664, + [5116] = 4911, + [5117] = 5117, + [5118] = 5118, + [5119] = 5028, + [5120] = 4886, + [5121] = 5121, + [5122] = 5122, + [5123] = 474, + [5124] = 859, [5125] = 5125, [5126] = 5126, - [5127] = 5071, - [5128] = 5128, - [5129] = 5129, - [5130] = 5130, - [5131] = 5131, + [5127] = 885, + [5128] = 880, + [5129] = 885, + [5130] = 832, + [5131] = 859, [5132] = 5132, - [5133] = 5133, - [5134] = 5080, - [5135] = 5079, - [5136] = 5136, - [5137] = 5137, - [5138] = 5056, - [5139] = 5067, - [5140] = 5069, - [5141] = 5072, - [5142] = 5071, - [5143] = 5078, - [5144] = 383, - [5145] = 383, - [5146] = 384, - [5147] = 389, - [5148] = 376, - [5149] = 384, - [5150] = 5150, - [5151] = 5151, - [5152] = 376, - [5153] = 381, - [5154] = 391, - [5155] = 378, - [5156] = 385, - [5157] = 5157, - [5158] = 379, - [5159] = 375, - [5160] = 380, - [5161] = 5161, - [5162] = 376, - [5163] = 5163, + [5133] = 1081, + [5134] = 4231, + [5135] = 1100, + [5136] = 4252, + [5137] = 1148, + [5138] = 1011, + [5139] = 5139, + [5140] = 880, + [5141] = 5141, + [5142] = 5142, + [5143] = 5143, + [5144] = 5144, + [5145] = 5145, + [5146] = 5146, + [5147] = 4230, + [5148] = 4237, + [5149] = 480, + [5150] = 481, + [5151] = 484, + [5152] = 487, + [5153] = 490, + [5154] = 492, + [5155] = 485, + [5156] = 486, + [5157] = 479, + [5158] = 488, + [5159] = 478, + [5160] = 477, + [5161] = 491, + [5162] = 5162, + [5163] = 5122, [5164] = 5164, - [5165] = 384, - [5166] = 383, - [5167] = 5167, - [5168] = 5168, + [5165] = 476, + [5166] = 5166, + [5167] = 4250, + [5168] = 5142, [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 382, - [5173] = 5173, - [5174] = 387, - [5175] = 386, - [5176] = 5176, + [5170] = 4252, + [5171] = 475, + [5172] = 5172, + [5173] = 832, + [5174] = 469, + [5175] = 470, + [5176] = 4250, [5177] = 5177, - [5178] = 377, - [5179] = 388, - [5180] = 372, - [5181] = 2272, - [5182] = 5182, + [5178] = 1081, + [5179] = 4231, + [5180] = 473, + [5181] = 4235, + [5182] = 1100, [5183] = 5183, - [5184] = 1345, - [5185] = 391, - [5186] = 381, - [5187] = 5170, - [5188] = 390, - [5189] = 373, - [5190] = 380, + [5184] = 4224, + [5185] = 5185, + [5186] = 5186, + [5187] = 5187, + [5188] = 468, + [5189] = 5122, + [5190] = 5190, [5191] = 5191, - [5192] = 374, + [5192] = 5192, [5193] = 5193, - [5194] = 1348, - [5195] = 5195, + [5194] = 5194, + [5195] = 4227, [5196] = 5196, [5197] = 5197, - [5198] = 385, - [5199] = 2278, - [5200] = 5200, - [5201] = 5170, - [5202] = 389, - [5203] = 2274, - [5204] = 379, - [5205] = 5205, - [5206] = 378, - [5207] = 375, - [5208] = 2273, - [5209] = 5209, - [5210] = 5210, + [5198] = 5198, + [5199] = 482, + [5200] = 483, + [5201] = 5201, + [5202] = 5202, + [5203] = 5203, + [5204] = 489, + [5205] = 4235, + [5206] = 469, + [5207] = 470, + [5208] = 473, + [5209] = 470, + [5210] = 473, [5211] = 5211, [5212] = 5212, - [5213] = 5210, - [5214] = 5214, + [5213] = 4227, + [5214] = 5186, [5215] = 5215, - [5216] = 5216, - [5217] = 5210, - [5218] = 5210, - [5219] = 5219, - [5220] = 5220, - [5221] = 5221, - [5222] = 5222, - [5223] = 5210, - [5224] = 5224, - [5225] = 5225, - [5226] = 5226, - [5227] = 5215, - [5228] = 372, - [5229] = 5229, - [5230] = 5226, - [5231] = 5215, - [5232] = 5210, - [5233] = 388, - [5234] = 5229, - [5235] = 5210, - [5236] = 5236, - [5237] = 5210, - [5238] = 389, - [5239] = 5210, - [5240] = 5236, - [5241] = 5215, - [5242] = 5210, - [5243] = 5215, - [5244] = 2129, - [5245] = 5210, - [5246] = 5210, - [5247] = 5236, - [5248] = 5215, - [5249] = 2131, - [5250] = 385, - [5251] = 5210, + [5216] = 4664, + [5217] = 5185, + [5218] = 5187, + [5219] = 5190, + [5220] = 5191, + [5221] = 469, + [5222] = 5192, + [5223] = 5194, + [5224] = 4824, + [5225] = 5196, + [5226] = 5142, + [5227] = 5227, + [5228] = 5197, + [5229] = 5198, + [5230] = 5202, + [5231] = 5203, + [5232] = 5232, + [5233] = 5187, + [5234] = 5203, + [5235] = 5202, + [5236] = 5198, + [5237] = 5197, + [5238] = 5196, + [5239] = 5194, + [5240] = 469, + [5241] = 5192, + [5242] = 5191, + [5243] = 5190, + [5244] = 5186, + [5245] = 5245, + [5246] = 5185, + [5247] = 5247, + [5248] = 5248, + [5249] = 5249, + [5250] = 5250, + [5251] = 5251, [5252] = 5252, - [5253] = 5253, - [5254] = 2094, - [5255] = 5053, - [5256] = 5256, + [5253] = 1148, + [5254] = 5254, + [5255] = 486, + [5256] = 1011, [5257] = 5257, - [5258] = 5215, + [5258] = 1149, [5259] = 5259, [5260] = 5260, - [5261] = 5215, - [5262] = 5210, - [5263] = 383, - [5264] = 5210, + [5261] = 5261, + [5262] = 478, + [5263] = 491, + [5264] = 5264, [5265] = 5265, [5266] = 5266, - [5267] = 5210, - [5268] = 5215, - [5269] = 5210, - [5270] = 5270, - [5271] = 5215, + [5267] = 469, + [5268] = 5268, + [5269] = 488, + [5270] = 470, + [5271] = 473, [5272] = 5272, - [5273] = 5226, - [5274] = 5210, + [5273] = 5273, + [5274] = 494, [5275] = 5275, - [5276] = 5276, + [5276] = 468, [5277] = 5277, - [5278] = 5278, - [5279] = 397, - [5280] = 380, + [5278] = 880, + [5279] = 492, + [5280] = 5280, [5281] = 5281, [5282] = 5282, - [5283] = 381, - [5284] = 5284, + [5283] = 5283, + [5284] = 477, [5285] = 5285, - [5286] = 5286, - [5287] = 5210, - [5288] = 5210, - [5289] = 5289, - [5290] = 5215, - [5291] = 5215, - [5292] = 5292, - [5293] = 5293, - [5294] = 5226, - [5295] = 5210, - [5296] = 5210, - [5297] = 5210, - [5298] = 5298, - [5299] = 5210, - [5300] = 397, - [5301] = 5210, - [5302] = 5210, - [5303] = 5210, - [5304] = 5215, - [5305] = 383, - [5306] = 5210, - [5307] = 5053, - [5308] = 5210, - [5309] = 384, - [5310] = 376, - [5311] = 5210, - [5312] = 5210, - [5313] = 5210, - [5314] = 5226, - [5315] = 5315, + [5286] = 880, + [5287] = 885, + [5288] = 490, + [5289] = 5266, + [5290] = 885, + [5291] = 5291, + [5292] = 1146, + [5293] = 1081, + [5294] = 487, + [5295] = 5295, + [5296] = 5296, + [5297] = 470, + [5298] = 481, + [5299] = 5299, + [5300] = 832, + [5301] = 885, + [5302] = 5302, + [5303] = 880, + [5304] = 5304, + [5305] = 4231, + [5306] = 832, + [5307] = 5307, + [5308] = 5308, + [5309] = 5309, + [5310] = 5310, + [5311] = 5311, + [5312] = 859, + [5313] = 5313, + [5314] = 5314, + [5315] = 5266, [5316] = 5316, - [5317] = 5317, - [5318] = 5229, - [5319] = 5215, - [5320] = 2146, - [5321] = 5210, - [5322] = 5210, - [5323] = 5226, - [5324] = 2147, - [5325] = 5210, + [5317] = 5266, + [5318] = 4252, + [5319] = 5319, + [5320] = 5320, + [5321] = 5321, + [5322] = 470, + [5323] = 859, + [5324] = 5324, + [5325] = 5325, [5326] = 5326, - [5327] = 5327, - [5328] = 5210, + [5327] = 480, + [5328] = 473, [5329] = 5329, [5330] = 5330, - [5331] = 5215, + [5331] = 1081, [5332] = 5332, [5333] = 5333, - [5334] = 5210, + [5334] = 5334, [5335] = 5335, [5336] = 5336, - [5337] = 5210, - [5338] = 380, - [5339] = 5215, - [5340] = 5210, - [5341] = 384, - [5342] = 5210, - [5343] = 5210, - [5344] = 5215, - [5345] = 375, - [5346] = 5215, - [5347] = 5215, - [5348] = 5210, - [5349] = 385, - [5350] = 5210, - [5351] = 389, - [5352] = 5215, - [5353] = 376, - [5354] = 5226, + [5337] = 479, + [5338] = 5338, + [5339] = 5339, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, + [5343] = 5343, + [5344] = 5344, + [5345] = 5345, + [5346] = 5346, + [5347] = 832, + [5348] = 859, + [5349] = 468, + [5350] = 4283, + [5351] = 5351, + [5352] = 1081, + [5353] = 5353, + [5354] = 5354, [5355] = 5355, - [5356] = 5210, - [5357] = 5357, - [5358] = 5358, - [5359] = 5226, - [5360] = 5360, - [5361] = 5215, - [5362] = 5215, - [5363] = 5363, - [5364] = 5210, - [5365] = 5215, - [5366] = 5210, - [5367] = 5367, - [5368] = 5210, - [5369] = 5369, - [5370] = 5370, - [5371] = 5371, - [5372] = 5210, - [5373] = 5373, - [5374] = 5373, - [5375] = 5373, - [5376] = 5373, - [5377] = 5377, - [5378] = 5378, - [5379] = 5373, - [5380] = 5191, - [5381] = 5373, - [5382] = 5382, + [5356] = 5266, + [5357] = 1382, + [5358] = 5266, + [5359] = 4231, + [5360] = 4237, + [5361] = 5266, + [5362] = 4250, + [5363] = 4235, + [5364] = 489, + [5365] = 1474, + [5366] = 4283, + [5367] = 4387, + [5368] = 4342, + [5369] = 4339, + [5370] = 4278, + [5371] = 4252, + [5372] = 4273, + [5373] = 4252, + [5374] = 468, + [5375] = 4346, + [5376] = 1429, + [5377] = 4231, + [5378] = 1100, + [5379] = 1100, + [5380] = 483, + [5381] = 5381, + [5382] = 4278, [5383] = 5383, - [5384] = 5383, - [5385] = 5383, - [5386] = 5373, - [5387] = 5373, - [5388] = 5373, - [5389] = 5383, - [5390] = 5390, - [5391] = 5373, - [5392] = 5373, - [5393] = 5383, - [5394] = 5394, - [5395] = 5373, + [5384] = 5384, + [5385] = 4230, + [5386] = 5386, + [5387] = 482, + [5388] = 494, + [5389] = 475, + [5390] = 473, + [5391] = 5391, + [5392] = 473, + [5393] = 470, + [5394] = 5266, + [5395] = 5395, [5396] = 5396, - [5397] = 5195, - [5398] = 5373, - [5399] = 5373, - [5400] = 5373, - [5401] = 5383, - [5402] = 5373, - [5403] = 5383, - [5404] = 5373, - [5405] = 5373, - [5406] = 5373, - [5407] = 5373, - [5408] = 5373, - [5409] = 5409, - [5410] = 5383, - [5411] = 5390, - [5412] = 5373, - [5413] = 5373, - [5414] = 5373, - [5415] = 5373, - [5416] = 5416, - [5417] = 5417, - [5418] = 5383, - [5419] = 5373, - [5420] = 5373, - [5421] = 380, - [5422] = 5373, - [5423] = 390, - [5424] = 5373, - [5425] = 377, - [5426] = 5373, - [5427] = 5373, - [5428] = 385, - [5429] = 389, - [5430] = 5383, - [5431] = 5383, - [5432] = 5383, - [5433] = 5373, - [5434] = 5383, - [5435] = 5435, - [5436] = 5373, - [5437] = 5437, - [5438] = 5383, - [5439] = 5377, - [5440] = 5440, - [5441] = 5373, - [5442] = 5383, - [5443] = 5177, - [5444] = 5373, - [5445] = 5445, - [5446] = 5177, - [5447] = 5191, - [5448] = 5383, - [5449] = 2273, - [5450] = 5373, - [5451] = 5195, - [5452] = 5373, - [5453] = 2272, - [5454] = 2182, - [5455] = 5383, - [5456] = 2278, - [5457] = 5373, + [5397] = 5397, + [5398] = 1100, + [5399] = 484, + [5400] = 474, + [5401] = 5401, + [5402] = 485, + [5403] = 476, + [5404] = 485, + [5405] = 4346, + [5406] = 5406, + [5407] = 473, + [5408] = 1361, + [5409] = 489, + [5410] = 495, + [5411] = 468, + [5412] = 832, + [5413] = 483, + [5414] = 474, + [5415] = 880, + [5416] = 495, + [5417] = 4231, + [5418] = 1081, + [5419] = 4339, + [5420] = 859, + [5421] = 4342, + [5422] = 480, + [5423] = 4387, + [5424] = 1429, + [5425] = 5425, + [5426] = 494, + [5427] = 1100, + [5428] = 482, + [5429] = 5429, + [5430] = 487, + [5431] = 475, + [5432] = 491, + [5433] = 477, + [5434] = 478, + [5435] = 484, + [5436] = 4283, + [5437] = 1429, + [5438] = 483, + [5439] = 490, + [5440] = 482, + [5441] = 474, + [5442] = 492, + [5443] = 488, + [5444] = 489, + [5445] = 479, + [5446] = 476, + [5447] = 1146, + [5448] = 485, + [5449] = 486, + [5450] = 476, + [5451] = 475, + [5452] = 481, + [5453] = 475, + [5454] = 491, + [5455] = 477, + [5456] = 5456, + [5457] = 476, [5458] = 5458, - [5459] = 5373, - [5460] = 5373, - [5461] = 5383, - [5462] = 5373, - [5463] = 5373, - [5464] = 5390, - [5465] = 5383, - [5466] = 2274, - [5467] = 5373, - [5468] = 5468, - [5469] = 5383, - [5470] = 5383, - [5471] = 5471, - [5472] = 2206, - [5473] = 5373, - [5474] = 5373, - [5475] = 5373, - [5476] = 5373, - [5477] = 5383, - [5478] = 5373, - [5479] = 5479, - [5480] = 5373, - [5481] = 5377, - [5482] = 382, - [5483] = 5373, - [5484] = 5445, - [5485] = 5383, - [5486] = 5445, - [5487] = 5373, - [5488] = 5373, - [5489] = 5373, - [5490] = 5490, - [5491] = 5491, - [5492] = 5492, - [5493] = 5493, - [5494] = 5494, - [5495] = 5495, - [5496] = 5495, - [5497] = 5497, - [5498] = 5495, - [5499] = 5494, - [5500] = 5500, - [5501] = 5490, - [5502] = 5495, - [5503] = 5495, - [5504] = 5495, - [5505] = 5497, - [5506] = 5506, - [5507] = 5507, - [5508] = 5492, - [5509] = 5509, - [5510] = 5500, - [5511] = 5490, - [5512] = 5512, - [5513] = 5495, - [5514] = 5495, - [5515] = 5494, - [5516] = 5497, - [5517] = 5517, - [5518] = 5507, - [5519] = 5507, - [5520] = 5490, - [5521] = 5500, - [5522] = 5495, - [5523] = 5492, - [5524] = 5507, - [5525] = 5507, - [5526] = 5500, - [5527] = 5492, - [5528] = 5507, - [5529] = 5512, - [5530] = 5493, - [5531] = 5495, - [5532] = 5494, - [5533] = 5494, - [5534] = 5492, - [5535] = 5495, - [5536] = 5490, - [5537] = 5500, - [5538] = 5490, - [5539] = 5497, - [5540] = 5495, - [5541] = 5497, - [5542] = 5497, - [5543] = 5490, - [5544] = 5544, - [5545] = 5490, - [5546] = 5546, - [5547] = 5547, - [5548] = 5500, - [5549] = 5495, + [5459] = 478, + [5460] = 5460, + [5461] = 482, + [5462] = 1149, + [5463] = 480, + [5464] = 490, + [5465] = 4278, + [5466] = 1146, + [5467] = 474, + [5468] = 481, + [5469] = 494, + [5470] = 484, + [5471] = 470, + [5472] = 481, + [5473] = 479, + [5474] = 885, + [5475] = 4273, + [5476] = 4252, + [5477] = 488, + [5478] = 486, + [5479] = 494, + [5480] = 483, + [5481] = 485, + [5482] = 487, + [5483] = 492, + [5484] = 478, + [5485] = 488, + [5486] = 492, + [5487] = 489, + [5488] = 486, + [5489] = 484, + [5490] = 487, + [5491] = 479, + [5492] = 480, + [5493] = 491, + [5494] = 1382, + [5495] = 477, + [5496] = 1382, + [5497] = 490, + [5498] = 1149, + [5499] = 4824, + [5500] = 1146, + [5501] = 492, + [5502] = 488, + [5503] = 465, + [5504] = 5504, + [5505] = 5505, + [5506] = 495, + [5507] = 481, + [5508] = 474, + [5509] = 480, + [5510] = 487, + [5511] = 479, + [5512] = 495, + [5513] = 490, + [5514] = 464, + [5515] = 5504, + [5516] = 5505, + [5517] = 5504, + [5518] = 469, + [5519] = 1429, + [5520] = 494, + [5521] = 484, + [5522] = 478, + [5523] = 486, + [5524] = 477, + [5525] = 485, + [5526] = 1301, + [5527] = 491, + [5528] = 4664, + [5529] = 495, + [5530] = 1534, + [5531] = 5505, + [5532] = 1382, + [5533] = 5533, + [5534] = 476, + [5535] = 5535, + [5536] = 475, + [5537] = 489, + [5538] = 5504, + [5539] = 1607, + [5540] = 5505, + [5541] = 482, + [5542] = 483, + [5543] = 1281, + [5544] = 1149, + [5545] = 5505, + [5546] = 5504, + [5547] = 4615, + [5548] = 859, + [5549] = 1301, [5550] = 5550, - [5551] = 5551, - [5552] = 5552, - [5553] = 5553, - [5554] = 5492, - [5555] = 5507, - [5556] = 5556, - [5557] = 5557, - [5558] = 5495, - [5559] = 5500, - [5560] = 5560, - [5561] = 5561, - [5562] = 5492, - [5563] = 5563, - [5564] = 5564, - [5565] = 5507, - [5566] = 5495, - [5567] = 5495, - [5568] = 5494, - [5569] = 5497, - [5570] = 5497, - [5571] = 5494, - [5572] = 5494, - [5573] = 5573, - [5574] = 5507, - [5575] = 5497, - [5576] = 5495, - [5577] = 5490, - [5578] = 5578, - [5579] = 5500, - [5580] = 5580, - [5581] = 5492, - [5582] = 5507, - [5583] = 5494, - [5584] = 5497, - [5585] = 5495, - [5586] = 5490, - [5587] = 5493, - [5588] = 5492, - [5589] = 5512, - [5590] = 5490, - [5591] = 5494, - [5592] = 5492, - [5593] = 5507, - [5594] = 5495, - [5595] = 5494, - [5596] = 5497, - [5597] = 5490, - [5598] = 5500, - [5599] = 5492, - [5600] = 5500, - [5601] = 5495, - [5602] = 5494, - [5603] = 5507, - [5604] = 5492, - [5605] = 5507, - [5606] = 5500, - [5607] = 5494, - [5608] = 5495, - [5609] = 5494, - [5610] = 5500, - [5611] = 5552, - [5612] = 5490, - [5613] = 5492, - [5614] = 5497, - [5615] = 5495, - [5616] = 5497, - [5617] = 5507, - [5618] = 5492, - [5619] = 5500, - [5620] = 5490, - [5621] = 5500, - [5622] = 5495, - [5623] = 5492, - [5624] = 5492, - [5625] = 5490, - [5626] = 5556, - [5627] = 5507, - [5628] = 5497, - [5629] = 5495, - [5630] = 5494, - [5631] = 5552, - [5632] = 5497, - [5633] = 5556, - [5634] = 5490, - [5635] = 5635, - [5636] = 5495, - [5637] = 5497, - [5638] = 5507, - [5639] = 5500, - [5640] = 5640, - [5641] = 5641, - [5642] = 5494, - [5643] = 5495, - [5644] = 5644, - [5645] = 5557, - [5646] = 5507, - [5647] = 5492, - [5648] = 5507, - [5649] = 5492, - [5650] = 5495, - [5651] = 5651, - [5652] = 5500, - [5653] = 5653, - [5654] = 5654, - [5655] = 5560, - [5656] = 5490, - [5657] = 5495, - [5658] = 5500, - [5659] = 5561, - [5660] = 5497, - [5661] = 5490, - [5662] = 5500, - [5663] = 5663, - [5664] = 5495, - [5665] = 5497, - [5666] = 5492, - [5667] = 5563, - [5668] = 5564, - [5669] = 5507, - [5670] = 5494, - [5671] = 5495, - [5672] = 5494, - [5673] = 5494, - [5674] = 5674, - [5675] = 5675, - [5676] = 5676, - [5677] = 5507, - [5678] = 5495, - [5679] = 5679, - [5680] = 5495, - [5681] = 5497, - [5682] = 5490, - [5683] = 5492, - [5684] = 5497, - [5685] = 5495, - [5686] = 5500, - [5687] = 5492, - [5688] = 5507, - [5689] = 5497, - [5690] = 5690, - [5691] = 5490, - [5692] = 5495, - [5693] = 5500, - [5694] = 5492, - [5695] = 5551, - [5696] = 5507, - [5697] = 5553, - [5698] = 5490, - [5699] = 5495, - [5700] = 5494, - [5701] = 5494, - [5702] = 5573, - [5703] = 5494, - [5704] = 5500, - [5705] = 5490, - [5706] = 5495, - [5707] = 5497, - [5708] = 5557, - [5709] = 5709, - [5710] = 5497, - [5711] = 5490, - [5712] = 5500, - [5713] = 5495, - [5714] = 5578, - [5715] = 5492, - [5716] = 5507, - [5717] = 5580, - [5718] = 5500, - [5719] = 5663, - [5720] = 5495, - [5721] = 5679, - [5722] = 5690, - [5723] = 5494, - [5724] = 5490, - [5725] = 5500, - [5726] = 5560, - [5727] = 5495, - [5728] = 5561, - [5729] = 5492, - [5730] = 5507, - [5731] = 5497, - [5732] = 5578, - [5733] = 5580, - [5734] = 5495, - [5735] = 5490, - [5736] = 5492, - [5737] = 5500, - [5738] = 5490, - [5739] = 5739, - [5740] = 5500, - [5741] = 5495, - [5742] = 5492, - [5743] = 5507, - [5744] = 5497, - [5745] = 5494, - [5746] = 5494, - [5747] = 5494, - [5748] = 5495, - [5749] = 5490, - [5750] = 5750, - [5751] = 5750, - [5752] = 5752, - [5753] = 5500, - [5754] = 5492, - [5755] = 5495, - [5756] = 5507, - [5757] = 5497, - [5758] = 5494, - [5759] = 5500, - [5760] = 5492, - [5761] = 5752, - [5762] = 5495, - [5763] = 5507, - [5764] = 5497, - [5765] = 5490, - [5766] = 5497, - [5767] = 5767, - [5768] = 5767, - [5769] = 5490, - [5770] = 5500, - [5771] = 5492, - [5772] = 5507, - [5773] = 5500, - [5774] = 5494, - [5775] = 5492, - [5776] = 5494, - [5777] = 5497, - [5778] = 5490, - [5779] = 5779, - [5780] = 5556, - [5781] = 5492, - [5782] = 5507, - [5783] = 5507, - [5784] = 5494, - [5785] = 5492, - [5786] = 5500, - [5787] = 5787, - [5788] = 5497, - [5789] = 5494, - [5790] = 5563, - [5791] = 5564, - [5792] = 5792, - [5793] = 5497, - [5794] = 5490, - [5795] = 5552, - [5796] = 5500, - [5797] = 5507, - [5798] = 5573, - [5799] = 5799, - [5800] = 5800, - [5801] = 5801, - [5802] = 5802, - [5803] = 5803, - [5804] = 5804, - [5805] = 5492, - [5806] = 5806, - [5807] = 5807, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 5811, - [5812] = 5507, - [5813] = 5557, - [5814] = 5814, - [5815] = 5815, - [5816] = 5816, - [5817] = 5573, - [5818] = 5818, - [5819] = 5819, - [5820] = 5820, - [5821] = 5821, - [5822] = 5822, - [5823] = 5709, - [5824] = 5824, - [5825] = 5825, - [5826] = 5826, - [5827] = 5495, - [5828] = 5828, - [5829] = 5829, - [5830] = 5830, - [5831] = 5831, - [5832] = 5507, - [5833] = 5833, - [5834] = 5490, - [5835] = 5560, - [5836] = 5836, - [5837] = 5492, - [5838] = 5561, - [5839] = 5500, - [5840] = 5494, - [5841] = 5494, - [5842] = 5842, - [5843] = 5500, - [5844] = 5492, - [5845] = 5845, - [5846] = 5846, - [5847] = 5847, - [5848] = 5490, - [5849] = 5497, - [5850] = 5493, - [5851] = 5563, - [5852] = 5779, - [5853] = 5512, - [5854] = 5564, - [5855] = 5497, - [5856] = 5787, - [5857] = 5497, - [5858] = 5490, - [5859] = 5497, - [5860] = 5490, - [5861] = 5792, - [5862] = 5490, - [5863] = 5500, - [5864] = 5492, - [5865] = 5494, - [5866] = 5507, - [5867] = 5674, - [5868] = 5675, - [5869] = 5497, - [5870] = 5676, - [5871] = 5494, - [5872] = 5495, - [5873] = 5497, - [5874] = 5490, - [5875] = 5875, - [5876] = 5500, - [5877] = 5492, - [5878] = 5497, - [5879] = 5507, - [5880] = 5492, - [5881] = 5500, - [5882] = 5500, - [5883] = 5497, - [5884] = 5709, - [5885] = 5490, - [5886] = 5494, - [5887] = 5493, - [5888] = 5512, - [5889] = 5500, - [5890] = 5492, - [5891] = 5507, - [5892] = 5492, - [5893] = 5500, - [5894] = 5490, - [5895] = 5497, - [5896] = 5490, - [5897] = 5497, - [5898] = 5842, - [5899] = 5492, - [5900] = 5507, - [5901] = 5507, - [5902] = 5490, - [5903] = 5494, - [5904] = 5500, - [5905] = 5905, - [5906] = 5906, - [5907] = 5907, - [5908] = 5500, - [5909] = 5909, - [5910] = 5492, - [5911] = 5494, - [5912] = 5492, - [5913] = 5500, - [5914] = 5497, - [5915] = 5490, - [5916] = 5492, - [5917] = 5917, - [5918] = 5918, - [5919] = 5500, - [5920] = 5920, - [5921] = 5490, - [5922] = 5492, - [5923] = 5923, - [5924] = 5924, - [5925] = 5925, - [5926] = 5926, - [5927] = 5927, - [5928] = 5928, - [5929] = 5929, - [5930] = 5930, - [5931] = 5931, - [5932] = 5932, - [5933] = 5933, - [5934] = 5934, - [5935] = 5500, - [5936] = 5494, - [5937] = 5494, - [5938] = 5490, - [5939] = 5490, - [5940] = 5497, - [5941] = 5497, - [5942] = 5814, - [5943] = 5492, - [5944] = 5507, - [5945] = 5573, - [5946] = 5819, - [5947] = 5492, - [5948] = 5500, - [5949] = 5709, - [5950] = 5824, - [5951] = 5500, - [5952] = 5500, - [5953] = 5490, - [5954] = 5842, - [5955] = 5490, - [5956] = 5497, - [5957] = 5497, - [5958] = 5674, - [5959] = 5675, - [5960] = 5492, - [5961] = 5490, - [5962] = 5497, - [5963] = 5490, - [5964] = 5507, - [5965] = 5507, - [5966] = 5500, - [5967] = 5676, - [5968] = 5492, - [5969] = 5492, - [5970] = 5495, - [5971] = 5507, - [5972] = 5494, - [5973] = 5500, - [5974] = 5507, - [5975] = 5492, - [5976] = 5552, - [5977] = 5490, - [5978] = 5497, - [5979] = 5500, - [5980] = 5909, - [5981] = 5824, - [5982] = 5500, - [5983] = 5490, - [5984] = 5709, - [5985] = 5507, - [5986] = 5492, - [5987] = 5500, - [5988] = 5490, - [5989] = 5497, - [5990] = 5494, - [5991] = 5497, - [5992] = 5492, - [5993] = 5494, - [5994] = 5497, - [5995] = 5500, - [5996] = 5490, - [5997] = 5490, - [5998] = 5497, - [5999] = 5500, - [6000] = 5492, - [6001] = 5507, - [6002] = 5709, - [6003] = 5492, - [6004] = 5551, - [6005] = 5553, - [6006] = 5500, - [6007] = 5490, - [6008] = 5497, - [6009] = 5497, - [6010] = 5490, - [6011] = 5663, - [6012] = 5679, - [6013] = 5690, - [6014] = 5492, - [6015] = 5500, - [6016] = 5500, - [6017] = 5494, - [6018] = 5490, - [6019] = 5497, - [6020] = 5507, - [6021] = 5492, - [6022] = 5573, - [6023] = 5819, - [6024] = 5492, - [6025] = 5709, - [6026] = 5824, - [6027] = 5500, - [6028] = 5507, - [6029] = 5842, - [6030] = 5578, - [6031] = 5909, - [6032] = 5580, - [6033] = 5492, - [6034] = 5490, - [6035] = 5750, - [6036] = 5497, - [6037] = 5752, - [6038] = 5497, - [6039] = 5767, - [6040] = 5490, - [6041] = 5492, - [6042] = 5573, - [6043] = 5819, - [6044] = 5709, - [6045] = 5490, - [6046] = 5819, - [6047] = 5497, - [6048] = 5494, - [6049] = 5492, - [6050] = 5500, - [6051] = 5779, - [6052] = 5500, - [6053] = 5787, - [6054] = 5492, - [6055] = 5792, - [6056] = 5490, - [6057] = 5497, - [6058] = 5497, - [6059] = 5819, - [6060] = 5492, - [6061] = 5819, - [6062] = 5819, - [6063] = 5819, - [6064] = 5819, - [6065] = 5819, - [6066] = 5819, - [6067] = 5819, - [6068] = 5819, - [6069] = 5819, - [6070] = 5819, - [6071] = 5819, - [6072] = 5819, - [6073] = 5819, - [6074] = 5819, - [6075] = 5819, - [6076] = 5819, - [6077] = 5819, - [6078] = 5819, - [6079] = 5819, - [6080] = 5819, - [6081] = 5819, - [6082] = 5819, - [6083] = 5819, - [6084] = 5819, - [6085] = 5819, - [6086] = 5819, - [6087] = 5819, - [6088] = 5819, - [6089] = 5819, - [6090] = 5819, - [6091] = 5819, - [6092] = 5819, - [6093] = 5819, - [6094] = 5819, - [6095] = 5819, - [6096] = 5819, - [6097] = 5819, - [6098] = 5819, - [6099] = 5819, - [6100] = 5819, - [6101] = 5819, - [6102] = 6102, - [6103] = 5500, - [6104] = 5494, - [6105] = 5490, - [6106] = 6106, - [6107] = 6107, - [6108] = 5493, - [6109] = 5490, - [6110] = 5552, - [6111] = 5512, - [6112] = 5494, - [6113] = 6102, - [6114] = 5573, - [6115] = 5814, - [6116] = 5497, - [6117] = 5552, - [6118] = 6102, - [6119] = 6102, - [6120] = 6102, - [6121] = 6102, - [6122] = 6102, - [6123] = 6102, - [6124] = 6102, - [6125] = 6102, - [6126] = 6102, - [6127] = 6102, - [6128] = 6102, - [6129] = 6102, - [6130] = 6102, - [6131] = 6102, - [6132] = 6102, - [6133] = 6102, - [6134] = 6102, - [6135] = 6102, - [6136] = 6102, - [6137] = 6102, - [6138] = 6102, - [6139] = 6102, - [6140] = 6102, - [6141] = 6102, - [6142] = 6102, - [6143] = 6102, - [6144] = 6102, - [6145] = 6102, - [6146] = 6102, - [6147] = 6102, - [6148] = 6102, - [6149] = 6102, - [6150] = 6102, - [6151] = 6102, - [6152] = 6102, - [6153] = 6102, - [6154] = 6102, - [6155] = 6102, - [6156] = 6102, - [6157] = 6102, - [6158] = 6102, - [6159] = 6102, - [6160] = 6102, - [6161] = 6102, - [6162] = 6102, - [6163] = 5500, + [5551] = 5550, + [5552] = 1542, + [5553] = 1081, + [5554] = 5550, + [5555] = 1281, + [5556] = 4866, + [5557] = 5550, + [5558] = 5550, + [5559] = 5550, + [5560] = 4632, + [5561] = 4616, + [5562] = 4252, + [5563] = 1607, + [5564] = 4623, + [5565] = 4900, + [5566] = 1498, + [5567] = 4610, + [5568] = 4892, + [5569] = 5550, + [5570] = 4755, + [5571] = 4882, + [5572] = 4880, + [5573] = 4878, + [5574] = 4915, + [5575] = 1534, + [5576] = 4908, + [5577] = 470, + [5578] = 4872, + [5579] = 4881, + [5580] = 473, + [5581] = 4890, + [5582] = 4655, + [5583] = 468, + [5584] = 4231, + [5585] = 4922, + [5586] = 4936, + [5587] = 1281, + [5588] = 4607, + [5589] = 4920, + [5590] = 4929, + [5591] = 4609, + [5592] = 4642, + [5593] = 5550, + [5594] = 4648, + [5595] = 4937, + [5596] = 4944, + [5597] = 4947, + [5598] = 4886, + [5599] = 4887, + [5600] = 4867, + [5601] = 1607, + [5602] = 4824, + [5603] = 4727, + [5604] = 1534, + [5605] = 880, + [5606] = 885, + [5607] = 495, + [5608] = 1100, + [5609] = 4235, + [5610] = 1556, + [5611] = 4664, + [5612] = 1301, + [5613] = 4785, + [5614] = 5550, + [5615] = 4712, + [5616] = 832, + [5617] = 4920, + [5618] = 481, + [5619] = 1534, + [5620] = 4727, + [5621] = 4785, + [5622] = 475, + [5623] = 4943, + [5624] = 4945, + [5625] = 480, + [5626] = 4887, + [5627] = 4886, + [5628] = 484, + [5629] = 1281, + [5630] = 4947, + [5631] = 4944, + [5632] = 1382, + [5633] = 4937, + [5634] = 4911, + [5635] = 4936, + [5636] = 4929, + [5637] = 4648, + [5638] = 4900, + [5639] = 4922, + [5640] = 4890, + [5641] = 4881, + [5642] = 4872, + [5643] = 1146, + [5644] = 4642, + [5645] = 4908, + [5646] = 4867, + [5647] = 4609, + [5648] = 4607, + [5649] = 4915, + [5650] = 4878, + [5651] = 1149, + [5652] = 4712, + [5653] = 4882, + [5654] = 492, + [5655] = 488, + [5656] = 4952, + [5657] = 494, + [5658] = 4892, + [5659] = 4880, + [5660] = 483, + [5661] = 4898, + [5662] = 486, + [5663] = 487, + [5664] = 479, + [5665] = 4884, + [5666] = 490, + [5667] = 4883, + [5668] = 478, + [5669] = 477, + [5670] = 491, + [5671] = 1301, + [5672] = 4877, + [5673] = 4916, + [5674] = 1429, + [5675] = 4927, + [5676] = 4615, + [5677] = 4876, + [5678] = 4874, + [5679] = 4866, + [5680] = 482, + [5681] = 4868, + [5682] = 4960, + [5683] = 474, + [5684] = 4895, + [5685] = 4873, + [5686] = 4871, + [5687] = 4931, + [5688] = 485, + [5689] = 4938, + [5690] = 4940, + [5691] = 5028, + [5692] = 1607, + [5693] = 476, + [5694] = 5027, + [5695] = 4949, + [5696] = 489, + [5697] = 5697, + [5698] = 465, + [5699] = 464, + [5700] = 5700, + [5701] = 495, + [5702] = 5702, + [5703] = 5702, + [5704] = 5702, + [5705] = 5705, + [5706] = 5705, + [5707] = 5702, + [5708] = 5705, + [5709] = 5702, + [5710] = 5702, + [5711] = 5702, + [5712] = 5702, + [5713] = 5702, + [5714] = 5702, + [5715] = 5702, + [5716] = 5705, + [5717] = 5702, + [5718] = 5705, + [5719] = 5702, + [5720] = 5705, + [5721] = 5705, + [5722] = 5705, + [5723] = 5705, + [5724] = 5705, + [5725] = 5705, + [5726] = 5702, + [5727] = 5705, + [5728] = 5702, + [5729] = 5705, + [5730] = 5705, + [5731] = 5702, + [5732] = 5702, + [5733] = 5705, + [5734] = 5705, + [5735] = 5705, + [5736] = 5705, + [5737] = 5702, + [5738] = 1534, + [5739] = 5702, + [5740] = 5702, + [5741] = 5705, + [5742] = 5702, + [5743] = 5705, + [5744] = 1281, + [5745] = 5702, + [5746] = 5705, + [5747] = 1301, + [5748] = 5702, + [5749] = 5702, + [5750] = 5705, + [5751] = 5702, + [5752] = 5702, + [5753] = 5705, + [5754] = 5705, + [5755] = 5705, + [5756] = 5702, + [5757] = 5705, + [5758] = 5705, + [5759] = 5702, + [5760] = 5702, + [5761] = 5705, + [5762] = 5705, + [5763] = 5702, + [5764] = 5705, + [5765] = 5702, + [5766] = 5702, + [5767] = 5702, + [5768] = 5768, + [5769] = 5705, + [5770] = 5702, + [5771] = 5702, + [5772] = 5705, + [5773] = 5705, + [5774] = 5702, + [5775] = 5705, + [5776] = 5702, + [5777] = 5705, + [5778] = 5702, + [5779] = 5705, + [5780] = 5705, + [5781] = 5702, + [5782] = 5705, + [5783] = 5705, + [5784] = 5705, + [5785] = 5702, + [5786] = 5702, + [5787] = 5705, + [5788] = 5705, + [5789] = 1607, + [5790] = 5702, + [5791] = 5705, + [5792] = 5702, + [5793] = 5705, + [5794] = 5702, + [5795] = 5702, + [5796] = 5705, + [5797] = 5705, + [5798] = 5702, + [5799] = 5705, + [5800] = 5705, + [5801] = 5702, + [5802] = 5702, + [5803] = 5702, + [5804] = 5705, + [5805] = 5702, + [5806] = 5705, + [5807] = 5705, + [5808] = 5702, + [5809] = 5705, + [5810] = 5702, + [5811] = 5705, + [5812] = 5702, + [5813] = 5702, + [5814] = 5705, + [5815] = 5705, + [5816] = 5702, + [5817] = 5705, + [5818] = 5702, + [5819] = 5705, + [5820] = 5702, + [5821] = 5702, + [5822] = 5705, + [5823] = 5705, + [5824] = 5702, + [5825] = 5705, + [5826] = 5702, + [5827] = 5705, + [5828] = 5702, + [5829] = 5702, + [5830] = 5705, + [5831] = 5702, + [5832] = 5705, + [5833] = 5705, + [5834] = 5702, + [5835] = 5705, + [5836] = 5702, + [5837] = 5705, + [5838] = 5702, + [5839] = 5702, + [5840] = 5705, + [5841] = 5702, + [5842] = 5705, + [5843] = 5702, + [5844] = 5705, + [5845] = 5702, + [5846] = 5705, + [5847] = 5702, + [5848] = 5702, + [5849] = 5705, + [5850] = 5705, + [5851] = 5705, + [5852] = 5705, + [5853] = 5702, + [5854] = 5705, + [5855] = 5702, + [5856] = 5705, + [5857] = 5702, + [5858] = 5705, + [5859] = 5702, + [5860] = 5702, + [5861] = 5705, + [5862] = 5702, + [5863] = 5705, + [5864] = 5702, + [5865] = 5865, + [5866] = 5866, + [5867] = 5866, + [5868] = 5866, + [5869] = 5866, + [5870] = 5865, + [5871] = 5871, + [5872] = 5871, + [5873] = 5871, + [5874] = 5871, + [5875] = 5865, + [5876] = 5865, + [5877] = 5871, + [5878] = 5866, + [5879] = 5865, + [5880] = 5866, + [5881] = 5866, + [5882] = 5866, + [5883] = 5865, + [5884] = 5865, + [5885] = 5871, + [5886] = 5866, + [5887] = 5871, + [5888] = 5871, + [5889] = 5871, + [5890] = 5866, + [5891] = 5866, + [5892] = 5865, + [5893] = 5871, + [5894] = 5865, + [5895] = 5865, + [5896] = 5871, + [5897] = 5866, + [5898] = 5866, + [5899] = 5866, + [5900] = 5865, + [5901] = 5871, + [5902] = 5866, + [5903] = 5865, + [5904] = 5871, + [5905] = 5871, + [5906] = 5866, + [5907] = 5865, + [5908] = 5865, + [5909] = 5871, + [5910] = 5871, + [5911] = 5871, + [5912] = 5866, + [5913] = 5866, + [5914] = 5866, + [5915] = 5865, + [5916] = 5871, + [5917] = 5866, + [5918] = 5871, + [5919] = 5865, + [5920] = 5865, + [5921] = 5871, + [5922] = 5871, + [5923] = 5865, + [5924] = 5865, + [5925] = 5865, + [5926] = 5865, + [5927] = 5866, + [5928] = 5871, + [5929] = 5866, + [5930] = 5865, + [5931] = 5871, + [5932] = 5866, + [5933] = 5871, + [5934] = 5866, + [5935] = 5865, + [5936] = 5865, + [5937] = 5871, + [5938] = 5866, + [5939] = 5866, + [5940] = 5865, + [5941] = 5871, + [5942] = 5871, + [5943] = 5866, + [5944] = 5866, + [5945] = 5871, + [5946] = 5866, + [5947] = 5866, + [5948] = 5871, + [5949] = 5865, + [5950] = 5865, + [5951] = 5866, + [5952] = 5865, + [5953] = 5871, + [5954] = 5871, + [5955] = 5871, + [5956] = 5865, + [5957] = 5866, + [5958] = 5865, + [5959] = 5866, + [5960] = 5871, + [5961] = 5866, + [5962] = 5866, + [5963] = 5866, + [5964] = 5866, + [5965] = 5866, + [5966] = 5866, + [5967] = 5871, + [5968] = 5865, + [5969] = 5865, + [5970] = 5871, + [5971] = 5865, + [5972] = 5866, + [5973] = 5871, + [5974] = 5865, + [5975] = 5871, + [5976] = 5865, + [5977] = 5871, + [5978] = 5871, + [5979] = 5865, + [5980] = 5866, + [5981] = 5865, + [5982] = 5866, + [5983] = 5871, + [5984] = 5866, + [5985] = 5871, + [5986] = 5866, + [5987] = 5866, + [5988] = 5871, + [5989] = 5871, + [5990] = 5866, + [5991] = 5871, + [5992] = 5865, + [5993] = 5866, + [5994] = 5865, + [5995] = 5871, + [5996] = 5871, + [5997] = 5865, + [5998] = 5866, + [5999] = 5866, + [6000] = 5866, + [6001] = 5871, + [6002] = 5871, + [6003] = 5871, + [6004] = 5871, + [6005] = 5865, + [6006] = 5866, + [6007] = 5865, + [6008] = 5871, + [6009] = 5871, + [6010] = 5866, + [6011] = 5871, + [6012] = 5865, + [6013] = 5871, + [6014] = 5865, + [6015] = 5866, + [6016] = 5871, + [6017] = 5871, + [6018] = 5866, + [6019] = 5866, + [6020] = 5866, + [6021] = 5871, + [6022] = 5871, + [6023] = 5866, + [6024] = 5865, + [6025] = 5866, + [6026] = 5866, + [6027] = 5871, + [6028] = 5865, + [6029] = 5871, + [6030] = 5865, + [6031] = 5871, + [6032] = 5866, + [6033] = 5871, + [6034] = 5865, + [6035] = 5865, + [6036] = 5866, + [6037] = 5871, + [6038] = 5865, + [6039] = 5865, + [6040] = 5871, + [6041] = 5866, + [6042] = 5871, + [6043] = 5866, + [6044] = 5865, + [6045] = 5871, + [6046] = 5871, + [6047] = 5865, + [6048] = 5865, + [6049] = 5871, + [6050] = 5866, + [6051] = 5865, + [6052] = 5871, + [6053] = 5865, + [6054] = 5866, + [6055] = 5871, + [6056] = 5866, + [6057] = 5866, + [6058] = 5866, + [6059] = 5866, + [6060] = 5865, + [6061] = 5865, + [6062] = 5871, + [6063] = 5871, + [6064] = 5866, + [6065] = 5871, + [6066] = 5865, + [6067] = 5866, + [6068] = 5866, + [6069] = 5866, + [6070] = 5865, + [6071] = 5865, + [6072] = 5866, + [6073] = 5871, + [6074] = 5871, + [6075] = 5866, + [6076] = 5866, + [6077] = 5871, + [6078] = 5865, + [6079] = 5866, + [6080] = 5871, + [6081] = 5871, + [6082] = 5865, + [6083] = 5866, + [6084] = 5865, + [6085] = 5865, + [6086] = 5871, + [6087] = 5866, + [6088] = 6088, + [6089] = 6088, + [6090] = 6088, + [6091] = 6088, + [6092] = 6088, + [6093] = 6088, + [6094] = 6088, + [6095] = 488, + [6096] = 492, + [6097] = 6088, + [6098] = 6098, + [6099] = 6099, + [6100] = 6100, + [6101] = 6099, + [6102] = 6099, + [6103] = 6099, + [6104] = 6100, + [6105] = 6100, + [6106] = 6100, + [6107] = 6100, + [6108] = 6099, + [6109] = 6100, + [6110] = 6099, + [6111] = 6099, + [6112] = 6099, + [6113] = 6100, + [6114] = 6099, + [6115] = 6100, + [6116] = 6100, + [6117] = 6117, + [6118] = 6117, + [6119] = 6117, + [6120] = 6117, + [6121] = 6121, + [6122] = 479, + [6123] = 478, + [6124] = 486, + [6125] = 6125, + [6126] = 6117, + [6127] = 6127, + [6128] = 6128, + [6129] = 6117, + [6130] = 6117, + [6131] = 6131, + [6132] = 6117, + [6133] = 6117, + [6134] = 6117, + [6135] = 6117, + [6136] = 6117, + [6137] = 6137, + [6138] = 474, + [6139] = 6117, + [6140] = 492, + [6141] = 485, + [6142] = 6117, + [6143] = 488, + [6144] = 6117, + [6145] = 6117, + [6146] = 6117, + [6147] = 477, + [6148] = 6117, + [6149] = 6117, + [6150] = 6117, + [6151] = 6117, + [6152] = 6117, + [6153] = 6117, + [6154] = 491, + [6155] = 6117, + [6156] = 6117, + [6157] = 6117, + [6158] = 6117, + [6159] = 6159, + [6160] = 6160, + [6161] = 6161, + [6162] = 6161, + [6163] = 6161, + [6164] = 1173, + [6165] = 6161, + [6166] = 6161, + [6167] = 6160, + [6168] = 6159, + [6169] = 6159, + [6170] = 6161, + [6171] = 6160, + [6172] = 6160, + [6173] = 6159, + [6174] = 6160, + [6175] = 6160, + [6176] = 6176, + [6177] = 6159, + [6178] = 6161, + [6179] = 6179, + [6180] = 6159, + [6181] = 6159, + [6182] = 6161, + [6183] = 6183, + [6184] = 6159, + [6185] = 6160, + [6186] = 6160, + [6187] = 6187, + [6188] = 469, + [6189] = 6189, + [6190] = 6190, + [6191] = 6189, + [6192] = 6192, + [6193] = 473, + [6194] = 6194, + [6195] = 6195, + [6196] = 6196, + [6197] = 6197, + [6198] = 6192, + [6199] = 6192, + [6200] = 6189, + [6201] = 470, + [6202] = 6192, + [6203] = 6189, + [6204] = 468, + [6205] = 483, + [6206] = 489, + [6207] = 474, + [6208] = 6208, + [6209] = 481, + [6210] = 476, + [6211] = 492, + [6212] = 6212, + [6213] = 6213, + [6214] = 488, + [6215] = 6215, + [6216] = 486, + [6217] = 486, + [6218] = 6218, + [6219] = 6213, + [6220] = 6213, + [6221] = 479, + [6222] = 492, + [6223] = 6213, + [6224] = 478, + [6225] = 482, + [6226] = 477, + [6227] = 6227, + [6228] = 484, + [6229] = 480, + [6230] = 475, + [6231] = 485, + [6232] = 478, + [6233] = 491, + [6234] = 479, + [6235] = 488, + [6236] = 484, + [6237] = 479, + [6238] = 480, + [6239] = 486, + [6240] = 494, + [6241] = 491, + [6242] = 477, + [6243] = 487, + [6244] = 490, + [6245] = 478, + [6246] = 477, + [6247] = 491, + [6248] = 6248, + [6249] = 6248, + [6250] = 6248, + [6251] = 6248, + [6252] = 6248, + [6253] = 6248, + [6254] = 6248, + [6255] = 6248, + [6256] = 6256, + [6257] = 6248, + [6258] = 6258, + [6259] = 6259, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 6248, + [6264] = 6264, + [6265] = 6265, + [6266] = 6266, + [6267] = 6267, + [6268] = 6268, + [6269] = 6248, + [6270] = 6270, + [6271] = 6248, + [6272] = 6248, + [6273] = 6248, + [6274] = 6248, + [6275] = 6275, + [6276] = 6248, + [6277] = 6248, + [6278] = 6248, + [6279] = 6279, + [6280] = 6280, + [6281] = 6248, + [6282] = 6248, + [6283] = 6248, + [6284] = 6248, + [6285] = 6248, + [6286] = 6286, + [6287] = 6287, + [6288] = 6248, + [6289] = 6265, + [6290] = 6248, + [6291] = 6248, + [6292] = 6248, + [6293] = 490, + [6294] = 6248, + [6295] = 6248, + [6296] = 6248, + [6297] = 6248, + [6298] = 6248, + [6299] = 6299, + [6300] = 6300, + [6301] = 6301, + [6302] = 6302, + [6303] = 6303, + [6304] = 495, + [6305] = 6248, + [6306] = 487, + [6307] = 6248, + [6308] = 6248, + [6309] = 6248, + [6310] = 6310, + [6311] = 6248, + [6312] = 6312, + [6313] = 6248, + [6314] = 6314, + [6315] = 6248, + [6316] = 6248, + [6317] = 481, + [6318] = 6318, + [6319] = 6319, + [6320] = 6248, + [6321] = 6248, + [6322] = 6248, + [6323] = 6248, + [6324] = 6248, + [6325] = 6248, + [6326] = 469, + [6327] = 6265, + [6328] = 6328, + [6329] = 6248, + [6330] = 6330, + [6331] = 6265, + [6332] = 6248, + [6333] = 6248, + [6334] = 6334, + [6335] = 6248, + [6336] = 6248, + [6337] = 6337, + [6338] = 6338, + [6339] = 6337, + [6340] = 6337, + [6341] = 6248, + [6342] = 6248, + [6343] = 6248, + [6344] = 6344, + [6345] = 6248, + [6346] = 6346, + [6347] = 6248, + [6348] = 6248, + [6349] = 6248, + [6350] = 6248, + [6351] = 6248, + [6352] = 6248, + [6353] = 6353, + [6354] = 6248, + [6355] = 6248, + [6356] = 6248, + [6357] = 6248, + [6358] = 6248, + [6359] = 6248, + [6360] = 6248, + [6361] = 6361, + [6362] = 6248, + [6363] = 6337, + [6364] = 6364, + [6365] = 6365, + [6366] = 6248, + [6367] = 6248, + [6368] = 6368, + [6369] = 6369, + [6370] = 2702, + [6371] = 6371, + [6372] = 6372, + [6373] = 470, + [6374] = 6374, + [6375] = 6375, + [6376] = 6374, + [6377] = 6377, + [6378] = 6371, + [6379] = 6379, + [6380] = 6380, + [6381] = 6381, + [6382] = 6382, + [6383] = 6383, + [6384] = 6380, + [6385] = 6377, + [6386] = 6386, + [6387] = 6369, + [6388] = 2704, + [6389] = 6389, + [6390] = 6390, + [6391] = 6391, + [6392] = 6371, + [6393] = 6393, + [6394] = 6394, + [6395] = 6375, + [6396] = 6386, + [6397] = 6397, + [6398] = 6369, + [6399] = 6382, + [6400] = 6400, + [6401] = 6368, + [6402] = 6402, + [6403] = 2696, + [6404] = 6382, + [6405] = 6405, + [6406] = 6375, + [6407] = 2694, + [6408] = 6381, + [6409] = 6409, + [6410] = 6410, + [6411] = 6397, + [6412] = 6377, + [6413] = 6374, + [6414] = 6414, + [6415] = 6415, + [6416] = 6397, + [6417] = 6386, + [6418] = 6391, + [6419] = 468, + [6420] = 6420, + [6421] = 6368, + [6422] = 6369, + [6423] = 6391, + [6424] = 6424, + [6425] = 6425, + [6426] = 6426, + [6427] = 6427, + [6428] = 6428, + [6429] = 6391, + [6430] = 6430, + [6431] = 6430, + [6432] = 6377, + [6433] = 6371, + [6434] = 6414, + [6435] = 478, + [6436] = 477, + [6437] = 6371, + [6438] = 491, + [6439] = 473, + [6440] = 6377, + [6441] = 6386, + [6442] = 6397, + [6443] = 6381, + [6444] = 6383, + [6445] = 6380, + [6446] = 6383, + [6447] = 6375, + [6448] = 6448, + [6449] = 6449, + [6450] = 6414, + [6451] = 6380, + [6452] = 6397, + [6453] = 6380, + [6454] = 6414, + [6455] = 6382, + [6456] = 6368, + [6457] = 6430, + [6458] = 6414, + [6459] = 6430, + [6460] = 6460, + [6461] = 6368, + [6462] = 6430, + [6463] = 6463, + [6464] = 6383, + [6465] = 6465, + [6466] = 6375, + [6467] = 6382, + [6468] = 6369, + [6469] = 6374, + [6470] = 6470, + [6471] = 6381, + [6472] = 6472, + [6473] = 6391, + [6474] = 6474, + [6475] = 6475, + [6476] = 6476, + [6477] = 6477, + [6478] = 6478, + [6479] = 6383, + [6480] = 486, + [6481] = 6481, + [6482] = 6482, + [6483] = 478, + [6484] = 477, + [6485] = 491, + [6486] = 483, + [6487] = 6487, + [6488] = 6488, + [6489] = 6489, + [6490] = 475, + [6491] = 6491, + [6492] = 6492, + [6493] = 6493, + [6494] = 482, + [6495] = 6495, + [6496] = 6496, + [6497] = 479, + [6498] = 6498, + [6499] = 478, + [6500] = 494, + [6501] = 6501, + [6502] = 486, + [6503] = 488, + [6504] = 492, + [6505] = 1556, + [6506] = 492, + [6507] = 488, + [6508] = 6495, + [6509] = 490, + [6510] = 487, + [6511] = 6511, + [6512] = 6495, + [6513] = 489, + [6514] = 481, + [6515] = 487, + [6516] = 479, + [6517] = 1542, + [6518] = 490, + [6519] = 484, + [6520] = 481, + [6521] = 6521, + [6522] = 475, + [6523] = 480, + [6524] = 6524, + [6525] = 491, + [6526] = 485, + [6527] = 2930, + [6528] = 2929, + [6529] = 2931, + [6530] = 6530, + [6531] = 6531, + [6532] = 477, + [6533] = 6533, + [6534] = 476, + [6535] = 474, + [6536] = 6536, + [6537] = 478, + [6538] = 477, + [6539] = 6539, + [6540] = 491, + [6541] = 6541, + [6542] = 6542, + [6543] = 6543, + [6544] = 6495, + [6545] = 494, + [6546] = 2926, + [6547] = 6547, + [6548] = 6548, + [6549] = 6547, + [6550] = 6463, + [6551] = 6551, + [6552] = 6548, + [6553] = 6553, + [6554] = 491, + [6555] = 477, + [6556] = 478, + [6557] = 490, + [6558] = 6558, + [6559] = 6548, + [6560] = 6547, + [6561] = 485, + [6562] = 6548, + [6563] = 479, + [6564] = 487, + [6565] = 6548, + [6566] = 6558, + [6567] = 6567, + [6568] = 6558, + [6569] = 6569, + [6570] = 6570, + [6571] = 486, + [6572] = 6558, + [6573] = 481, + [6574] = 6548, + [6575] = 6547, + [6576] = 6548, + [6577] = 6548, + [6578] = 6547, + [6579] = 6548, + [6580] = 6548, + [6581] = 495, + [6582] = 6582, + [6583] = 2696, + [6584] = 6558, + [6585] = 2694, + [6586] = 6548, + [6587] = 6587, + [6588] = 6548, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6548, + [6593] = 6548, + [6594] = 6548, + [6595] = 6595, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6599, + [6600] = 6548, + [6601] = 6548, + [6602] = 6548, + [6603] = 6547, + [6604] = 6547, + [6605] = 6551, + [6606] = 6548, + [6607] = 6548, + [6608] = 6548, + [6609] = 2702, + [6610] = 2704, + [6611] = 6611, + [6612] = 6548, + [6613] = 6548, + [6614] = 6558, + [6615] = 474, + [6616] = 6547, + [6617] = 6548, + [6618] = 6618, + [6619] = 6547, + [6620] = 6620, + [6621] = 6548, + [6622] = 6548, + [6623] = 6548, + [6624] = 6548, + [6625] = 6548, + [6626] = 6626, + [6627] = 6627, + [6628] = 6547, + [6629] = 6548, + [6630] = 6548, + [6631] = 6631, + [6632] = 6632, + [6633] = 6548, + [6634] = 6547, + [6635] = 490, + [6636] = 6547, + [6637] = 6637, + [6638] = 6547, + [6639] = 6548, + [6640] = 6589, + [6641] = 6547, + [6642] = 6548, + [6643] = 6548, + [6644] = 6548, + [6645] = 487, + [6646] = 6646, + [6647] = 6548, + [6648] = 6648, + [6649] = 6649, + [6650] = 6548, + [6651] = 495, + [6652] = 6652, + [6653] = 6548, + [6654] = 6654, + [6655] = 6548, + [6656] = 6548, + [6657] = 6548, + [6658] = 6658, + [6659] = 6589, + [6660] = 6548, + [6661] = 6548, + [6662] = 6547, + [6663] = 481, + [6664] = 6547, + [6665] = 6665, + [6666] = 6666, + [6667] = 6667, + [6668] = 6547, + [6669] = 6548, + [6670] = 6670, + [6671] = 6551, + [6672] = 6672, + [6673] = 6547, + [6674] = 6558, + [6675] = 6675, + [6676] = 6676, + [6677] = 2559, + [6678] = 6678, + [6679] = 6463, + [6680] = 6548, + [6681] = 6681, + [6682] = 6548, + [6683] = 6548, + [6684] = 6548, + [6685] = 6548, + [6686] = 6547, + [6687] = 6548, + [6688] = 6548, + [6689] = 6689, + [6690] = 6690, + [6691] = 6548, + [6692] = 6548, + [6693] = 6548, + [6694] = 6694, + [6695] = 6695, + [6696] = 6547, + [6697] = 6548, + [6698] = 6548, + [6699] = 6548, + [6700] = 6700, + [6701] = 6548, + [6702] = 6702, + [6703] = 6703, + [6704] = 6547, + [6705] = 6547, + [6706] = 6706, + [6707] = 6707, + [6708] = 6548, + [6709] = 6709, + [6710] = 6710, + [6711] = 6711, + [6712] = 6548, + [6713] = 6713, + [6714] = 6714, + [6715] = 6548, + [6716] = 6716, + [6717] = 6547, + [6718] = 6558, + [6719] = 6719, + [6720] = 6548, + [6721] = 6548, + [6722] = 6722, + [6723] = 6548, + [6724] = 6548, + [6725] = 6725, + [6726] = 6726, + [6727] = 6726, + [6728] = 6531, + [6729] = 6729, + [6730] = 6730, + [6731] = 6726, + [6732] = 6730, + [6733] = 2930, + [6734] = 2931, + [6735] = 2636, + [6736] = 6726, + [6737] = 6726, + [6738] = 6531, + [6739] = 6726, + [6740] = 476, + [6741] = 6481, + [6742] = 6481, + [6743] = 6743, + [6744] = 6743, + [6745] = 6730, + [6746] = 6726, + [6747] = 6747, + [6748] = 6748, + [6749] = 6749, + [6750] = 6726, + [6751] = 6726, + [6752] = 6729, + [6753] = 490, + [6754] = 6726, + [6755] = 6755, + [6756] = 6726, + [6757] = 6726, + [6758] = 6726, + [6759] = 6726, + [6760] = 6726, + [6761] = 489, + [6762] = 6493, + [6763] = 6743, + [6764] = 6764, + [6765] = 481, + [6766] = 2724, + [6767] = 487, + [6768] = 6493, + [6769] = 6726, + [6770] = 6743, + [6771] = 6726, + [6772] = 6726, + [6773] = 6726, + [6774] = 6726, + [6775] = 6775, + [6776] = 2929, + [6777] = 6729, + [6778] = 2926, + [6779] = 6779, + [6780] = 6780, + [6781] = 6726, + [6782] = 6782, + [6783] = 6730, + [6784] = 6784, + [6785] = 6729, + [6786] = 6726, + [6787] = 6787, + [6788] = 6788, + [6789] = 6789, + [6790] = 6726, + [6791] = 6791, + [6792] = 6792, + [6793] = 6793, + [6794] = 6794, + [6795] = 6795, + [6796] = 6796, + [6797] = 6793, + [6798] = 6798, + [6799] = 6799, + [6800] = 6800, + [6801] = 6801, + [6802] = 6793, + [6803] = 6793, + [6804] = 6801, + [6805] = 6805, + [6806] = 6806, + [6807] = 6800, + [6808] = 6795, + [6809] = 6799, + [6810] = 6800, + [6811] = 6793, + [6812] = 6793, + [6813] = 6805, + [6814] = 6814, + [6815] = 6799, + [6816] = 6794, + [6817] = 6814, + [6818] = 6801, + [6819] = 6795, + [6820] = 6793, + [6821] = 6801, + [6822] = 6795, + [6823] = 6794, + [6824] = 6824, + [6825] = 6825, + [6826] = 6826, + [6827] = 6794, + [6828] = 6814, + [6829] = 6793, + [6830] = 6814, + [6831] = 6799, + [6832] = 6800, + [6833] = 6833, + [6834] = 6834, + [6835] = 6835, + [6836] = 6836, + [6837] = 6792, + [6838] = 6793, + [6839] = 6806, + [6840] = 6795, + [6841] = 6800, + [6842] = 6800, + [6843] = 6843, + [6844] = 6844, + [6845] = 6796, + [6846] = 6793, + [6847] = 6793, + [6848] = 6805, + [6849] = 6799, + [6850] = 6795, + [6851] = 6851, + [6852] = 6814, + [6853] = 6836, + [6854] = 6794, + [6855] = 6795, + [6856] = 6793, + [6857] = 6801, + [6858] = 6814, + [6859] = 6801, + [6860] = 6800, + [6861] = 6799, + [6862] = 6862, + [6863] = 6794, + [6864] = 6795, + [6865] = 6793, + [6866] = 6835, + [6867] = 6801, + [6868] = 6836, + [6869] = 6814, + [6870] = 6792, + [6871] = 6806, + [6872] = 6801, + [6873] = 6843, + [6874] = 6793, + [6875] = 6844, + [6876] = 6876, + [6877] = 6795, + [6878] = 6794, + [6879] = 6799, + [6880] = 6795, + [6881] = 6794, + [6882] = 6882, + [6883] = 6793, + [6884] = 6884, + [6885] = 6814, + [6886] = 6886, + [6887] = 6793, + [6888] = 6799, + [6889] = 6805, + [6890] = 6890, + [6891] = 6800, + [6892] = 6793, + [6893] = 6801, + [6894] = 6894, + [6895] = 6800, + [6896] = 6801, + [6897] = 6794, + [6898] = 6898, + [6899] = 6795, + [6900] = 6800, + [6901] = 6793, + [6902] = 6799, + [6903] = 6794, + [6904] = 6800, + [6905] = 6794, + [6906] = 6799, + [6907] = 6795, + [6908] = 6800, + [6909] = 6801, + [6910] = 6793, + [6911] = 6795, + [6912] = 6814, + [6913] = 6913, + [6914] = 6914, + [6915] = 6801, + [6916] = 6814, + [6917] = 6914, + [6918] = 6799, + [6919] = 6793, + [6920] = 6913, + [6921] = 6921, + [6922] = 6800, + [6923] = 6923, + [6924] = 6799, + [6925] = 6800, + [6926] = 6793, + [6927] = 6799, + [6928] = 6835, + [6929] = 6794, + [6930] = 6794, + [6931] = 6836, + [6932] = 6795, + [6933] = 6793, + [6934] = 6795, + [6935] = 6792, + [6936] = 6806, + [6937] = 6801, + [6938] = 6801, + [6939] = 6843, + [6940] = 6793, + [6941] = 6844, + [6942] = 6942, + [6943] = 6794, + [6944] = 6843, + [6945] = 6844, + [6946] = 6946, + [6947] = 6793, + [6948] = 6882, + [6949] = 6814, + [6950] = 6884, + [6951] = 6799, + [6952] = 6886, + [6953] = 6793, + [6954] = 6793, + [6955] = 6805, + [6956] = 6890, + [6957] = 6957, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6793, + [6962] = 6834, + [6963] = 6801, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, + [6968] = 6793, + [6969] = 6833, + [6970] = 6894, + [6971] = 6814, + [6972] = 6972, + [6973] = 6973, + [6974] = 6974, + [6975] = 6793, + [6976] = 6794, + [6977] = 6977, + [6978] = 6978, + [6979] = 6979, + [6980] = 6980, + [6981] = 6981, + [6982] = 6793, + [6983] = 6799, + [6984] = 6800, + [6985] = 6985, + [6986] = 6986, + [6987] = 6987, + [6988] = 6988, + [6989] = 6793, + [6990] = 6834, + [6991] = 6991, + [6992] = 6992, + [6993] = 6993, + [6994] = 6994, + [6995] = 6995, + [6996] = 6793, + [6997] = 6997, + [6998] = 6836, + [6999] = 6999, + [7000] = 7000, + [7001] = 7001, + [7002] = 7002, + [7003] = 6793, + [7004] = 6862, + [7005] = 6851, + [7006] = 7006, + [7007] = 6824, + [7008] = 7008, + [7009] = 6826, + [7010] = 6793, + [7011] = 6796, + [7012] = 6921, + [7013] = 6923, + [7014] = 7014, + [7015] = 6814, + [7016] = 6942, + [7017] = 6793, + [7018] = 6833, + [7019] = 6814, + [7020] = 7020, + [7021] = 6898, + [7022] = 7022, + [7023] = 7023, + [7024] = 6793, + [7025] = 7025, + [7026] = 7026, + [7027] = 7027, + [7028] = 6835, + [7029] = 7029, + [7030] = 6835, + [7031] = 6793, + [7032] = 6801, + [7033] = 6795, + [7034] = 6795, + [7035] = 6898, + [7036] = 6792, + [7037] = 7037, + [7038] = 6793, + [7039] = 6806, + [7040] = 6794, + [7041] = 6843, + [7042] = 6844, + [7043] = 6794, + [7044] = 6997, + [7045] = 6793, + [7046] = 6800, + [7047] = 6799, + [7048] = 6799, + [7049] = 7020, + [7050] = 6794, + [7051] = 6800, + [7052] = 6793, + [7053] = 6914, + [7054] = 6814, + [7055] = 6882, + [7056] = 6991, + [7057] = 6884, + [7058] = 6795, + [7059] = 6793, + [7060] = 6801, + [7061] = 6886, + [7062] = 6793, + [7063] = 6805, + [7064] = 6890, + [7065] = 7065, + [7066] = 6793, + [7067] = 6801, + [7068] = 6894, + [7069] = 6981, + [7070] = 6795, + [7071] = 6814, + [7072] = 6795, + [7073] = 6793, + [7074] = 6814, + [7075] = 6794, + [7076] = 6814, + [7077] = 6794, + [7078] = 6799, + [7079] = 6795, + [7080] = 6793, + [7081] = 6799, + [7082] = 6800, + [7083] = 6794, + [7084] = 6799, + [7085] = 6795, + [7086] = 6794, + [7087] = 6793, + [7088] = 6799, + [7089] = 6800, + [7090] = 6814, + [7091] = 6795, + [7092] = 6801, + [7093] = 6795, + [7094] = 6793, + [7095] = 6795, + [7096] = 6794, + [7097] = 6799, + [7098] = 6801, + [7099] = 6795, + [7100] = 6794, + [7101] = 6793, + [7102] = 7102, + [7103] = 6799, + [7104] = 6800, + [7105] = 6800, + [7106] = 6814, + [7107] = 6795, + [7108] = 6793, + [7109] = 6794, + [7110] = 6794, + [7111] = 6799, + [7112] = 6800, + [7113] = 6800, + [7114] = 6981, + [7115] = 6793, + [7116] = 6814, + [7117] = 6914, + [7118] = 6795, + [7119] = 6794, + [7120] = 6801, + [7121] = 6913, + [7122] = 6793, + [7123] = 6795, + [7124] = 6794, + [7125] = 6799, + [7126] = 6800, + [7127] = 6799, + [7128] = 6800, + [7129] = 6793, + [7130] = 6795, + [7131] = 6800, + [7132] = 6794, + [7133] = 6799, + [7134] = 6991, + [7135] = 6800, + [7136] = 6793, + [7137] = 6800, + [7138] = 6795, + [7139] = 6794, + [7140] = 6799, + [7141] = 6800, + [7142] = 6826, + [7143] = 6793, + [7144] = 6799, + [7145] = 6814, + [7146] = 6800, + [7147] = 6799, + [7148] = 6799, + [7149] = 6814, + [7150] = 6793, + [7151] = 6795, + [7152] = 6794, + [7153] = 6794, + [7154] = 6801, + [7155] = 6795, + [7156] = 6794, + [7157] = 6793, + [7158] = 6795, + [7159] = 6913, + [7160] = 6799, + [7161] = 6799, + [7162] = 6800, + [7163] = 6800, + [7164] = 6793, + [7165] = 6801, + [7166] = 6795, + [7167] = 6801, + [7168] = 6794, + [7169] = 6799, + [7170] = 6800, + [7171] = 6793, + [7172] = 6814, + [7173] = 6795, + [7174] = 6794, + [7175] = 6799, + [7176] = 6814, + [7177] = 6833, + [7178] = 6793, + [7179] = 6800, + [7180] = 6795, + [7181] = 6834, + [7182] = 6794, + [7183] = 6801, + [7184] = 6800, + [7185] = 6793, + [7186] = 6799, + [7187] = 6800, + [7188] = 6913, + [7189] = 6795, + [7190] = 6794, + [7191] = 6814, + [7192] = 6793, + [7193] = 6834, + [7194] = 6799, + [7195] = 6799, + [7196] = 6800, + [7197] = 6800, + [7198] = 6833, + [7199] = 6793, + [7200] = 6799, + [7201] = 6795, + [7202] = 6794, + [7203] = 6794, + [7204] = 6799, + [7205] = 7205, + [7206] = 6793, + [7207] = 6800, + [7208] = 6794, + [7209] = 6794, + [7210] = 6801, + [7211] = 6795, + [7212] = 6795, + [7213] = 6793, + [7214] = 6794, + [7215] = 6795, + [7216] = 6795, + [7217] = 6799, + [7218] = 7218, + [7219] = 6800, + [7220] = 7220, + [7221] = 7221, + [7222] = 7222, + [7223] = 7223, + [7224] = 6801, + [7225] = 7225, + [7226] = 6814, + [7227] = 6794, + [7228] = 6795, + [7229] = 6794, + [7230] = 6801, + [7231] = 6799, + [7232] = 7232, + [7233] = 7233, + [7234] = 7234, + [7235] = 7235, + [7236] = 7236, + [7237] = 7237, + [7238] = 7238, + [7239] = 7239, + [7240] = 7240, + [7241] = 7241, + [7242] = 7242, + [7243] = 7243, + [7244] = 6814, + [7245] = 6800, + [7246] = 6799, + [7247] = 6814, + [7248] = 6814, + [7249] = 6801, + [7250] = 6794, + [7251] = 7251, + [7252] = 6795, + [7253] = 6794, + [7254] = 6799, + [7255] = 6800, + [7256] = 6799, + [7257] = 6800, + [7258] = 6882, + [7259] = 6884, + [7260] = 6800, + [7261] = 6800, + [7262] = 6799, + [7263] = 6814, + [7264] = 6801, + [7265] = 7265, + [7266] = 6795, + [7267] = 6794, + [7268] = 6894, + [7269] = 7269, + [7270] = 6799, + [7271] = 6800, + [7272] = 7272, + [7273] = 6890, + [7274] = 7274, + [7275] = 6997, + [7276] = 6814, + [7277] = 6794, + [7278] = 6814, + [7279] = 6801, + [7280] = 6795, + [7281] = 6814, + [7282] = 6794, + [7283] = 6799, + [7284] = 6800, + [7285] = 7285, + [7286] = 6801, + [7287] = 6814, + [7288] = 6801, + [7289] = 6795, + [7290] = 6794, + [7291] = 6923, + [7292] = 7205, + [7293] = 6914, + [7294] = 6801, + [7295] = 6799, + [7296] = 6800, + [7297] = 6814, + [7298] = 6800, + [7299] = 6799, + [7300] = 6795, + [7301] = 6794, + [7302] = 7302, + [7303] = 7303, + [7304] = 6801, + [7305] = 6795, + [7306] = 6799, + [7307] = 6794, + [7308] = 6800, + [7309] = 6814, + [7310] = 6801, + [7311] = 6795, + [7312] = 6799, + [7313] = 6800, + [7314] = 6794, + [7315] = 6942, + [7316] = 6799, + [7317] = 6800, + [7318] = 6913, + [7319] = 6794, + [7320] = 6921, + [7321] = 6795, + [7322] = 6814, + [7323] = 6795, + [7324] = 6814, + [7325] = 6801, + [7326] = 6886, + [7327] = 6795, + [7328] = 6794, + [7329] = 6799, + [7330] = 6793, + [7331] = 6800, + [7332] = 6800, + [7333] = 6801, + [7334] = 6801, + [7335] = 6795, + [7336] = 6799, + [7337] = 6814, + [7338] = 6801, + [7339] = 6795, + [7340] = 6794, + [7341] = 6799, + [7342] = 6794, + [7343] = 6814, + [7344] = 6805, + [7345] = 6800, + [7346] = 6814, + [7347] = 6795, + [7348] = 6800, + [7349] = 7274, + [7350] = 6914, + [7351] = 6814, + [7352] = 6890, + [7353] = 6801, + [7354] = 6795, + [7355] = 6794, + [7356] = 6799, + [7357] = 6801, + [7358] = 6795, + [7359] = 6794, + [7360] = 6799, + [7361] = 6800, + [7362] = 6834, + [7363] = 6833, + [7364] = 6801, + [7365] = 6814, + [7366] = 6801, + [7367] = 6795, + [7368] = 6794, + [7369] = 6801, + [7370] = 6795, + [7371] = 6794, + [7372] = 6799, + [7373] = 6800, + [7374] = 6800, + [7375] = 6799, + [7376] = 6814, + [7377] = 6800, + [7378] = 6799, + [7379] = 6799, + [7380] = 6800, + [7381] = 6814, + [7382] = 6801, + [7383] = 6795, + [7384] = 6794, + [7385] = 6799, + [7386] = 6800, + [7387] = 6814, + [7388] = 6801, + [7389] = 7265, + [7390] = 6795, + [7391] = 6794, + [7392] = 6894, + [7393] = 7269, + [7394] = 6799, + [7395] = 6800, + [7396] = 6890, + [7397] = 7274, + [7398] = 6800, + [7399] = 6794, + [7400] = 6795, + [7401] = 7205, + [7402] = 6991, + [7403] = 6799, + [7404] = 6814, + [7405] = 6801, + [7406] = 6814, + [7407] = 6801, + [7408] = 6913, + [7409] = 6795, + [7410] = 6794, + [7411] = 6799, + [7412] = 6800, + [7413] = 6997, + [7414] = 6794, + [7415] = 6814, + [7416] = 6862, + [7417] = 6862, + [7418] = 6801, + [7419] = 6795, + [7420] = 6794, + [7421] = 6799, + [7422] = 6800, + [7423] = 6795, + [7424] = 6801, + [7425] = 6814, + [7426] = 6801, + [7427] = 6914, + [7428] = 6801, + [7429] = 6795, + [7430] = 6794, + [7431] = 6795, + [7432] = 6799, + [7433] = 6800, + [7434] = 6794, + [7435] = 6814, + [7436] = 6799, + [7437] = 6800, + [7438] = 6801, + [7439] = 7269, + [7440] = 6851, + [7441] = 6914, + [7442] = 6814, + [7443] = 6814, + [7444] = 6913, + [7445] = 6801, + [7446] = 6795, + [7447] = 6794, + [7448] = 6799, + [7449] = 6800, + [7450] = 6814, + [7451] = 6824, + [7452] = 6814, + [7453] = 6814, + [7454] = 6801, + [7455] = 6795, + [7456] = 6801, + [7457] = 6795, + [7458] = 6794, + [7459] = 6794, + [7460] = 6799, + [7461] = 6800, + [7462] = 6801, + [7463] = 6799, + [7464] = 6800, + [7465] = 6826, + [7466] = 6796, + [7467] = 6795, + [7468] = 6814, + [7469] = 7469, + [7470] = 7470, + [7471] = 6801, + [7472] = 6795, + [7473] = 6794, + [7474] = 6794, + [7475] = 6799, + [7476] = 6800, + [7477] = 7477, + [7478] = 6981, + [7479] = 7265, + [7480] = 6921, + [7481] = 6814, + [7482] = 6894, + [7483] = 7269, + [7484] = 6801, + [7485] = 6795, + [7486] = 6890, + [7487] = 7274, + [7488] = 6794, + [7489] = 7020, + [7490] = 6814, + [7491] = 7205, + [7492] = 6799, + [7493] = 6800, + [7494] = 6923, + [7495] = 6942, + [7496] = 6814, + [7497] = 6801, + [7498] = 6795, + [7499] = 6794, + [7500] = 6799, + [7501] = 6800, + [7502] = 6801, + [7503] = 7020, + [7504] = 6898, + [7505] = 6814, + [7506] = 6801, + [7507] = 6795, + [7508] = 6794, + [7509] = 6799, + [7510] = 6800, + [7511] = 6894, + [7512] = 7269, + [7513] = 6890, + [7514] = 7274, + [7515] = 6795, + [7516] = 6894, + [7517] = 7205, + [7518] = 6794, + [7519] = 6796, + [7520] = 6799, + [7521] = 6800, + [7522] = 6799, + [7523] = 6826, + [7524] = 6800, + [7525] = 6814, + [7526] = 6801, + [7527] = 6795, + [7528] = 6851, + [7529] = 6794, + [7530] = 7530, + [7531] = 6799, + [7532] = 6814, + [7533] = 6800, + [7534] = 6814, + [7535] = 6801, + [7536] = 6795, + [7537] = 7269, + [7538] = 7269, + [7539] = 7269, + [7540] = 7269, + [7541] = 7269, + [7542] = 7269, + [7543] = 7269, + [7544] = 7269, + [7545] = 7269, + [7546] = 7269, + [7547] = 7269, + [7548] = 7269, + [7549] = 7269, + [7550] = 7269, + [7551] = 7269, + [7552] = 7269, + [7553] = 7269, + [7554] = 7269, + [7555] = 7269, + [7556] = 7269, + [7557] = 7269, + [7558] = 7269, + [7559] = 7269, + [7560] = 7269, + [7561] = 7269, + [7562] = 7269, + [7563] = 7269, + [7564] = 7269, + [7565] = 7269, + [7566] = 7269, + [7567] = 7269, + [7568] = 7269, + [7569] = 7269, + [7570] = 7269, + [7571] = 7269, + [7572] = 7269, + [7573] = 7269, + [7574] = 7269, + [7575] = 7269, + [7576] = 7269, + [7577] = 7269, + [7578] = 7269, + [7579] = 7269, + [7580] = 7269, + [7581] = 7269, + [7582] = 7269, + [7583] = 7269, + [7584] = 7269, + [7585] = 7269, + [7586] = 7269, + [7587] = 7269, + [7588] = 7269, + [7589] = 7269, + [7590] = 7269, + [7591] = 7269, + [7592] = 7269, + [7593] = 7269, + [7594] = 7269, + [7595] = 7269, + [7596] = 7269, + [7597] = 7597, + [7598] = 6794, + [7599] = 6799, + [7600] = 6799, + [7601] = 6800, + [7602] = 6795, + [7603] = 6824, + [7604] = 7265, + [7605] = 7597, + [7606] = 6794, + [7607] = 7597, + [7608] = 7597, + [7609] = 7597, + [7610] = 7597, + [7611] = 7597, + [7612] = 7597, + [7613] = 7597, + [7614] = 7597, + [7615] = 7597, + [7616] = 7597, + [7617] = 7597, + [7618] = 7597, + [7619] = 7597, + [7620] = 7597, + [7621] = 7597, + [7622] = 7597, + [7623] = 7597, + [7624] = 7597, + [7625] = 7597, + [7626] = 7597, + [7627] = 7597, + [7628] = 7597, + [7629] = 7597, + [7630] = 7597, + [7631] = 7597, + [7632] = 7597, + [7633] = 7597, + [7634] = 7597, + [7635] = 7597, + [7636] = 7597, + [7637] = 7597, + [7638] = 7597, + [7639] = 7597, + [7640] = 7597, + [7641] = 7597, + [7642] = 7597, + [7643] = 7597, + [7644] = 7597, + [7645] = 7597, + [7646] = 7597, + [7647] = 7597, + [7648] = 7597, + [7649] = 7597, + [7650] = 7597, + [7651] = 7597, + [7652] = 7597, + [7653] = 7597, + [7654] = 7597, + [7655] = 7597, + [7656] = 7597, + [7657] = 7597, + [7658] = 7597, + [7659] = 7597, + [7660] = 7597, + [7661] = 7597, + [7662] = 7597, + [7663] = 7597, + [7664] = 7597, + [7665] = 7597, + [7666] = 7597, + [7667] = 7597, + [7668] = 7597, + [7669] = 7597, + [7670] = 7670, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -8979,6789 +10520,7190 @@ static inline bool sym_word_character_set_6(int32_t c) { static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(510); - if (lookahead == '!') ADVANCE(779); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(784); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(612); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(783); - if (lookahead == '+') ADVANCE(729); - if (lookahead == ',') ADVANCE(520); - if (lookahead == '-') ADVANCE(727); - if (lookahead == '.') ADVANCE(900); - if (lookahead == '/') ADVANCE(607); - if (lookahead == '0') ADVANCE(895); - if (lookahead == ':') ADVANCE(722); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(786); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(796); - if (lookahead == '@') ADVANCE(781); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(558); - if (lookahead == '_') ADVANCE(897); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'i') ADVANCE(906); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '}') ADVANCE(737); - if (lookahead == '~') ADVANCE(731); + if (eof) ADVANCE(547); + if (lookahead == '!') ADVANCE(820); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(825); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(647); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(824); + if (lookahead == '+') ADVANCE(770); + if (lookahead == ',') ADVANCE(557); + if (lookahead == '-') ADVANCE(768); + if (lookahead == '.') ADVANCE(949); + if (lookahead == '/') ADVANCE(642); + if (lookahead == '0') ADVANCE(944); + if (lookahead == ':') ADVANCE(763); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(827); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(837); + if (lookahead == '@') ADVANCE(822); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(417); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(595); + if (lookahead == '_') ADVANCE(946); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == 'i') ADVANCE(955); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(592); + if (lookahead == '}') ADVANCE(778); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(505) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(541) + if (lookahead != 0) ADVANCE(958); END_STATE(); case 1: - if (lookahead == '\n') SKIP(221) + if (lookahead == '\n') SKIP(239) END_STATE(); case 2: - if (lookahead == '\n') SKIP(237) + if (lookahead == '\n') SKIP(255) END_STATE(); case 3: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(256) END_STATE(); case 4: - if (lookahead == '\n') SKIP(239) + if (lookahead == '\n') SKIP(257) END_STATE(); case 5: if (lookahead == '\n') SKIP(6) END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(688); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(391); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(421); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(592); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 7: - if (lookahead == '\n') SKIP(223) + if (lookahead == '\n') SKIP(241) END_STATE(); case 8: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(259) END_STATE(); case 9: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(260) END_STATE(); case 10: - if (lookahead == '\n') SKIP(226) + if (lookahead == '\n') SKIP(242) END_STATE(); case 11: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') SKIP(244) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(654); - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(689); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(839); + if (lookahead == '\n') ADVANCE(880); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(940); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(940); if (lookahead == '\r') ADVANCE(14); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(940); if (lookahead == '\r') ADVANCE(14); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(909); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(958); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(871); + if (lookahead == '\n') ADVANCE(918); END_STATE(); case 18: - if (lookahead == '\n') SKIP(108) + if (lookahead == '\n') SKIP(112) END_STATE(); case 19: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(263) END_STATE(); case 20: - if (lookahead == '\n') SKIP(240) + if (lookahead == '\n') SKIP(258) END_STATE(); case 21: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(177) END_STATE(); case 22: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(180) END_STATE(); case 23: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(183) END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(841); + if (lookahead == '\n') ADVANCE(882); END_STATE(); case 25: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(186) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(843); + if (lookahead == '\n') ADVANCE(884); END_STATE(); case 27: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') ADVANCE(888); END_STATE(); case 28: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(189) END_STATE(); case 29: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(192) END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(851); + if (lookahead == '\n') SKIP(195) END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(853); + if (lookahead == '\n') ADVANCE(898); END_STATE(); case 32: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(198) END_STATE(); case 33: - if (lookahead == '\n') SKIP(276) + if (lookahead == '\n') SKIP(299) END_STATE(); case 34: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(295) END_STATE(); case 35: - if (lookahead == '\n') SKIP(280) + if (lookahead == '\n') SKIP(204) END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(858); + if (lookahead == '\n') ADVANCE(902); END_STATE(); case 37: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(262) END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(861); + if (lookahead == '\n') ADVANCE(904); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(862); + if (lookahead == '\n') ADVANCE(909); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(873); + if (lookahead == '\n') SKIP(213) END_STATE(); case 41: - if (lookahead == '\n') SKIP(289) + if (lookahead == '\n') ADVANCE(920); END_STATE(); case 42: - if (lookahead == '\n') SKIP(195) + if (lookahead == '\n') SKIP(308) END_STATE(); case 43: - if (lookahead == '\n') SKIP(283) + if (lookahead == '\n') SKIP(302) END_STATE(); case 44: - if (lookahead == '\n') SKIP(279) + if (lookahead == '\n') ADVANCE(922); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(866); + if (lookahead == '\n') SKIP(298) END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(875); + if (lookahead == '\n') ADVANCE(913); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\n') ADVANCE(930); END_STATE(); case 48: - if (lookahead == '\n') SKIP(287) + if (lookahead == '\n') ADVANCE(923); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(929); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') SKIP(306) END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(882); + if (lookahead == '\n') ADVANCE(927); END_STATE(); case 52: - if (lookahead == '\n') SKIP(254) + if (lookahead == '\n') ADVANCE(932); END_STATE(); case 53: - if (lookahead == '\n') SKIP(255) + if (lookahead == '\n') SKIP(272) END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\n') SKIP(273) END_STATE(); case 55: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') SKIP(261) END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(872); + if (lookahead == '\n') ADVANCE(919); END_STATE(); case 57: - if (lookahead == '\n') SKIP(262) + if (lookahead == '\n') SKIP(278) END_STATE(); case 58: - if (lookahead == '\n') SKIP(217) + if (lookahead == '\n') SKIP(235) END_STATE(); case 59: - if (lookahead == '\n') SKIP(260) + if (lookahead == '\n') SKIP(276) END_STATE(); case 60: - if (lookahead == '\n') SKIP(258) + if (lookahead == '\n') SKIP(281) END_STATE(); case 61: - if (lookahead == '\n') SKIP(261) + if (lookahead == '\n') SKIP(277) END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(840); + if (lookahead == '\n') ADVANCE(881); END_STATE(); case 63: if (lookahead == '\n') SKIP(64) END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ';') ADVANCE(516); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '\\') SKIP(425) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(635); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ';') ADVANCE(553); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(455) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(744); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '(') ADVANCE(618); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(318); - if (lookahead == '0') ADVANCE(768); - if (lookahead == ';') ADVANCE(516); - if (lookahead == '\\') SKIP(436) - if (lookahead == '`') ADVANCE(814); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '(') ADVANCE(653); + if (lookahead == '+') ADVANCE(338); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(340); + if (lookahead == '0') ADVANCE(809); + if (lookahead == ';') ADVANCE(553); + if (lookahead == '\\') SKIP(465) + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(621); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(656); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(437) - if (lookahead == '`') ADVANCE(326); - if (lookahead == 'e') ADVANCE(330); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(783); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(808); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '\\') SKIP(471) + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(354); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(577); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '\\') SKIP(435) - if (lookahead == 'e') ADVANCE(330); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(466) + if (lookahead == '`') ADVANCE(348); + if (lookahead == 'e') ADVANCE(352); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(67) END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '<') ADVANCE(570); - if (lookahead == '>') ADVANCE(583); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(443) - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(332); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(504) + if (lookahead == '`') ADVANCE(348); + if (lookahead == 'e') ADVANCE(352); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(562); - if (lookahead == ';') ADVANCE(518); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '>') ADVANCE(618); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(447) - if (lookahead == '`') ADVANCE(326); - if (lookahead == 'i') ADVANCE(329); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(475) + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(354); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69) END_STATE(); case 70: - if (lookahead == '\n') SKIP(292) + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(599); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(480) + if (lookahead == '`') ADVANCE(348); + if (lookahead == 'i') ADVANCE(351); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70) END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(842); + if (lookahead == '\n') ADVANCE(883); END_STATE(); case 72: - if (lookahead == '\n') SKIP(257) + if (lookahead == '\n') SKIP(311) END_STATE(); case 73: - if (lookahead == '\n') SKIP(259) + if (lookahead == '\n') SKIP(275) END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(844); + if (lookahead == '\n') SKIP(280) END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(846); + if (lookahead == '\n') ADVANCE(889); END_STATE(); case 76: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') ADVANCE(891); END_STATE(); case 77: - if (lookahead == '\n') SKIP(291) + if (lookahead == '\n') ADVANCE(916); END_STATE(); case 78: - if (lookahead == '\n') SKIP(296) + if (lookahead == '\n') SKIP(237) END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(869); + if (lookahead == '\n') SKIP(310) END_STATE(); case 80: - if (lookahead == '\n') SKIP(300) + if (lookahead == '\n') SKIP(316) END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(850); + if (lookahead == '\n') SKIP(320) END_STATE(); case 82: - if (lookahead == '\n') SKIP(297) + if (lookahead == '\n') ADVANCE(901); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(879); + if (lookahead == '\n') ADVANCE(933); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(870); + if (lookahead == '\n') ADVANCE(926); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(917); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') ADVANCE(934); END_STATE(); case 87: - if (lookahead == '\n') SKIP(270) + if (lookahead == '\n') SKIP(317) END_STATE(); case 88: - if (lookahead == '\n') SKIP(67) + if (lookahead == '\n') SKIP(289) END_STATE(); case 89: if (lookahead == '\n') SKIP(65) END_STATE(); case 90: - if (lookahead == '\n') SKIP(66) + if (lookahead == '\n') SKIP(67) END_STATE(); case 91: - if (lookahead == '\n') SKIP(273) + if (lookahead == '\n') SKIP(292) END_STATE(); case 92: - if (lookahead == '\n') SKIP(293) + if (lookahead == '\n') SKIP(312) END_STATE(); case 93: - if (lookahead == '\n') SKIP(303) + if (lookahead == '\n') SKIP(324) END_STATE(); case 94: - if (lookahead == '\n') SKIP(301) + if (lookahead == '\n') SKIP(321) END_STATE(); case 95: - if (lookahead == '\n') SKIP(294) + if (lookahead == '\n') SKIP(66) END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(854); + if (lookahead == '\n') SKIP(322) END_STATE(); case 97: - if (lookahead == '\n') SKIP(68) + if (lookahead == '\n') SKIP(325) END_STATE(); case 98: - if (lookahead == '\n') SKIP(274) + if (lookahead == '\n') SKIP(313) END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(907); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') SKIP(69) END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') SKIP(293) END_STATE(); case 102: - if (lookahead == '\n') SKIP(302) + if (lookahead == '\n') ADVANCE(937); END_STATE(); case 103: - if (lookahead == '\n') SKIP(69) + if (lookahead == '\n') ADVANCE(938); END_STATE(); case 104: - if (lookahead == '\n') SKIP(295) + if (lookahead == '\n') ADVANCE(939); END_STATE(); case 105: - if (lookahead == '\n') SKIP(304) + if (lookahead == '\n') SKIP(323) END_STATE(); case 106: - if (lookahead == '\n') SKIP(227) + if (lookahead == '\n') SKIP(314) END_STATE(); case 107: - if (lookahead == '\n') SKIP(224) + if (lookahead == '\n') SKIP(70) END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(656); - if (lookahead == '!') ADVANCE(902); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(555); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(108) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (lookahead == '\n') SKIP(315) END_STATE(); case 109: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(326) END_STATE(); case 110: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') SKIP(245) END_STATE(); case 111: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(243) END_STATE(); case 112: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') ADVANCE(691); + if (lookahead == '!') ADVANCE(951); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(427); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(592); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(112) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 113: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(174) END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(845); + if (lookahead == '\n') SKIP(264) END_STATE(); case 115: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(215) END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(847); + if (lookahead == '\n') SKIP(217) END_STATE(); case 117: - if (lookahead == '\n') SKIP(207) + if (lookahead == '\n') SKIP(219) END_STATE(); case 118: - if (lookahead == '\n') SKIP(205) + if (lookahead == '\n') ADVANCE(886); END_STATE(); case 119: - if (lookahead == '\n') SKIP(213) + if (lookahead == '\n') SKIP(221) END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(856); + if (lookahead == '\n') ADVANCE(890); END_STATE(); case 121: - if (lookahead == '\n') SKIP(209) + if (lookahead == '\n') ADVANCE(894); END_STATE(); case 122: - if (lookahead == '\n') SKIP(211) + if (lookahead == '\n') SKIP(225) END_STATE(); case 123: - if (lookahead == '\n') SKIP(281) + if (lookahead == '\n') SKIP(231) END_STATE(); case 124: - if (lookahead == '\n') ADVANCE(859); + if (lookahead == '\n') SKIP(223) END_STATE(); case 125: - if (lookahead == '\n') ADVANCE(865); + if (lookahead == '\n') SKIP(227) END_STATE(); case 126: - if (lookahead == '\n') ADVANCE(874); + if (lookahead == '\n') SKIP(300) END_STATE(); case 127: - if (lookahead == '\n') SKIP(290) + if (lookahead == '\n') SKIP(232) END_STATE(); case 128: - if (lookahead == '\n') SKIP(218) + if (lookahead == '\n') ADVANCE(908); END_STATE(); case 129: - if (lookahead == '\n') SKIP(284) + if (lookahead == '\n') ADVANCE(912); END_STATE(); case 130: - if (lookahead == '\n') SKIP(277) + if (lookahead == '\n') SKIP(236) END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(868); + if (lookahead == '\n') ADVANCE(921); END_STATE(); case 132: - if (lookahead == '\n') SKIP(288) + if (lookahead == '\n') SKIP(309) END_STATE(); case 133: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') SKIP(303) END_STATE(); case 134: - if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\n') SKIP(296) END_STATE(); case 135: - if (lookahead == '\n') SKIP(264) + if (lookahead == '\n') ADVANCE(915); END_STATE(); case 136: - if (lookahead == '\n') ADVANCE(848); + if (lookahead == '\n') ADVANCE(931); END_STATE(); case 137: - if (lookahead == '\n') SKIP(263) + if (lookahead == '\n') SKIP(307) END_STATE(); case 138: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') ADVANCE(928); END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(852); + if (lookahead == '\n') ADVANCE(885); END_STATE(); case 140: - if (lookahead == '\n') SKIP(228) + if (lookahead == '\n') ADVANCE(887); END_STATE(); case 141: - if (lookahead == '\n') ADVANCE(657); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(351); - if (lookahead == '_') ADVANCE(899); - if (lookahead == 'e') ADVANCE(836); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(141) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (lookahead == '\n') SKIP(274) END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(849); + if (lookahead == '\n') ADVANCE(895); END_STATE(); case 143: - if (lookahead == '\n') SKIP(214) + if (lookahead == '\n') ADVANCE(899); END_STATE(); case 144: - if (lookahead == '\n') SKIP(215) + if (lookahead == '\n') SKIP(238) END_STATE(); case 145: - if (lookahead == '\n') SKIP(216) + if (lookahead == '\n') ADVANCE(903); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(864); + if (lookahead == '\n') ADVANCE(935); END_STATE(); case 147: - if (lookahead == '\n') SKIP(285) + if (lookahead == '\n') ADVANCE(936); END_STATE(); case 148: - if (lookahead == '\n') SKIP(282) + if (lookahead == '\n') SKIP(68) END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(855); + if (lookahead == '\n') SKIP(246) END_STATE(); case 150: - if (lookahead == '\n') SKIP(278) + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(373); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(150) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(658); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(151) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') ADVANCE(892); END_STATE(); case 152: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(229) END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(857); + if (lookahead == '\n') SKIP(233) END_STATE(); case 154: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(234) END_STATE(); case 155: - if (lookahead == '\n') SKIP(193) + if (lookahead == '\n') ADVANCE(911); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(860); + if (lookahead == '\n') SKIP(304) END_STATE(); case 157: - if (lookahead == '\n') ADVANCE(863); + if (lookahead == '\n') SKIP(301) END_STATE(); case 158: - if (lookahead == '\n') SKIP(286) + if (lookahead == '\n') ADVANCE(893); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(867); + if (lookahead == '\n') ADVANCE(905); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\n') ADVANCE(896); END_STATE(); case 161: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') SKIP(297) END_STATE(); case 162: - if (lookahead == '\n') ADVANCE(659); - if (lookahead == '!') ADVANCE(902); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(452); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (lookahead == '\n') ADVANCE(897); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(660); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); - END_STATE(); - case 164: - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(357); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); + END_STATE(); + case 164: + if (lookahead == '\n') SKIP(201) END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(662); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') ADVANCE(900); END_STATE(); case 166: - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (lookahead == '\n') SKIP(207) END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(367); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') SKIP(210) END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') ADVANCE(906); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (lookahead == '\n') ADVANCE(910); END_STATE(); case 170: - if (lookahead == '\n') ADVANCE(667); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(368); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') SKIP(305) END_STATE(); case 171: - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (lookahead == '\n') ADVANCE(924); END_STATE(); case 172: - if (lookahead == '\n') ADVANCE(669); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (lookahead == '\n') ADVANCE(914); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(670); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (lookahead == '\n') ADVANCE(925); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(694); + if (lookahead == '!') ADVANCE(951); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(825); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(485); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 175: - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(695); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(374); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(175) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 176: - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(696); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(358); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(674); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(697); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(430); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 178: - if (lookahead == '\n') ADVANCE(675); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(570); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(332); + if (lookahead == '\n') ADVANCE(698); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(178) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(676); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(699); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(338); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(389); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(677); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(700); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(678); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '_') ADVANCE(899); - if (lookahead == 'i') ADVANCE(835); + if (lookahead == '\n') ADVANCE(701); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(679); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(702); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(359); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 183: - if (lookahead == '\n') ADVANCE(680); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(703); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(432); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(681); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(369); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(704); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(375); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(682); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(705); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 186: - if (lookahead == '\n') ADVANCE(683); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(706); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(381); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(433); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(866); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 187: - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(707); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(376); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 188: - if (lookahead == '\n') ADVANCE(685); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(708); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 189: - if (lookahead == '\n') ADVANCE(686); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(709); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(479); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(434); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 190: - if (lookahead == '\n') ADVANCE(687); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(710); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 191: - if (lookahead == '\n') ADVANCE(688); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(711); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(480); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(391); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 192: - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(712); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(382); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(435); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 193: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(481); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(713); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(399); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 194: - if (lookahead == '\n') ADVANCE(691); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(714); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(340); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); case 195: - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(571); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(715); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(436); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 196: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(341); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(716); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 197: - if (lookahead == '\n') ADVANCE(694); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(717); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(454); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(360); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 198: - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(718); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(437); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); case 199: - if (lookahead == '\n') ADVANCE(696); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(455); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(719); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 200: - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(720); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 201: - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(721); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(456); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(512); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); case 202: - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(371); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(722); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(378); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 203: - if (lookahead == '\n') ADVANCE(700); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(723); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(457); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(825); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(361); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 204: - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(724); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(343); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(440); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 205: - if (lookahead == '\n') ADVANCE(702); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(459); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(725); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 206: - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(726); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(384); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(362); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 207: - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(727); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(458); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(513); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 208: - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(571); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(332); + if (lookahead == '\n') ADVANCE(728); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(407); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(354); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(208) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 209: - if (lookahead == '\n') ADVANCE(706); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(729); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(461); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(411); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 210: - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(730); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(514); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 211: - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(462); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(731); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(383); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'i') ADVANCE(876); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 212: - if (lookahead == '\n') ADVANCE(709); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(392); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 213: - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(733); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(460); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(442); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 214: - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(734); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(473); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(363); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 215: - if (lookahead == '\n') ADVANCE(712); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(735); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(474); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(487); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 216: - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(736); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(475); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(412); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 217: - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '\n') ADVANCE(737); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(421); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(488); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(217) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 218: - if (lookahead == '\n') ADVANCE(715); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(571); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '\n') ADVANCE(738); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(465); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(332); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 219: - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '\n') ADVANCE(739); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(429); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(489); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 220: - if (lookahead == '\n') ADVANCE(717); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '\n') ADVANCE(740); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(471); - if (lookahead == '`') ADVANCE(815); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(393); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 221: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(612); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(729); - if (lookahead == ',') ADVANCE(520); - if (lookahead == '-') ADVANCE(727); - if (lookahead == '/') ADVANCE(607); - if (lookahead == '0') ADVANCE(895); - if (lookahead == ':') ADVANCE(724); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(526); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(558); - if (lookahead == '_') ADVANCE(897); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'i') ADVANCE(906); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '}') ADVANCE(777); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '\n') ADVANCE(741); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(490); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(866); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(221) - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); case 222: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(742); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(366); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(222) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(832); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 223: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(743); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(392); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(493); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(223) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 224: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(579); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(584); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(744); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(451); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(414); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(224) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ';') ADVANCE(909); + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 225: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(579); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(584); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(745); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(491); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 226: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ':') ADVANCE(724); - if (lookahead == '<') ADVANCE(579); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(584); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); + lookahead == '}') ADVANCE(786); if (lookahead == '\\') ADVANCE(395); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(354); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 227: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(579); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(584); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(450); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(494); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 228: - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(579); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(584); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '\n') ADVANCE(748); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(472); - if (lookahead == ']') ADVANCE(746); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(377); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != '|') ADVANCE(958); END_STATE(); case 229: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 230: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(342); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 231: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(492); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 232: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(496); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 233: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(753); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(507); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); case 234: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(385); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(508); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 235: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(451); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != '|') ADVANCE(958); END_STATE(); case 236: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(756); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(497); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(354); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 237: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(306); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(388); - if (lookahead == ']' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(553); + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(459); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(958); END_STATE(); case 238: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == ']' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(554); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(503); + if (lookahead == '`') ADVANCE(856); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ';') ADVANCE(909); + lookahead != ')' && + lookahead != '|') ADVANCE(958); END_STATE(); case 239: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '}') ADVANCE(745); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(647); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(770); + if (lookahead == ',') ADVANCE(557); + if (lookahead == '-') ADVANCE(768); + if (lookahead == '/') ADVANCE(642); + if (lookahead == '0') ADVANCE(944); + if (lookahead == ':') ADVANCE(765); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(563); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(417); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(595); + if (lookahead == '_') ADVANCE(946); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == 'i') ADVANCE(955); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(592); + if (lookahead == '}') ADVANCE(818); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 240: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == ']' || + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(356); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 241: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(306); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(393); - if (lookahead == ']' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == '{') ADVANCE(631); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(422); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(592); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 242: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == ']') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '}') ADVANCE(632); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(619); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(425); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 243: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(619); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(419); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(484); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 244: - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '0') ADVANCE(763); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ':') ADVANCE(765); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(619); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '~') ADVANCE(731); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(426); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 245: - if (lookahead == '!') ADVANCE(902); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(619); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(555); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(483); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 246: - if (lookahead == '!') ADVANCE(902); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(619); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(453); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(505); + if (lookahead == ']') ADVANCE(787); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 247: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(372); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 248: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(347); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(364); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 249: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(394); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 250: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(346); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(365); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 251: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == ']') ADVANCE(325); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(368); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 252: - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(413); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 253: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(744); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '.') ADVANCE(319); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == ';') ADVANCE(306); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(417) - if (lookahead == ']') ADVANCE(746); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(330); - if (lookahead == 'i') ADVANCE(329); - if (lookahead == '|') ADVANCE(557); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(415); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(254) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(734); + lookahead == ' ') SKIP(253) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 254: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(744); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == ';') ADVANCE(306); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(417) - if (lookahead == ']') ADVANCE(746); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(330); - if (lookahead == 'i') ADVANCE(329); - if (lookahead == '|') ADVANCE(557); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(380); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 255: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(314); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(418) - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(328); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(418); + if (lookahead == ']' || + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); case 256: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '\\') SKIP(427) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '}') ADVANCE(737); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(419); + if (lookahead == ']' || + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(591); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257) + lookahead == ' ') SKIP(256) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ';') ADVANCE(958); END_STATE(); case 257: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '\\') SKIP(427) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(420); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '}') ADVANCE(786); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 258: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '[' || - lookahead == ']' || + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(429); + if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(423) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(557); + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 259: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '[') ADVANCE(638); - if (lookahead == '\\') SKIP(428) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(328); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == ']' || + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == '{') ADVANCE(666); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(958); END_STATE(); case 260: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(422) - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(424); + if (lookahead == ']') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '}') ADVANCE(667); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 261: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '[') ADVANCE(638); - if (lookahead == '\\') SKIP(424) - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(557); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(449); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 262: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(804); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(420) - if (lookahead == ']') ADVANCE(746); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(557); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(441); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 263: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '\\') SKIP(470) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(951); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(428); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 264: - if (lookahead == '!') ADVANCE(322); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); + if (lookahead == '!') ADVANCE(951); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(469) - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(557); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(486); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 265: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(370); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 266: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(397); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 267: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(553); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(369); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(267) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 268: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '\n' || - lookahead == '\r') SKIP(268) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(752); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(367); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(268) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); - if (lookahead != 0 && - lookahead != '`') ADVANCE(757); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 269: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == ']') ADVANCE(347); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 270: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(744); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '(') ADVANCE(618); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '/') ADVANCE(606); - if (lookahead == '0') ADVANCE(767); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(577); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(745); - if (lookahead == '\\') SKIP(434) - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (lookahead == '}') ADVANCE(777); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(371); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(270) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(769); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(838); - END_STATE(); - case 271: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '\n' || - lookahead == '\r') SKIP(271) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(753); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(757); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 271: + if (lookahead == '!') ADVANCE(344); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ':') ADVANCE(762); + if (lookahead == ';') ADVANCE(328); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(447) + if (lookahead == ']') ADVANCE(347); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(352); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(272) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(775); END_STATE(); case 272: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ':') ADVANCE(762); + if (lookahead == ';') ADVANCE(328); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(447) + if (lookahead == ']') ADVANCE(347); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(352); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); END_STATE(); case 273: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(743); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') SKIP(438) - if (lookahead == '_') ADVANCE(899); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(336); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(448) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(273) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 274: - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(743); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') SKIP(444) - if (lookahead == '_') ADVANCE(899); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(635); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(502) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); END_STATE(); case 275: - if (lookahead == '!') ADVANCE(778); - if (lookahead == '#') ADVANCE(784); - if (lookahead == '$') ADVANCE(743); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '=') ADVANCE(785); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') SKIP(438) - if (lookahead == '_') ADVANCE(899); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(457) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(273) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + lookahead == ' ') SKIP(275) END_STATE(); case 276: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == ']' || + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(452) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(909); END_STATE(); case 277: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(467); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(553); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(454) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ';') ADVANCE(909); END_STATE(); case 278: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(478); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(553); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(450) + if (lookahead == ']') ADVANCE(787); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ';') ADVANCE(909); END_STATE(); case 279: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(635); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(458) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '|') ADVANCE(594); + if (lookahead == '}') ADVANCE(778); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(279) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ';') ADVANCE(909); + lookahead == ' ') SKIP(280) END_STATE(); case 280: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == ',') ADVANCE(556); + if (lookahead == '-') ADVANCE(635); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(458) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(280) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); END_STATE(); case 281: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '!') ADVANCE(344); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(463); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(453) + if (lookahead == '^') ADVANCE(597); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); END_STATE(); case 282: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(477); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(379); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(282) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 283: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(414); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(382); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(283) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 284: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(466); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(402); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 285: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(476); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(285) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 286: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(482); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(384); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 287: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(287) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(386); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '\n' || + lookahead == '\r') SKIP(287) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(793); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != '`') ADVANCE(798); END_STATE(); case 288: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(468); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(385); + if (lookahead == '_') ADVANCE(948); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(288) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 289: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '(') ADVANCE(653); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '0') ADVANCE(808); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(464) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 290: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(464); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(290) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(387); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '\n' || + lookahead == '\r') SKIP(290) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(794); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(909); + lookahead != '"' && + lookahead != '`') ADVANCE(798); END_STATE(); case 291: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(745); - if (lookahead == '\\') ADVANCE(430); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(388); + if (lookahead == '_') ADVANCE(948); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 292: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(426); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(907); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(784); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') SKIP(467) + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(292) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 293: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(744); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '(') ADVANCE(618); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '+') ADVANCE(317); - if (lookahead == '-') ADVANCE(318); - if (lookahead == '0') ADVANCE(768); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '=') ADVANCE(522); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(439) - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(784); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') SKIP(476) + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(293) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(770); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(621); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 294: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(741); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(618); - if (lookahead == ')') ADVANCE(620); - if (lookahead == ';') ADVANCE(516); - if (lookahead == '<') ADVANCE(576); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '\\') ADVANCE(442); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(553); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '!') ADVANCE(819); + if (lookahead == '#') ADVANCE(825); + if (lookahead == '$') ADVANCE(784); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '=') ADVANCE(826); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') SKIP(467) + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(294) - if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead)) ADVANCE(909); + lookahead == ' ') SKIP(292) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 295: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '\\') SKIP(448) - if (lookahead == '}') ADVANCE(777); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(439); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(801); + lookahead == ' ') SKIP(295) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 296: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(822); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(431); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(500); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(296) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 297: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(822); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(433); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(814); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(511); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(909); + lookahead != ';') ADVANCE(958); END_STATE(); case 298: - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(756); - if (lookahead == '$') ADVANCE(742); - if (lookahead == '(') ADVANCE(755); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); if (lookahead == '\\') ADVANCE(445); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '\n' || - lookahead == '\r') SKIP(298) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(754); - if (lookahead != 0) ADVANCE(757); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(298) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ';') ADVANCE(958); END_STATE(); case 299: - if (lookahead == '#') ADVANCE(775); - if (lookahead == '%') ADVANCE(613); - if (lookahead == '*') ADVANCE(782); - if (lookahead == '+') ADVANCE(792); - if (lookahead == ',') ADVANCE(521); - if (lookahead == '-') ADVANCE(789); - if (lookahead == '/') ADVANCE(608); - if (lookahead == ':') ADVANCE(723); - if (lookahead == '=') ADVANCE(785); - if (lookahead == '?') ADVANCE(795); - if (lookahead == '@') ADVANCE(780); - if (lookahead == '[') ADVANCE(638); - if (lookahead == '\\') SKIP(432) - if (lookahead == '^') ADVANCE(561); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(438); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(300) + lookahead == ' ') SKIP(299) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 300: - if (lookahead == '#') ADVANCE(775); - if (lookahead == '%') ADVANCE(613); - if (lookahead == ',') ADVANCE(521); - if (lookahead == '/') ADVANCE(608); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '[') ADVANCE(638); - if (lookahead == '\\') SKIP(432) - if (lookahead == '^') ADVANCE(561); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(495); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(300) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 301: - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(331); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '-') ADVANCE(320); - if (lookahead == '0') ADVANCE(767); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(441) - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(510); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(301) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(769); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ';') ADVANCE(958); END_STATE(); case 302: - if (lookahead == '#') ADVANCE(821); - if (lookahead == '%') ADVANCE(611); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '+') ADVANCE(594); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '/') ADVANCE(606); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(570); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '\\') SKIP(446) - if (lookahead == '`') ADVANCE(326); - if (lookahead == '}') ADVANCE(777); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(444); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(302) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 303: - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(440); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '`') ADVANCE(326); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(499); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(303) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(909); + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 304: - if (lookahead == '#') ADVANCE(821); - if (lookahead == '+') ADVANCE(323); - if (lookahead == '=') ADVANCE(522); - if (lookahead == '[') ADVANCE(638); - if (lookahead == '\\') SKIP(449) + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(509); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 305: - if (lookahead == '&') ADVANCE(551); - if (lookahead == '>') ADVANCE(645); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(515); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(305) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 306: - if (lookahead == '&') ADVANCE(629); - if (lookahead == ';') ADVANCE(628); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(446); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(306) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 307: - if (lookahead == '\'') ADVANCE(759); - if (lookahead != 0) ADVANCE(307); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(501); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(307) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 308: - if (lookahead == '\'') ADVANCE(760); - if (lookahead == '\\') ADVANCE(309); - if (lookahead != 0) ADVANCE(308); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(443); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(308) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 309: - if (lookahead == '\'') ADVANCE(761); - if (lookahead == '\\') ADVANCE(309); - if (lookahead != 0) ADVANCE(308); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(498); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(309) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(958); END_STATE(); case 310: - if (lookahead == '(') ADVANCE(813); - if (lookahead == '[') ADVANCE(733); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(786); + if (lookahead == '\\') ADVANCE(460); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(310) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 311: - if (lookahead == '(') ADVANCE(514); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(456); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(956); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(311) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 312: - if (lookahead == '(') ADVANCE(817); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '(') ADVANCE(653); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '+') ADVANCE(339); + if (lookahead == '-') ADVANCE(340); + if (lookahead == '0') ADVANCE(809); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '=') ADVANCE(559); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(468) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(312) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(656); END_STATE(); case 313: - if (lookahead == '(') ADVANCE(818); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(782); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(653); + if (lookahead == ')') ADVANCE(655); + if (lookahead == ';') ADVANCE(553); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '\\') ADVANCE(474); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(590); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(313) + if (lookahead != 0 && + lookahead != '&' && + (lookahead < '[' || ']' < lookahead)) ADVANCE(958); END_STATE(); case 314: - if (lookahead == '(') ADVANCE(812); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(335); + if (lookahead == '%') ADVANCE(646); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '+') ADVANCE(629); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(641); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(786); + if (lookahead == '\\') SKIP(479) + if (lookahead == '`') ADVANCE(855); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(314) END_STATE(); case 315: - if (lookahead == ')') ADVANCE(515); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '\\') SKIP(481) + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(842); END_STATE(); case 316: - if (lookahead == '+') ADVANCE(527); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(863); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(461); + if (lookahead == '`') ADVANCE(855); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(316) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 317: - if (lookahead == '+') ADVANCE(527); - if (lookahead == '=') ADVANCE(531); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(863); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(463); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(855); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(317) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(958); END_STATE(); case 318: - if (lookahead == '-') ADVANCE(529); - if (lookahead == '0') ADVANCE(768); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(797); + if (lookahead == '$') ADVANCE(783); + if (lookahead == '(') ADVANCE(796); + if (lookahead == '\\') ADVANCE(477); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '\n' || + lookahead == '\r') SKIP(318) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(795); + if (lookahead != 0) ADVANCE(798); END_STATE(); case 319: - if (lookahead == '.') ADVANCE(735); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '%') ADVANCE(648); + if (lookahead == '*') ADVANCE(823); + if (lookahead == '+') ADVANCE(833); + if (lookahead == ',') ADVANCE(558); + if (lookahead == '-') ADVANCE(830); + if (lookahead == '/') ADVANCE(643); + if (lookahead == ':') ADVANCE(764); + if (lookahead == '=') ADVANCE(826); + if (lookahead == '?') ADVANCE(836); + if (lookahead == '@') ADVANCE(821); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(462) + if (lookahead == '^') ADVANCE(598); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320) END_STATE(); case 320: - if (lookahead == '0') ADVANCE(768); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '%') ADVANCE(648); + if (lookahead == ',') ADVANCE(558); + if (lookahead == '/') ADVANCE(643); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(462) + if (lookahead == '^') ADVANCE(598); + if (lookahead == '}') ADVANCE(818); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320) END_STATE(); case 321: - if (lookahead == '<') ADVANCE(718); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(353); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(808); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(470) + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(321) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(568); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '%') ADVANCE(646); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '+') ADVANCE(629); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(641); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(472) + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(322) END_STATE(); case 323: - if (lookahead == '=') ADVANCE(531); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(478); + if (lookahead == '{') ADVANCE(666); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(323) + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + lookahead != '`' && + lookahead != '|' && + lookahead != '}') ADVANCE(958); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(645); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(469); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(324) + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';') ADVANCE(958); END_STATE(); case 325: - if (lookahead == ']') ADVANCE(642); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(473) + if (lookahead == '`') ADVANCE(348); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(325) END_STATE(); case 326: - if (lookahead == '`') ADVANCE(738); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '+') ADVANCE(345); + if (lookahead == '/') ADVANCE(641); + if (lookahead == '=') ADVANCE(559); + if (lookahead == '[') ADVANCE(673); + if (lookahead == '\\') SKIP(482) + if (lookahead == '`') ADVANCE(348); + if (lookahead == '}') ADVANCE(818); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(326); + lookahead == ' ') SKIP(326) END_STATE(); case 327: - if (lookahead == 'a') ADVANCE(328); + if (lookahead == '&') ADVANCE(588); + if (lookahead == '>') ADVANCE(680); END_STATE(); case 328: - if (lookahead == 'c') ADVANCE(622); + if (lookahead == '&') ADVANCE(664); + if (lookahead == ';') ADVANCE(663); END_STATE(); case 329: - if (lookahead == 'n') ADVANCE(511); + if (lookahead == '\'') ADVANCE(800); + if (lookahead != 0) ADVANCE(329); END_STATE(); case 330: - if (lookahead == 's') ADVANCE(327); + if (lookahead == '\'') ADVANCE(801); + if (lookahead == '\\') ADVANCE(331); + if (lookahead != 0) ADVANCE(330); END_STATE(); case 331: - if (lookahead == '{') ADVANCE(776); + if (lookahead == '\'') ADVANCE(802); + if (lookahead == '\\') ADVANCE(331); + if (lookahead != 0) ADVANCE(330); END_STATE(); case 332: - if (lookahead == '|') ADVANCE(549); + if (lookahead == '(') ADVANCE(551); END_STATE(); case 333: + if (lookahead == '(') ADVANCE(858); + END_STATE(); + case 334: + if (lookahead == '(') ADVANCE(859); + END_STATE(); + case 335: + if (lookahead == '(') ADVANCE(853); + if (lookahead == '`') ADVANCE(857); + END_STATE(); + case 336: + if (lookahead == '(') ADVANCE(853); + if (lookahead == '`') ADVANCE(857); + if (lookahead == '{') ADVANCE(817); + END_STATE(); + case 337: + if (lookahead == ')') ADVANCE(552); + END_STATE(); + case 338: + if (lookahead == '+') ADVANCE(564); + END_STATE(); + case 339: + if (lookahead == '+') ADVANCE(564); + if (lookahead == '=') ADVANCE(568); + END_STATE(); + case 340: + if (lookahead == '-') ADVANCE(566); + if (lookahead == '0') ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); + END_STATE(); + case 341: + if (lookahead == '.') ADVANCE(776); + END_STATE(); + case 342: + if (lookahead == '0') ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); + END_STATE(); + case 343: + if (lookahead == '<') ADVANCE(759); + END_STATE(); + case 344: + if (lookahead == '=') ADVANCE(605); + END_STATE(); + case 345: + if (lookahead == '=') ADVANCE(568); + END_STATE(); + case 346: + if (lookahead == '>') ADVANCE(680); + END_STATE(); + case 347: + if (lookahead == ']') ADVANCE(677); + END_STATE(); + case 348: + if (lookahead == '`') ADVANCE(779); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(348); + END_STATE(); + case 349: + if (lookahead == 'a') ADVANCE(350); + END_STATE(); + case 350: + if (lookahead == 'c') ADVANCE(657); + END_STATE(); + case 351: + if (lookahead == 'n') ADVANCE(548); + END_STATE(); + case 352: + if (lookahead == 's') ADVANCE(349); + END_STATE(); + case 353: + if (lookahead == '{') ADVANCE(817); + END_STATE(); + case 354: + if (lookahead == '|') ADVANCE(586); + END_STATE(); + case 355: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(839); + if (lookahead == '\n') ADVANCE(880); if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 334: + case 356: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(222) - if (lookahead == '\n') ADVANCE(871); + lookahead == ' ') SKIP(240) + if (lookahead == '\n') ADVANCE(918); if (lookahead == '\r') ADVANCE(17); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 335: + case 357: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(151) - if (lookahead == '\n') ADVANCE(841); + lookahead == ' ') SKIP(163) + if (lookahead == '\n') ADVANCE(882); if (lookahead == '\r') ADVANCE(24); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 336: + case 358: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(164) - if (lookahead == '\n') ADVANCE(843); + lookahead == ' ') SKIP(176) + if (lookahead == '\n') ADVANCE(884); if (lookahead == '\r') ADVANCE(26); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 337: + case 359: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(176) - if (lookahead == '\n') ADVANCE(851); - if (lookahead == '\r') ADVANCE(30); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(182) + if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\r') ADVANCE(27); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 338: + case 360: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(179) - if (lookahead == '\n') ADVANCE(853); + lookahead == ' ') SKIP(197) + if (lookahead == '\n') ADVANCE(898); if (lookahead == '\r') ADVANCE(31); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 339: + case 361: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(188) - if (lookahead == '\n') ADVANCE(858); + lookahead == ' ') SKIP(203) + if (lookahead == '\n') ADVANCE(902); if (lookahead == '\r') ADVANCE(36); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 340: + case 362: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(194) - if (lookahead == '\n') ADVANCE(861); + lookahead == ' ') SKIP(206) + if (lookahead == '\n') ADVANCE(904); if (lookahead == '\r') ADVANCE(38); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 341: + case 363: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(196) - if (lookahead == '\n') ADVANCE(862); + lookahead == ' ') SKIP(214) + if (lookahead == '\n') ADVANCE(909); if (lookahead == '\r') ADVANCE(39); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 342: + case 364: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(230) - if (lookahead == '\n') ADVANCE(873); - if (lookahead == '\r') ADVANCE(40); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(248) + if (lookahead == '\n') ADVANCE(920); + if (lookahead == '\r') ADVANCE(41); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 343: + case 365: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(204) - if (lookahead == '\n') ADVANCE(866); - if (lookahead == '\r') ADVANCE(45); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(250) + if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\r') ADVANCE(44); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 344: + case 366: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(232) - if (lookahead == '\n') ADVANCE(875); + lookahead == ' ') SKIP(222) + if (lookahead == '\n') ADVANCE(913); if (lookahead == '\r') ADVANCE(46); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 345: + case 367: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(233) - if (lookahead == '\n') ADVANCE(876); + lookahead == ' ') SKIP(268) + if (lookahead == '\n') ADVANCE(930); if (lookahead == '\r') ADVANCE(47); - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 346: + case 368: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(250) - if (lookahead == '\n') ADVANCE(883); - if (lookahead == '\r') ADVANCE(49); + lookahead == ' ') SKIP(251) + if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\r') ADVANCE(48); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 347: + case 369: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(248) - if (lookahead == '\n') ADVANCE(881); - if (lookahead == '\r') ADVANCE(50); + lookahead == ' ') SKIP(267) + if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\r') ADVANCE(49); END_STATE(); - case 348: + case 370: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(249) - if (lookahead == '\n') ADVANCE(882); + lookahead == ' ') SKIP(265) + if (lookahead == '\n') ADVANCE(927); if (lookahead == '\r') ADVANCE(51); END_STATE(); - case 349: + case 371: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(252) - if (lookahead == '\n') ADVANCE(885); - if (lookahead == '\r') ADVANCE(54); + lookahead == ' ') SKIP(270) + if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\r') ADVANCE(52); END_STATE(); - case 350: + case 372: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(229) - if (lookahead == '\n') ADVANCE(872); + lookahead == ' ') SKIP(247) + if (lookahead == '\n') ADVANCE(919); if (lookahead == '\r') ADVANCE(56); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 351: + case 373: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(141) - if (lookahead == '\n') ADVANCE(840); + lookahead == ' ') SKIP(150) + if (lookahead == '\n') ADVANCE(881); if (lookahead == '\r') ADVANCE(62); END_STATE(); - case 352: + case 374: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(163) - if (lookahead == '\n') ADVANCE(842); + lookahead == ' ') SKIP(175) + if (lookahead == '\n') ADVANCE(883); if (lookahead == '\r') ADVANCE(71); END_STATE(); - case 353: + case 375: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(166) - if (lookahead == '\n') ADVANCE(844); - if (lookahead == '\r') ADVANCE(74); + lookahead == ' ') SKIP(184) + if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\r') ADVANCE(75); END_STATE(); - case 354: + case 376: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(169) - if (lookahead == '\n') ADVANCE(846); - if (lookahead == '\r') ADVANCE(75); + lookahead == ' ') SKIP(187) + if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\r') ADVANCE(76); END_STATE(); - case 355: + case 377: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(210) - if (lookahead == '\n') ADVANCE(869); - if (lookahead == '\r') ADVANCE(79); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(228) + if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\r') ADVANCE(77); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 356: + case 378: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(175) - if (lookahead == '\n') ADVANCE(850); - if (lookahead == '\r') ADVANCE(81); + lookahead == ' ') SKIP(202) + if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\r') ADVANCE(82); END_STATE(); - case 357: + case 379: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(236) - if (lookahead == '\n') ADVANCE(879); + lookahead == ' ') SKIP(282) + if (lookahead == '\n') ADVANCE(933); if (lookahead == '\r') ADVANCE(83); - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 358: + case 380: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(212) - if (lookahead == '\n') ADVANCE(870); + lookahead == ' ') SKIP(254) + if (lookahead == '\n') ADVANCE(926); if (lookahead == '\r') ADVANCE(84); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 359: + case 381: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(265) - if (lookahead == '\n') ADVANCE(886); + lookahead == ' ') SKIP(230) + if (lookahead == '\n') ADVANCE(917); if (lookahead == '\r') ADVANCE(85); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 360: + case 382: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(266) - if (lookahead == '\n') ADVANCE(887); + lookahead == ' ') SKIP(283) + if (lookahead == '\n') ADVANCE(934); if (lookahead == '\r') ADVANCE(86); END_STATE(); - case 361: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(181) - if (lookahead == '\n') ADVANCE(854); - if (lookahead == '\r') ADVANCE(96); - END_STATE(); - case 362: + case 383: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(267) - if (lookahead == '\n') ADVANCE(888); + lookahead == ' ') SKIP(211) + if (lookahead == '\n') ADVANCE(907); if (lookahead == '\r') ADVANCE(99); END_STATE(); - case 363: + case 384: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(269) - if (lookahead == '\n') ADVANCE(889); - if (lookahead == '\r') ADVANCE(100); + lookahead == ' ') SKIP(286) + if (lookahead == '\n') ADVANCE(937); + if (lookahead == '\r') ADVANCE(102); END_STATE(); - case 364: + case 385: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(752); - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\r') ADVANCE(749); - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') SKIP(288) + if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\r') ADVANCE(103); END_STATE(); - case 365: + case 386: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(753); - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\r') ADVANCE(750); - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') ADVANCE(793); + if (lookahead == '\n') ADVANCE(793); + if (lookahead == '\r') ADVANCE(790); + if (lookahead != 0) ADVANCE(798); END_STATE(); - case 366: + case 387: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(272) - if (lookahead == '\n') ADVANCE(890); - if (lookahead == '\r') ADVANCE(101); + lookahead == ' ') ADVANCE(794); + if (lookahead == '\n') ADVANCE(794); + if (lookahead == '\r') ADVANCE(791); + if (lookahead != 0) ADVANCE(798); END_STATE(); - case 367: + case 388: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(167) - if (lookahead == '\n') ADVANCE(845); - if (lookahead == '\r') ADVANCE(114); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(291) + if (lookahead == '\n') ADVANCE(939); + if (lookahead == '\r') ADVANCE(104); END_STATE(); - case 368: + case 389: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(170) - if (lookahead == '\n') ADVANCE(847); - if (lookahead == '\r') ADVANCE(116); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(179) + if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\r') ADVANCE(118); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 369: + case 390: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(184) - if (lookahead == '\n') ADVANCE(856); + lookahead == ' ') SKIP(185) + if (lookahead == '\n') ADVANCE(890); if (lookahead == '\r') ADVANCE(120); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 370: + case 391: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(190) - if (lookahead == '\n') ADVANCE(859); - if (lookahead == '\r') ADVANCE(124); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(191) + if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\r') ADVANCE(121); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 371: + case 392: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(202) - if (lookahead == '\n') ADVANCE(865); - if (lookahead == '\r') ADVANCE(125); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(212) + if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\r') ADVANCE(128); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 372: + case 393: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(231) - if (lookahead == '\n') ADVANCE(874); - if (lookahead == '\r') ADVANCE(126); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(220) + if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\r') ADVANCE(129); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 373: + case 394: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(208) - if (lookahead == '\n') ADVANCE(868); + lookahead == ' ') SKIP(249) + if (lookahead == '\n') ADVANCE(921); if (lookahead == '\r') ADVANCE(131); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 374: + case 395: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(251) - if (lookahead == '\n') ADVANCE(884); - if (lookahead == '\r') ADVANCE(133); + lookahead == ' ') SKIP(226) + if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\r') ADVANCE(135); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 375: + case 396: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(247) - if (lookahead == '\n') ADVANCE(880); - if (lookahead == '\r') ADVANCE(134); + lookahead == ' ') SKIP(269) + if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\r') ADVANCE(136); END_STATE(); - case 376: + case 397: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(172) - if (lookahead == '\n') ADVANCE(848); - if (lookahead == '\r') ADVANCE(136); + lookahead == ' ') SKIP(266) + if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\r') ADVANCE(138); END_STATE(); - case 377: + case 398: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(178) - if (lookahead == '\n') ADVANCE(852); - if (lookahead == '\r') ADVANCE(139); + lookahead == ' ') SKIP(181) + if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\r') ADVANCE(140); END_STATE(); - case 378: + case 399: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(173) - if (lookahead == '\n') ADVANCE(849); + lookahead == ' ') SKIP(193) + if (lookahead == '\n') ADVANCE(895); if (lookahead == '\r') ADVANCE(142); - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 379: + case 400: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(200) - if (lookahead == '\n') ADVANCE(864); + lookahead == ' ') SKIP(199) + if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\r') ADVANCE(143); + END_STATE(); + case 401: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(205) + if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\r') ADVANCE(145); + END_STATE(); + case 402: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(284) + if (lookahead == '\n') ADVANCE(935); if (lookahead == '\r') ADVANCE(146); - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 380: + case 403: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(182) - if (lookahead == '\n') ADVANCE(855); - if (lookahead == '\r') ADVANCE(149); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(285) + if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\r') ADVANCE(147); END_STATE(); - case 381: + case 404: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(186) - if (lookahead == '\n') ADVANCE(857); - if (lookahead == '\r') ADVANCE(153); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(188) + if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\r') ADVANCE(151); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 382: + case 405: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(192) - if (lookahead == '\n') ADVANCE(860); - if (lookahead == '\r') ADVANCE(156); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(218) + if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\r') ADVANCE(155); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 383: + case 406: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(198) - if (lookahead == '\n') ADVANCE(863); - if (lookahead == '\r') ADVANCE(157); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(190) + if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\r') ADVANCE(158); END_STATE(); - case 384: + case 407: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(206) - if (lookahead == '\n') ADVANCE(867); + lookahead == ' ') SKIP(208) + if (lookahead == '\n') ADVANCE(905); if (lookahead == '\r') ADVANCE(159); - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 385: + case 408: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(234) - if (lookahead == '\n') ADVANCE(877); + lookahead == ' ') SKIP(194) + if (lookahead == '\n') ADVANCE(896); if (lookahead == '\r') ADVANCE(160); - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 386: + case 409: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(235) - if (lookahead == '\n') ADVANCE(878); - if (lookahead == '\r') ADVANCE(161); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(196) + if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\r') ADVANCE(162); END_STATE(); - case 387: + case 410: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(200) + if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\r') ADVANCE(165); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 411: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(209) + if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\r') ADVANCE(168); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 412: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(216) + if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\r') ADVANCE(169); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 413: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(252) + if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\r') ADVANCE(171); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 414: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(224) + if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\r') ADVANCE(172); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 415: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(253) + if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\r') ADVANCE(173); + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 416: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(178) + if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\r') ADVANCE(139); + END_STATE(); + case 417: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(221) + lookahead == ' ') SKIP(239) if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 388: + case 418: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) + lookahead == ' ') SKIP(255) if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 389: + case 419: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238) + lookahead == ' ') SKIP(256) if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 390: + case 420: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239) + lookahead == ' ') SKIP(257) if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 391: + case 421: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(6) if (lookahead == '\r') SKIP(5) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 392: + case 422: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(223) + lookahead == ' ') SKIP(241) if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 393: + case 423: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) + lookahead == ' ') SKIP(259) if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 394: + case 424: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) + lookahead == ' ') SKIP(260) if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 395: + case 425: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(226) + lookahead == ' ') SKIP(242) if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 396: + case 426: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(225) + lookahead == ' ') SKIP(244) if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 397: + case 427: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(108) + lookahead == ' ') SKIP(112) if (lookahead == '\r') SKIP(18) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 398: + case 428: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245) + lookahead == ' ') SKIP(263) if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 399: + case 429: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240) + lookahead == ' ') SKIP(258) if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 400: + case 430: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(165) + lookahead == ' ') SKIP(177) if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 401: + case 431: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(168) + lookahead == ' ') SKIP(180) if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 402: + case 432: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(171) + lookahead == ' ') SKIP(183) if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 403: + case 433: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) + lookahead == ' ') SKIP(186) if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(909); - END_STATE(); - case 404: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) - if (lookahead == '\r') SKIP(27) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 405: + case 434: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) + lookahead == ' ') SKIP(189) if (lookahead == '\r') SKIP(28) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 406: + case 435: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(183) + lookahead == ' ') SKIP(192) if (lookahead == '\r') SKIP(29) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 407: + case 436: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(185) + lookahead == ' ') SKIP(195) + if (lookahead == '\r') SKIP(30) + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 437: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(198) if (lookahead == '\r') SKIP(32) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 408: + case 438: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(276) + lookahead == ' ') SKIP(299) if (lookahead == '\r') SKIP(33) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 409: + case 439: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187) + lookahead == ' ') SKIP(295) if (lookahead == '\r') SKIP(34) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 410: + case 440: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(280) + lookahead == ' ') SKIP(204) if (lookahead == '\r') SKIP(35) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 411: + case 441: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244) + lookahead == ' ') SKIP(262) if (lookahead == '\r') SKIP(37) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 412: + case 442: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(289) - if (lookahead == '\r') SKIP(41) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(213) + if (lookahead == '\r') SKIP(40) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 413: + case 443: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(195) + lookahead == ' ') SKIP(308) if (lookahead == '\r') SKIP(42) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 414: + case 444: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(283) + lookahead == ' ') SKIP(302) if (lookahead == '\r') SKIP(43) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 415: + case 445: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(279) - if (lookahead == '\r') SKIP(44) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(298) + if (lookahead == '\r') SKIP(45) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 416: + case 446: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(287) - if (lookahead == '\r') SKIP(48) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(306) + if (lookahead == '\r') SKIP(50) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 417: + case 447: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (lookahead == '\r') SKIP(52) + lookahead == ' ') SKIP(272) + if (lookahead == '\r') SKIP(53) END_STATE(); - case 418: + case 448: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255) - if (lookahead == '\r') SKIP(53) + lookahead == ' ') SKIP(273) + if (lookahead == '\r') SKIP(54) END_STATE(); - case 419: + case 449: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243) + lookahead == ' ') SKIP(261) if (lookahead == '\r') SKIP(55) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 420: + case 450: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) + lookahead == ' ') SKIP(278) if (lookahead == '\r') SKIP(57) END_STATE(); - case 421: + case 451: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(217) + lookahead == ' ') SKIP(235) if (lookahead == '\r') SKIP(58) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 422: + case 452: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260) + lookahead == ' ') SKIP(276) if (lookahead == '\r') SKIP(59) END_STATE(); - case 423: + case 453: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) + lookahead == ' ') SKIP(281) if (lookahead == '\r') SKIP(60) END_STATE(); - case 424: + case 454: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261) + lookahead == ' ') SKIP(277) if (lookahead == '\r') SKIP(61) END_STATE(); - case 425: + case 455: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(64) if (lookahead == '\r') SKIP(63) END_STATE(); - case 426: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292) - if (lookahead == '\r') SKIP(70) - if (lookahead != 0) ADVANCE(909); - END_STATE(); - case 427: + case 456: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257) + lookahead == ' ') SKIP(311) if (lookahead == '\r') SKIP(72) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 428: + case 457: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259) + lookahead == ' ') SKIP(275) if (lookahead == '\r') SKIP(73) END_STATE(); - case 429: + case 458: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) - if (lookahead == '\r') SKIP(76) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(280) + if (lookahead == '\r') SKIP(74) END_STATE(); - case 430: + case 459: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(291) - if (lookahead == '\r') SKIP(77) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(237) + if (lookahead == '\r') SKIP(78) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 431: + case 460: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(296) - if (lookahead == '\r') SKIP(78) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(310) + if (lookahead == '\r') SKIP(79) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 432: + case 461: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(300) + lookahead == ' ') SKIP(316) if (lookahead == '\r') SKIP(80) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 433: + case 462: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(297) - if (lookahead == '\r') SKIP(82) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(320) + if (lookahead == '\r') SKIP(81) END_STATE(); - case 434: + case 463: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(270) + lookahead == ' ') SKIP(317) if (lookahead == '\r') SKIP(87) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 435: + case 464: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(67) + lookahead == ' ') SKIP(289) if (lookahead == '\r') SKIP(88) END_STATE(); - case 436: + case 465: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(65) if (lookahead == '\r') SKIP(89) END_STATE(); - case 437: + case 466: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(67) if (lookahead == '\r') SKIP(90) END_STATE(); - case 438: + case 467: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(273) + lookahead == ' ') SKIP(292) if (lookahead == '\r') SKIP(91) END_STATE(); - case 439: + case 468: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(293) + lookahead == ' ') SKIP(312) if (lookahead == '\r') SKIP(92) END_STATE(); - case 440: + case 469: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(303) + lookahead == ' ') SKIP(324) if (lookahead == '\r') SKIP(93) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 441: + case 470: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(301) + lookahead == ' ') SKIP(321) if (lookahead == '\r') SKIP(94) END_STATE(); - case 442: + case 471: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(294) + lookahead == ' ') SKIP(66) if (lookahead == '\r') SKIP(95) - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 443: + case 472: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(68) - if (lookahead == '\r') SKIP(97) + lookahead == ' ') SKIP(322) + if (lookahead == '\r') SKIP(96) END_STATE(); - case 444: + case 473: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(274) - if (lookahead == '\r') SKIP(98) + lookahead == ' ') SKIP(325) + if (lookahead == '\r') SKIP(97) END_STATE(); - case 445: + case 474: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(754); - if (lookahead == '\r') ADVANCE(748); - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') SKIP(313) + if (lookahead == '\r') SKIP(98) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 446: + case 475: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(302) - if (lookahead == '\r') SKIP(102) + lookahead == ' ') SKIP(69) + if (lookahead == '\r') SKIP(100) END_STATE(); - case 447: + case 476: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(69) - if (lookahead == '\r') SKIP(103) + lookahead == ' ') SKIP(293) + if (lookahead == '\r') SKIP(101) END_STATE(); - case 448: + case 477: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295) - if (lookahead == '\r') SKIP(104) + lookahead == ' ') ADVANCE(795); + if (lookahead == '\r') ADVANCE(789); + if (lookahead != 0) ADVANCE(798); END_STATE(); - case 449: + case 478: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(304) + lookahead == ' ') SKIP(323) if (lookahead == '\r') SKIP(105) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 450: + case 479: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(227) + lookahead == ' ') SKIP(314) if (lookahead == '\r') SKIP(106) - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 451: + case 480: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(224) + lookahead == ' ') SKIP(70) if (lookahead == '\r') SKIP(107) - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 452: + case 481: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(315) + if (lookahead == '\r') SKIP(108) + END_STATE(); + case 482: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(162) + lookahead == ' ') SKIP(326) if (lookahead == '\r') SKIP(109) - if (lookahead != 0) ADVANCE(909); END_STATE(); - case 453: + case 483: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) + lookahead == ' ') SKIP(245) if (lookahead == '\r') SKIP(110) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 454: + case 484: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(197) + lookahead == ' ') SKIP(243) if (lookahead == '\r') SKIP(111) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 455: + case 485: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(199) - if (lookahead == '\r') SKIP(112) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(174) + if (lookahead == '\r') SKIP(113) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 456: + case 486: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(201) - if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(264) + if (lookahead == '\r') SKIP(114) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 457: + case 487: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(203) + lookahead == ' ') SKIP(215) if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 458: + case 488: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(207) - if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(217) + if (lookahead == '\r') SKIP(116) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 459: + case 489: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(205) - if (lookahead == '\r') SKIP(118) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(219) + if (lookahead == '\r') SKIP(117) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 460: + case 490: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(213) + lookahead == ' ') SKIP(221) if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(909); - END_STATE(); - case 461: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(209) - if (lookahead == '\r') SKIP(121) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 462: + case 491: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(211) + lookahead == ' ') SKIP(225) if (lookahead == '\r') SKIP(122) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 463: + case 492: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281) + lookahead == ' ') SKIP(231) if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 464: + case 493: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(290) - if (lookahead == '\r') SKIP(127) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(223) + if (lookahead == '\r') SKIP(124) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 465: + case 494: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(218) - if (lookahead == '\r') SKIP(128) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(227) + if (lookahead == '\r') SKIP(125) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 466: + case 495: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(284) - if (lookahead == '\r') SKIP(129) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(300) + if (lookahead == '\r') SKIP(126) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 467: + case 496: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277) + lookahead == ' ') SKIP(232) + if (lookahead == '\r') SKIP(127) + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 497: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(236) if (lookahead == '\r') SKIP(130) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 468: + case 498: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(288) + lookahead == ' ') SKIP(309) if (lookahead == '\r') SKIP(132) - if (lookahead != 0) ADVANCE(909); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 469: + case 499: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264) - if (lookahead == '\r') SKIP(135) + lookahead == ' ') SKIP(303) + if (lookahead == '\r') SKIP(133) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 470: + case 500: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(263) + lookahead == ' ') SKIP(296) + if (lookahead == '\r') SKIP(134) + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 501: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(307) if (lookahead == '\r') SKIP(137) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 471: + case 502: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220) - if (lookahead == '\r') SKIP(138) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(274) + if (lookahead == '\r') SKIP(141) END_STATE(); - case 472: + case 503: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(228) - if (lookahead == '\r') SKIP(140) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(238) + if (lookahead == '\r') SKIP(144) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 473: + case 504: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(214) - if (lookahead == '\r') SKIP(143) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(68) + if (lookahead == '\r') SKIP(148) END_STATE(); - case 474: + case 505: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(215) - if (lookahead == '\r') SKIP(144) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(246) + if (lookahead == '\r') SKIP(149) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 475: + case 506: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(216) - if (lookahead == '\r') SKIP(145) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(229) + if (lookahead == '\r') SKIP(152) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 476: + case 507: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(285) - if (lookahead == '\r') SKIP(147) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(233) + if (lookahead == '\r') SKIP(153) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 477: + case 508: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(282) - if (lookahead == '\r') SKIP(148) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(234) + if (lookahead == '\r') SKIP(154) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 478: + case 509: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(278) - if (lookahead == '\r') SKIP(150) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(304) + if (lookahead == '\r') SKIP(156) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 479: + case 510: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189) - if (lookahead == '\r') SKIP(152) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(301) + if (lookahead == '\r') SKIP(157) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 480: + case 511: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(191) - if (lookahead == '\r') SKIP(154) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(297) + if (lookahead == '\r') SKIP(161) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 481: + case 512: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(193) - if (lookahead == '\r') SKIP(155) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(201) + if (lookahead == '\r') SKIP(164) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 482: + case 513: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(286) - if (lookahead == '\r') SKIP(158) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(207) + if (lookahead == '\r') SKIP(166) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 483: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + case 514: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(210) + if (lookahead == '\r') SKIP(167) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 484: + case 515: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(305) + if (lookahead == '\r') SKIP(170) + if (lookahead != 0) ADVANCE(958); + END_STATE(); + case 516: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); + END_STATE(); + case 517: if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(909); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(958); END_STATE(); - case 485: + case 518: if (lookahead != 0 && - lookahead != '\r') ADVANCE(757); - if (lookahead == '\r') ADVANCE(758); + lookahead != '\r') ADVANCE(798); + if (lookahead == '\r') ADVANCE(799); END_STATE(); - case 486: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(310); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(320); - if (lookahead == '0') ADVANCE(767); - if (lookahead == ':') ADVANCE(721); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(577); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '\\') SKIP(508) - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); - if (lookahead == '}') ADVANCE(777); + case 519: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(544) + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(486) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(769); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(838); + lookahead == ' ') SKIP(519) END_STATE(); - case 487: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ')') ADVANCE(620); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); + case 520: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(507) - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(546) + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(487) + lookahead == ' ') SKIP(520) END_STATE(); - case 488: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ')') ADVANCE(620); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); + case 521: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') SKIP(509) - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(543) + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(488) + lookahead == ' ') SKIP(521) END_STATE(); - case 489: - if (eof) ADVANCE(510); - if (lookahead == '\n') SKIP(487) + case 522: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') SKIP(545) + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(522) END_STATE(); - case 490: - if (eof) ADVANCE(510); - if (lookahead == '\n') SKIP(486) + case 523: + if (eof) ADVANCE(547); + if (lookahead == '\n') SKIP(521) END_STATE(); - case 491: - if (eof) ADVANCE(510); - if (lookahead == '\n') SKIP(488) + case 524: + if (eof) ADVANCE(547); + if (lookahead == '\n') SKIP(519) END_STATE(); - case 492: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(667); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + case 525: + if (eof) ADVANCE(547); + if (lookahead == '\n') SKIP(522) + END_STATE(); + case 526: + if (eof) ADVANCE(547); + if (lookahead == '\n') SKIP(520) + END_STATE(); + case 527: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(703); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(368); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(432); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(492) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead == ' ') SKIP(527) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 493: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); + case 528: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(705); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(493) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(528) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); - case 494: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(669); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + case 529: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(710); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(494) + lookahead == ' ') SKIP(529) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 495: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(679); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + case 530: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(712); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(435); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(495) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(530) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 496: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(680); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + case 531: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(714); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(496) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); + lookahead == ' ') SKIP(531) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); - case 497: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); + case 532: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(716); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(532) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 533: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(724); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(440); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(497) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(533) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 498: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(687); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + case 534: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(730); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(514); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(498) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead == ' ') SKIP(534) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 499: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + case 535: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(481); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(392); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(499) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(535) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')') ADVANCE(958); END_STATE(); - case 500: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + case 536: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(738); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(500) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(536) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')') ADVANCE(909); + lookahead != ')') ADVANCE(958); END_STATE(); - case 501: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); + case 537: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(739); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(456); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(489); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(501) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(537) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 502: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); + case 538: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(804); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(462); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(492); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(502) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(538) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 503: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(763); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + case 539: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(460); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(496); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(503) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(765); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(539) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 504: - if (eof) ADVANCE(510); - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); + case 540: + if (eof) ADVANCE(547); + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(745); - if (lookahead == '\\') ADVANCE(475); - if (lookahead == '`') ADVANCE(815); - if (lookahead == '|') ADVANCE(556); + lookahead == '}') ADVANCE(786); + if (lookahead == '\\') ADVANCE(508); + if (lookahead == '`') ADVANCE(856); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(504) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(540) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 505: - if (eof) ADVANCE(510); - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(612); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(729); - if (lookahead == ',') ADVANCE(520); - if (lookahead == '-') ADVANCE(727); - if (lookahead == '/') ADVANCE(607); - if (lookahead == '0') ADVANCE(895); - if (lookahead == ':') ADVANCE(724); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(526); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(558); - if (lookahead == '_') ADVANCE(897); - if (lookahead == '`') ADVANCE(815); - if (lookahead == 'e') ADVANCE(907); - if (lookahead == 'i') ADVANCE(906); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '}') ADVANCE(777); - if (lookahead == '~') ADVANCE(731); + case 541: + if (eof) ADVANCE(547); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(647); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(770); + if (lookahead == ',') ADVANCE(557); + if (lookahead == '-') ADVANCE(768); + if (lookahead == '/') ADVANCE(642); + if (lookahead == '0') ADVANCE(944); + if (lookahead == ':') ADVANCE(765); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(563); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(417); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(595); + if (lookahead == '_') ADVANCE(946); + if (lookahead == '`') ADVANCE(856); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == 'i') ADVANCE(955); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(592); + if (lookahead == '}') ADVANCE(818); + if (lookahead == '~') ADVANCE(772); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(505) - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(541) + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 506: - if (eof) ADVANCE(510); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(821); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '-') ADVANCE(901); - if (lookahead == '0') ADVANCE(762); - if (lookahead == ';') ADVANCE(306); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '[') ADVANCE(639); - if (lookahead == '\\') ADVANCE(388); + case 542: + if (eof) ADVANCE(547); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(862); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '-') ADVANCE(950); + if (lookahead == '0') ADVANCE(803); + if (lookahead == ';') ADVANCE(328); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '[') ADVANCE(674); + if (lookahead == '\\') ADVANCE(418); if (lookahead == ']' || - lookahead == '}') ADVANCE(745); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '|') ADVANCE(553); + lookahead == '}') ADVANCE(786); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '{') ADVANCE(666); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(506) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (lookahead != 0) ADVANCE(909); + lookahead == ' ') SKIP(542) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead != 0) ADVANCE(958); END_STATE(); - case 507: - if (eof) ADVANCE(510); + case 543: + if (eof) ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(487) - if (lookahead == '\r') SKIP(489) + lookahead == ' ') SKIP(521) + if (lookahead == '\r') SKIP(523) END_STATE(); - case 508: - if (eof) ADVANCE(510); + case 544: + if (eof) ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(486) - if (lookahead == '\r') SKIP(490) + lookahead == ' ') SKIP(519) + if (lookahead == '\r') SKIP(524) END_STATE(); - case 509: - if (eof) ADVANCE(510); + case 545: + if (eof) ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(488) - if (lookahead == '\r') SKIP(491) + lookahead == ' ') SKIP(522) + if (lookahead == '\r') SKIP(525) END_STATE(); - case 510: + case 546: + if (eof) ADVANCE(547); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(520) + if (lookahead == '\r') SKIP(526) + END_STATE(); + case 547: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 511: + case 548: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 512: + case 549: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 513: + case 550: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 514: + case 551: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 515: + case 552: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 516: + case 553: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 517: + case 554: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ';') ADVANCE(628); + if (lookahead == '&') ADVANCE(664); + if (lookahead == ';') ADVANCE(663); END_STATE(); - case 518: + case 555: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(627); + if (lookahead == ';') ADVANCE(662); END_STATE(); - case 519: + case 556: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 520: + case 557: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(809); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == ',') ADVANCE(850); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 521: + case 558: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(808); + if (lookahead == ',') ADVANCE(849); END_STATE(); - case 522: + case 559: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 523: + case 560: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(567); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == '~') ADVANCE(644); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(604); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == '~') ADVANCE(679); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 524: + case 561: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(566); + if (lookahead == '=') ADVANCE(603); END_STATE(); - case 525: + case 562: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(566); - if (lookahead == '~') ADVANCE(643); + if (lookahead == '=') ADVANCE(603); + if (lookahead == '~') ADVANCE(678); END_STATE(); - case 526: + case 563: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 527: + case 564: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 528: + case 565: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 529: + case 566: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 530: + case 567: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 531: + case 568: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 532: + case 569: ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 533: + case 570: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 534: + case 571: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 535: + case 572: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 536: + case 573: ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 537: + case 574: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 538: + case 575: ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 539: + case 576: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 540: + case 577: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 541: + case 578: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 542: + case 579: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 543: + case 580: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 544: + case 581: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 545: + case 582: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 546: + case 583: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 547: + case 584: ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 548: + case 585: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 549: + case 586: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 550: + case 587: ACCEPT_TOKEN(anon_sym_DASHo); END_STATE(); - case 551: + case 588: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 552: + case 589: ACCEPT_TOKEN(anon_sym_DASHa); END_STATE(); - case 553: + case 590: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 554: + case 591: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(633); + if (lookahead == '&') ADVANCE(668); END_STATE(); - case 555: + case 592: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(633); - if (lookahead == '=') ADVANCE(548); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '&') ADVANCE(668); + if (lookahead == '=') ADVANCE(585); + if (lookahead == '|') ADVANCE(586); END_STATE(); - case 556: + case 593: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(633); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '&') ADVANCE(668); + if (lookahead == '|') ADVANCE(586); END_STATE(); - case 557: + case 594: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(548); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '=') ADVANCE(585); + if (lookahead == '|') ADVANCE(586); END_STATE(); - case 558: + case 595: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(547); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == '^') ADVANCE(811); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(584); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == '^') ADVANCE(852); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 559: + case 596: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(547); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(584); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 560: + case 597: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(546); + if (lookahead == '=') ADVANCE(583); END_STATE(); - case 561: + case 598: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(810); + if (lookahead == '^') ADVANCE(851); END_STATE(); - case 562: + case 599: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 563: + case 600: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(551); - if (lookahead == '=') ADVANCE(545); + if (lookahead == '&') ADVANCE(588); + if (lookahead == '=') ADVANCE(582); END_STATE(); - case 564: + case 601: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(551); - if (lookahead == '=') ADVANCE(545); - if (lookahead == '>') ADVANCE(645); + if (lookahead == '&') ADVANCE(588); + if (lookahead == '=') ADVANCE(582); + if (lookahead == '>') ADVANCE(680); END_STATE(); - case 565: + case 602: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(551); - if (lookahead == '>') ADVANCE(645); + if (lookahead == '&') ADVANCE(588); + if (lookahead == '>') ADVANCE(680); END_STATE(); - case 566: + case 603: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 567: + case 604: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 568: + case 605: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 569: + case 606: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); - END_STATE(); - case 570: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - END_STATE(); - case 571: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '(') ADVANCE(817); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 572: + case 607: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '(') ADVANCE(817); - if (lookahead == '<') ADVANCE(590); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '(') ADVANCE(858); + if (lookahead == '<') ADVANCE(625); + if (lookahead == '=') ADVANCE(621); END_STATE(); - case 573: + case 608: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '(') ADVANCE(817); - if (lookahead == '<') ADVANCE(321); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '(') ADVANCE(858); + if (lookahead == '<') ADVANCE(343); END_STATE(); - case 574: + case 609: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '(') ADVANCE(817); - if (lookahead == '<') ADVANCE(589); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '(') ADVANCE(858); + if (lookahead == '<') ADVANCE(624); END_STATE(); - case 575: + case 610: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '(') ADVANCE(817); - if (lookahead == '<') ADVANCE(588); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '(') ADVANCE(858); + if (lookahead == '<') ADVANCE(623); END_STATE(); - case 576: + case 611: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '<') ADVANCE(321); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '<') ADVANCE(343); END_STATE(); - case 577: + case 612: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '<') ADVANCE(589); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '<') ADVANCE(624); END_STATE(); - case 578: + case 613: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(647); - if (lookahead == '<') ADVANCE(588); + if (lookahead == '&') ADVANCE(682); + if (lookahead == '<') ADVANCE(623); END_STATE(); - case 579: + case 614: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(817); - if (lookahead == '<') ADVANCE(591); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '(') ADVANCE(858); + if (lookahead == '<') ADVANCE(626); + if (lookahead == '=') ADVANCE(621); END_STATE(); - case 580: + case 615: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(591); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '<') ADVANCE(626); + if (lookahead == '=') ADVANCE(621); END_STATE(); - case 581: + case 616: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(648); - if (lookahead == '(') ADVANCE(818); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(593); - if (lookahead == '|') ADVANCE(649); + if (lookahead == '&') ADVANCE(683); + if (lookahead == '(') ADVANCE(859); + if (lookahead == '=') ADVANCE(622); + if (lookahead == '>') ADVANCE(628); + if (lookahead == '|') ADVANCE(684); END_STATE(); - case 582: + case 617: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(648); - if (lookahead == '(') ADVANCE(818); - if (lookahead == '>') ADVANCE(592); - if (lookahead == '|') ADVANCE(649); + if (lookahead == '&') ADVANCE(683); + if (lookahead == '(') ADVANCE(859); + if (lookahead == '>') ADVANCE(627); + if (lookahead == '|') ADVANCE(684); END_STATE(); - case 583: + case 618: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(648); - if (lookahead == '>') ADVANCE(592); - if (lookahead == '|') ADVANCE(649); + if (lookahead == '&') ADVANCE(683); + if (lookahead == '>') ADVANCE(627); + if (lookahead == '|') ADVANCE(684); END_STATE(); - case 584: + case 619: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(818); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(593); + if (lookahead == '(') ADVANCE(859); + if (lookahead == '=') ADVANCE(622); + if (lookahead == '>') ADVANCE(628); END_STATE(); - case 585: + case 620: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(593); + if (lookahead == '=') ADVANCE(622); + if (lookahead == '>') ADVANCE(628); END_STATE(); - case 586: + case 621: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 587: + case 622: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 588: + case 623: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(652); + if (lookahead == '-') ADVANCE(687); END_STATE(); - case 589: + case 624: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(652); - if (lookahead == '<') ADVANCE(718); + if (lookahead == '-') ADVANCE(687); + if (lookahead == '<') ADVANCE(759); END_STATE(); - case 590: + case 625: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(652); - if (lookahead == '<') ADVANCE(718); - if (lookahead == '=') ADVANCE(543); + if (lookahead == '-') ADVANCE(687); + if (lookahead == '<') ADVANCE(759); + if (lookahead == '=') ADVANCE(580); END_STATE(); - case 591: + case 626: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(543); + if (lookahead == '=') ADVANCE(580); END_STATE(); - case 592: + case 627: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 593: + case 628: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(544); + if (lookahead == '=') ADVANCE(581); END_STATE(); - case 594: + case 629: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 595: + case 630: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(528); - if (lookahead == '=') ADVANCE(532); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '+') ADVANCE(565); + if (lookahead == '=') ADVANCE(569); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 596: + case 631: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(527); - if (lookahead == '=') ADVANCE(531); + if (lookahead == '+') ADVANCE(564); + if (lookahead == '=') ADVANCE(568); END_STATE(); - case 597: + case 632: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 598: + case 633: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(530); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '\\') ADVANCE(484); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '-') ADVANCE(567); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '=') ADVANCE(571); + if (lookahead == '\\') ADVANCE(517); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 599: + case 634: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(529); - if (lookahead == '=') ADVANCE(533); + if (lookahead == '-') ADVANCE(566); + if (lookahead == '=') ADVANCE(570); END_STATE(); - case 600: + case 635: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(529); - if (lookahead == '=') ADVANCE(533); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'o') ADVANCE(550); + if (lookahead == '-') ADVANCE(566); + if (lookahead == '=') ADVANCE(570); + if (lookahead == 'a') ADVANCE(589); + if (lookahead == 'o') ADVANCE(587); END_STATE(); - case 601: + case 636: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '\\') ADVANCE(484); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '\\') ADVANCE(517); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 602: + case 637: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 603: + case 638: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(616); - if (lookahead == '=') ADVANCE(536); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '*') ADVANCE(651); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 604: + case 639: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '=') ADVANCE(535); + if (lookahead == '*') ADVANCE(652); + if (lookahead == '=') ADVANCE(572); END_STATE(); - case 605: + case 640: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 606: + case 641: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 607: + case 642: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(805); - if (lookahead == '%') ADVANCE(807); - if (lookahead == '/') ADVANCE(803); - if (lookahead == '=') ADVANCE(538); - if (lookahead == '\\') ADVANCE(484); + if (lookahead == '#') ADVANCE(846); + if (lookahead == '%') ADVANCE(848); + if (lookahead == '/') ADVANCE(844); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '\\') ADVANCE(517); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15769,2910 +17711,3139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 608: + case 643: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(804); - if (lookahead == '%') ADVANCE(806); - if (lookahead == '/') ADVANCE(802); + if (lookahead == '#') ADVANCE(845); + if (lookahead == '%') ADVANCE(847); + if (lookahead == '/') ADVANCE(843); END_STATE(); - case 609: + case 644: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(538); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 610: + case 645: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(537); + if (lookahead == '=') ADVANCE(574); END_STATE(); - case 611: + case 646: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 612: + case 647: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(800); - if (lookahead == '=') ADVANCE(540); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_3(lookahead)) ADVANCE(909); + if (lookahead == '%') ADVANCE(841); + if (lookahead == '=') ADVANCE(577); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_3(lookahead)) ADVANCE(958); END_STATE(); - case 613: + case 648: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(799); + if (lookahead == '%') ADVANCE(840); END_STATE(); - case 614: + case 649: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(540); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(577); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 615: + case 650: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(539); + if (lookahead == '=') ADVANCE(576); END_STATE(); - case 616: + case 651: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(542); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(579); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 617: + case 652: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(541); + if (lookahead == '=') ADVANCE(578); END_STATE(); - case 618: + case 653: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 619: + case 654: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(514); + if (lookahead == '(') ADVANCE(551); END_STATE(); - case 620: + case 655: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 621: + case 656: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(621); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(656); END_STATE(); - case 622: + case 657: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 623: + case 658: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(484); + if (lookahead == '\\') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 624: + case 659: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 625: + case 660: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 626: + case 661: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 627: + case 662: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 628: + case 663: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(630); + if (lookahead == '&') ADVANCE(665); END_STATE(); - case 629: + case 664: ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); - case 630: + case 665: ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); - case 631: + case 666: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 632: + case 667: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 633: + case 668: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 634: + case 669: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 635: + case 670: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 636: + case 671: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(568); + if (lookahead == '=') ADVANCE(605); END_STATE(); - case 637: + case 672: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 638: + case 673: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 639: + case 674: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(641); + if (lookahead == '[') ADVANCE(676); END_STATE(); - case 640: + case 675: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 641: + case 676: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 642: + case 677: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 643: + case 678: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 644: + case 679: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 645: + case 680: ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(646); + if (lookahead == '>') ADVANCE(681); END_STATE(); - case 646: + case 681: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 647: + case 682: ACCEPT_TOKEN(anon_sym_LT_AMP); - if (lookahead == '-') ADVANCE(650); + if (lookahead == '-') ADVANCE(685); END_STATE(); - case 648: + case 683: ACCEPT_TOKEN(anon_sym_GT_AMP); - if (lookahead == '-') ADVANCE(651); + if (lookahead == '-') ADVANCE(686); END_STATE(); - case 649: + case 684: ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); - case 650: + case 685: ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); END_STATE(); - case 651: + case 686: ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); END_STATE(); - case 652: + case 687: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); - case 653: + case 688: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '+') ADVANCE(730); - if (lookahead == '-') ADVANCE(728); - if (lookahead == '\\') ADVANCE(391); - if (lookahead == '~') ADVANCE(731); + if (lookahead == '\n') ADVANCE(688); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '-') ADVANCE(769); + if (lookahead == '\\') ADVANCE(421); + if (lookahead == '~') ADVANCE(772); END_STATE(); - case 654: + case 689: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(654); - if (lookahead == '\\') ADVANCE(333); + if (lookahead == '\n') ADVANCE(689); + if (lookahead == '\\') ADVANCE(355); END_STATE(); - case 655: + case 690: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(655); + if (lookahead == '\n') ADVANCE(690); END_STATE(); - case 656: + case 691: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(656); - if (lookahead == '\\') ADVANCE(397); + if (lookahead == '\n') ADVANCE(691); + if (lookahead == '\\') ADVANCE(427); END_STATE(); - case 657: + case 692: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(657); - if (lookahead == '\\') ADVANCE(351); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '\\') ADVANCE(373); END_STATE(); - case 658: + case 693: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(658); - if (lookahead == '\\') ADVANCE(335); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '\\') ADVANCE(357); END_STATE(); - case 659: + case 694: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(659); - if (lookahead == '\\') ADVANCE(452); + if (lookahead == '\n') ADVANCE(694); + if (lookahead == '\\') ADVANCE(485); END_STATE(); - case 660: + case 695: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(660); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\n') ADVANCE(695); + if (lookahead == '\\') ADVANCE(374); END_STATE(); - case 661: + case 696: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '\\') ADVANCE(336); + if (lookahead == '\n') ADVANCE(696); + if (lookahead == '\\') ADVANCE(358); END_STATE(); - case 662: + case 697: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(662); - if (lookahead == '\\') ADVANCE(400); + if (lookahead == '\n') ADVANCE(697); + if (lookahead == '\\') ADVANCE(430); END_STATE(); - case 663: + case 698: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\\') ADVANCE(353); + if (lookahead == '\n') ADVANCE(698); + if (lookahead == '\\') ADVANCE(416); END_STATE(); - case 664: + case 699: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\\') ADVANCE(367); + if (lookahead == '\n') ADVANCE(699); + if (lookahead == '\\') ADVANCE(389); END_STATE(); - case 665: + case 700: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\\') ADVANCE(401); + if (lookahead == '\n') ADVANCE(700); + if (lookahead == '\\') ADVANCE(431); END_STATE(); - case 666: + case 701: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\\') ADVANCE(354); + if (lookahead == '\n') ADVANCE(701); + if (lookahead == '\\') ADVANCE(398); END_STATE(); - case 667: + case 702: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(667); - if (lookahead == '\\') ADVANCE(368); + if (lookahead == '\n') ADVANCE(702); + if (lookahead == '\\') ADVANCE(359); END_STATE(); - case 668: + case 703: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\\') ADVANCE(402); + if (lookahead == '\n') ADVANCE(703); + if (lookahead == '\\') ADVANCE(432); END_STATE(); - case 669: + case 704: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(669); - if (lookahead == '\\') ADVANCE(376); + if (lookahead == '\n') ADVANCE(704); + if (lookahead == '\\') ADVANCE(375); END_STATE(); - case 670: + case 705: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(670); - if (lookahead == '\\') ADVANCE(378); + if (lookahead == '\n') ADVANCE(705); + if (lookahead == '\\') ADVANCE(390); END_STATE(); - case 671: + case 706: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '\\') ADVANCE(403); + if (lookahead == '\n') ADVANCE(706); + if (lookahead == '\\') ADVANCE(433); END_STATE(); - case 672: + case 707: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '\\') ADVANCE(356); + if (lookahead == '\n') ADVANCE(707); + if (lookahead == '\\') ADVANCE(376); END_STATE(); - case 673: + case 708: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '\\') ADVANCE(337); + if (lookahead == '\n') ADVANCE(708); + if (lookahead == '\\') ADVANCE(404); END_STATE(); - case 674: + case 709: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(674); - if (lookahead == '\\') ADVANCE(404); + if (lookahead == '\n') ADVANCE(709); + if (lookahead == '\\') ADVANCE(434); END_STATE(); - case 675: + case 710: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(675); - if (lookahead == '\\') ADVANCE(377); + if (lookahead == '\n') ADVANCE(710); + if (lookahead == '\\') ADVANCE(406); END_STATE(); - case 676: + case 711: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(676); - if (lookahead == '\\') ADVANCE(338); + if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\\') ADVANCE(391); END_STATE(); - case 677: + case 712: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(677); - if (lookahead == '\\') ADVANCE(405); + if (lookahead == '\n') ADVANCE(712); + if (lookahead == '\\') ADVANCE(435); END_STATE(); - case 678: + case 713: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(678); - if (lookahead == '\\') ADVANCE(361); + if (lookahead == '\n') ADVANCE(713); + if (lookahead == '\\') ADVANCE(399); END_STATE(); - case 679: + case 714: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(679); - if (lookahead == '\\') ADVANCE(380); + if (lookahead == '\n') ADVANCE(714); + if (lookahead == '\\') ADVANCE(408); END_STATE(); - case 680: + case 715: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(680); - if (lookahead == '\\') ADVANCE(406); + if (lookahead == '\n') ADVANCE(715); + if (lookahead == '\\') ADVANCE(436); END_STATE(); - case 681: + case 716: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(681); - if (lookahead == '\\') ADVANCE(369); + if (lookahead == '\n') ADVANCE(716); + if (lookahead == '\\') ADVANCE(409); END_STATE(); - case 682: + case 717: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(682); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '\n') ADVANCE(717); + if (lookahead == '\\') ADVANCE(360); END_STATE(); - case 683: + case 718: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(683); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '\n') ADVANCE(718); + if (lookahead == '\\') ADVANCE(437); END_STATE(); - case 684: + case 719: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '\\') ADVANCE(409); + if (lookahead == '\n') ADVANCE(719); + if (lookahead == '\\') ADVANCE(400); END_STATE(); - case 685: + case 720: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(685); - if (lookahead == '\\') ADVANCE(339); + if (lookahead == '\n') ADVANCE(720); + if (lookahead == '\\') ADVANCE(410); END_STATE(); - case 686: + case 721: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(686); - if (lookahead == '\\') ADVANCE(479); + if (lookahead == '\n') ADVANCE(721); + if (lookahead == '\\') ADVANCE(512); END_STATE(); - case 687: + case 722: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(687); - if (lookahead == '\\') ADVANCE(370); + if (lookahead == '\n') ADVANCE(722); + if (lookahead == '\\') ADVANCE(378); END_STATE(); - case 688: + case 723: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(688); - if (lookahead == '\\') ADVANCE(480); + if (lookahead == '\n') ADVANCE(723); + if (lookahead == '\\') ADVANCE(361); END_STATE(); - case 689: + case 724: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '\\') ADVANCE(382); + if (lookahead == '\n') ADVANCE(724); + if (lookahead == '\\') ADVANCE(440); END_STATE(); - case 690: + case 725: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '\\') ADVANCE(481); + if (lookahead == '\n') ADVANCE(725); + if (lookahead == '\\') ADVANCE(401); END_STATE(); - case 691: + case 726: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(691); - if (lookahead == '\\') ADVANCE(340); + if (lookahead == '\n') ADVANCE(726); + if (lookahead == '\\') ADVANCE(362); END_STATE(); - case 692: + case 727: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(413); + if (lookahead == '\n') ADVANCE(727); + if (lookahead == '\\') ADVANCE(513); END_STATE(); - case 693: + case 728: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '\\') ADVANCE(341); + if (lookahead == '\n') ADVANCE(728); + if (lookahead == '\\') ADVANCE(407); END_STATE(); - case 694: + case 729: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\\') ADVANCE(454); + if (lookahead == '\n') ADVANCE(729); + if (lookahead == '\\') ADVANCE(411); END_STATE(); - case 695: + case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(695); + if (lookahead == '\n') ADVANCE(730); + if (lookahead == '\\') ADVANCE(514); + END_STATE(); + case 731: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(731); if (lookahead == '\\') ADVANCE(383); END_STATE(); - case 696: + case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(696); - if (lookahead == '\\') ADVANCE(455); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '\\') ADVANCE(392); END_STATE(); - case 697: + case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\\') ADVANCE(379); + if (lookahead == '\n') ADVANCE(733); + if (lookahead == '\\') ADVANCE(442); END_STATE(); - case 698: + case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\\') ADVANCE(456); + if (lookahead == '\n') ADVANCE(734); + if (lookahead == '\\') ADVANCE(363); END_STATE(); - case 699: + case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '\\') ADVANCE(371); + if (lookahead == '\n') ADVANCE(735); + if (lookahead == '\\') ADVANCE(487); END_STATE(); - case 700: + case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(700); - if (lookahead == '\\') ADVANCE(457); + if (lookahead == '\n') ADVANCE(736); + if (lookahead == '\\') ADVANCE(412); END_STATE(); - case 701: + case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(343); + if (lookahead == '\n') ADVANCE(737); + if (lookahead == '\\') ADVANCE(488); END_STATE(); - case 702: + case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(702); - if (lookahead == '\\') ADVANCE(459); + if (lookahead == '\n') ADVANCE(738); + if (lookahead == '\\') ADVANCE(405); END_STATE(); - case 703: + case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '\\') ADVANCE(384); + if (lookahead == '\n') ADVANCE(739); + if (lookahead == '\\') ADVANCE(489); END_STATE(); - case 704: + case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(458); + if (lookahead == '\n') ADVANCE(740); + if (lookahead == '\\') ADVANCE(393); END_STATE(); - case 705: + case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\\') ADVANCE(373); + if (lookahead == '\n') ADVANCE(741); + if (lookahead == '\\') ADVANCE(490); END_STATE(); - case 706: + case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(706); - if (lookahead == '\\') ADVANCE(461); + if (lookahead == '\n') ADVANCE(742); + if (lookahead == '\\') ADVANCE(366); END_STATE(); - case 707: + case 743: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '\n') ADVANCE(743); + if (lookahead == '\\') ADVANCE(493); END_STATE(); - case 708: + case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(462); + if (lookahead == '\n') ADVANCE(744); + if (lookahead == '\\') ADVANCE(414); END_STATE(); - case 709: + case 745: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(709); - if (lookahead == '\\') ADVANCE(358); + if (lookahead == '\n') ADVANCE(745); + if (lookahead == '\\') ADVANCE(491); END_STATE(); - case 710: + case 746: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(460); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\\') ADVANCE(395); END_STATE(); - case 711: + case 747: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(473); + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\\') ADVANCE(494); END_STATE(); - case 712: + case 748: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(474); + if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\\') ADVANCE(377); END_STATE(); - case 713: + case 749: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '\\') ADVANCE(475); + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\\') ADVANCE(506); END_STATE(); - case 714: + case 750: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(421); + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '\\') ADVANCE(381); END_STATE(); - case 715: + case 751: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(715); - if (lookahead == '\\') ADVANCE(465); + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\\') ADVANCE(492); END_STATE(); - case 716: + case 752: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '\\') ADVANCE(429); + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\\') ADVANCE(496); END_STATE(); - case 717: + case 753: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(471); + if (lookahead == '\n') ADVANCE(753); + if (lookahead == '\\') ADVANCE(507); END_STATE(); - case 718: + case 754: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\\') ADVANCE(508); + END_STATE(); + case 755: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\\') ADVANCE(451); + END_STATE(); + case 756: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(756); + if (lookahead == '\\') ADVANCE(497); + END_STATE(); + case 757: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\\') ADVANCE(459); + END_STATE(); + case 758: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\\') ADVANCE(503); + END_STATE(); + case 759: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 719: + case 760: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 720: + case 761: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 721: + case 762: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 722: + case 763: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(794); - if (lookahead == '-') ADVANCE(791); - if (lookahead == '=') ADVANCE(788); - if (lookahead == '?') ADVANCE(798); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '+') ADVANCE(835); + if (lookahead == '-') ADVANCE(832); + if (lookahead == '=') ADVANCE(829); + if (lookahead == '?') ADVANCE(839); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 723: + case 764: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(793); - if (lookahead == '-') ADVANCE(790); - if (lookahead == '=') ADVANCE(787); - if (lookahead == '?') ADVANCE(797); + if (lookahead == '+') ADVANCE(834); + if (lookahead == '-') ADVANCE(831); + if (lookahead == '=') ADVANCE(828); + if (lookahead == '?') ADVANCE(838); END_STATE(); - case 724: + case 765: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 725: + case 766: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 726: + case 767: ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); - case 727: + case 768: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 728: + case 769: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(726); + if (lookahead == '-') ADVANCE(767); END_STATE(); - case 729: + case 770: ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); - case 730: + case 771: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(725); + if (lookahead == '+') ADVANCE(766); END_STATE(); - case 731: + case 772: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 732: + case 773: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); - case 733: + case 774: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); END_STATE(); - case 734: + case 775: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(775); END_STATE(); - case 735: + case 776: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 736: + case 777: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 737: + case 778: ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); - case 738: + case 779: ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); - case 739: + case 780: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 740: + case 781: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(308); - if (lookahead == '(') ADVANCE(813); - if (lookahead == '[') ADVANCE(733); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '\'') ADVANCE(330); + if (lookahead == '(') ADVANCE(854); + if (lookahead == '[') ADVANCE(774); + if (lookahead == '`') ADVANCE(857); + if (lookahead == '{') ADVANCE(817); END_STATE(); - case 741: + case 782: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(308); - if (lookahead == '(') ADVANCE(812); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '\'') ADVANCE(330); + if (lookahead == '(') ADVANCE(853); + if (lookahead == '`') ADVANCE(857); + if (lookahead == '{') ADVANCE(817); END_STATE(); - case 742: + case 783: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(813); - if (lookahead == '[') ADVANCE(733); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '(') ADVANCE(854); + if (lookahead == '[') ADVANCE(774); + if (lookahead == '`') ADVANCE(857); + if (lookahead == '{') ADVANCE(817); END_STATE(); - case 743: + case 784: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(812); - if (lookahead == '`') ADVANCE(816); + if (lookahead == '(') ADVANCE(853); + if (lookahead == '`') ADVANCE(857); END_STATE(); - case 744: + case 785: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(812); - if (lookahead == '`') ADVANCE(816); - if (lookahead == '{') ADVANCE(776); + if (lookahead == '(') ADVANCE(853); + if (lookahead == '`') ADVANCE(857); + if (lookahead == '{') ADVANCE(817); END_STATE(); - case 745: + case 786: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 746: + case 787: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(642); + if (lookahead == ']') ADVANCE(677); END_STATE(); - case 747: + case 788: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 748: + case 789: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\n') ADVANCE(795); + if (lookahead == '\\') ADVANCE(518); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 749: + case 790: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\n') ADVANCE(793); + if (lookahead == '\\') ADVANCE(518); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 750: + case 791: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\n') ADVANCE(794); + if (lookahead == '\\') ADVANCE(518); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 751: + case 792: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\\') ADVANCE(819); + if (lookahead == '\n') ADVANCE(798); + if (lookahead == '\\') ADVANCE(860); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(756); + lookahead != '`') ADVANCE(797); END_STATE(); - case 752: + case 793: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(386); + if (lookahead == '_') ADVANCE(948); if (lookahead == '\n' || - lookahead == '\r') SKIP(268) + lookahead == '\r') SKIP(287) if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(752); + lookahead == ' ') ADVANCE(793); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); if (lookahead != 0 && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 753: + case 794: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(387); + if (lookahead == '_') ADVANCE(948); if (lookahead == '\n' || - lookahead == '\r') SKIP(271) + lookahead == '\r') SKIP(290) if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(753); + lookahead == ' ') ADVANCE(794); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); if (lookahead != 0 && lookahead != '"' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 754: + case 795: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(756); - if (lookahead == '$') ADVANCE(742); - if (lookahead == '(') ADVANCE(755); - if (lookahead == '\\') ADVANCE(445); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(797); + if (lookahead == '$') ADVANCE(783); + if (lookahead == '(') ADVANCE(796); + if (lookahead == '\\') ADVANCE(477); + if (lookahead == '`') ADVANCE(855); if (lookahead == '\n' || - lookahead == '\r') SKIP(298) + lookahead == '\r') SKIP(318) if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(754); - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') ADVANCE(795); + if (lookahead != 0) ADVANCE(798); END_STATE(); - case 755: + case 796: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '(') ADVANCE(514); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '(') ADVANCE(551); + if (lookahead == '\\') ADVANCE(518); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 756: + case 797: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(819); + if (lookahead == '\\') ADVANCE(860); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(756); + lookahead != '`') ADVANCE(797); END_STATE(); - case 757: + case 798: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\\') ADVANCE(518); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(757); + lookahead != '`') ADVANCE(798); END_STATE(); - case 758: + case 799: ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && lookahead != '\\' && - lookahead != '`') ADVANCE(757); - if (lookahead == '\\') ADVANCE(485); + lookahead != '`') ADVANCE(798); + if (lookahead == '\\') ADVANCE(518); END_STATE(); - case 759: + case 800: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 760: + case 801: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 761: + case 802: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(760); - if (lookahead == '\\') ADVANCE(309); - if (lookahead != 0) ADVANCE(308); + if (lookahead == '\'') ADVANCE(801); + if (lookahead == '\\') ADVANCE(331); + if (lookahead != 0) ADVANCE(330); END_STATE(); - case 762: + case 803: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(773); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'x') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_5(lookahead)) ADVANCE(909); + if (lookahead == '#') ADVANCE(814); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'x') ADVANCE(957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_5(lookahead)) ADVANCE(958); END_STATE(); - case 763: + case 804: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(773); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'x') ADVANCE(826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(765); + if (lookahead == '#') ADVANCE(814); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'x') ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_6(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_6(lookahead)) ADVANCE(958); END_STATE(); - case 764: + case 805: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(773); - if (lookahead == '\\') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_5(lookahead)) ADVANCE(909); + if (lookahead == '#') ADVANCE(814); + if (lookahead == '\\') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_5(lookahead)) ADVANCE(958); END_STATE(); - case 765: + case 806: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(773); - if (lookahead == '\\') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(765); + if (lookahead == '#') ADVANCE(814); + if (lookahead == '\\') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_6(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_6(lookahead)) ADVANCE(958); END_STATE(); - case 766: + case 807: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(773); + if (lookahead == '#') ADVANCE(814); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_6(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_6(lookahead)) ADVANCE(958); END_STATE(); - case 767: + case 808: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(774); - if (lookahead == 'x') ADVANCE(837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); + if (lookahead == '#') ADVANCE(815); + if (lookahead == 'x') ADVANCE(878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 768: + case 809: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(774); - if (lookahead == 'x') ADVANCE(483); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (lookahead == '#') ADVANCE(815); + if (lookahead == 'x') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); END_STATE(); - case 769: + case 810: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); + if (lookahead == '#') ADVANCE(815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 770: + case 811: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (lookahead == '#') ADVANCE(815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); END_STATE(); - case 771: + case 812: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(484); + if (lookahead == '\\') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(812); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 772: + case 813: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(772); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(813); END_STATE(); - case 773: + case 814: ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(484); + if (lookahead == '\\') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(812); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 774: + case 815: ACCEPT_TOKEN(aux_sym_number_token2); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(772); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(813); END_STATE(); - case 775: + case 816: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 776: + case 817: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 777: + case 818: ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); - case 778: + case 819: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 779: + case 820: ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 780: + case 821: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 781: + case 822: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 782: + case 823: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 783: + case 824: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(616); - if (lookahead == '=') ADVANCE(536); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '*') ADVANCE(651); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 784: + case 825: ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); - case 785: + case 826: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 786: + case 827: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 787: + case 828: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 788: + case 829: ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 789: + case 830: ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); - case 790: + case 831: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 791: + case 832: ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 792: + case 833: ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); - case 793: + case 834: ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); - case 794: + case 835: ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 795: + case 836: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 796: + case 837: ACCEPT_TOKEN(anon_sym_QMARK2); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 797: + case 838: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 798: + case 839: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 799: + case 840: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); - case 800: + case 841: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 801: + case 842: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(801); + lookahead == ' ') ADVANCE(842); END_STATE(); - case 802: + case 843: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 803: + case 844: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 804: + case 845: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 805: + case 846: ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 806: + case 847: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 807: + case 848: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 808: + case 849: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 809: + case 850: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 810: + case 851: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 811: + case 852: ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 812: + case 853: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 813: + case 854: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(732); + if (lookahead == '(') ADVANCE(773); END_STATE(); - case 814: + case 855: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 815: + case 856: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(738); + if (lookahead == '`') ADVANCE(779); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(326); + lookahead == ' ') ADVANCE(348); END_STATE(); - case 816: + case 857: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 817: + case 858: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 818: + case 859: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 819: + case 860: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\r') ADVANCE(751); - if (lookahead != 0) ADVANCE(756); + if (lookahead == '\n') ADVANCE(798); + if (lookahead == '\r') ADVANCE(792); + if (lookahead != 0) ADVANCE(797); END_STATE(); - case 820: + case 861: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(822); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(863); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(821); + (11 <= lookahead && lookahead <= '\r')) ADVANCE(862); END_STATE(); - case 821: + case 862: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(821); + lookahead != '\n') ADVANCE(862); END_STATE(); - case 822: + case 863: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(820); - if (!sym_word_character_set_1(lookahead)) ADVANCE(822); + if (lookahead == '\\') ADVANCE(861); + if (!sym_word_character_set_1(lookahead)) ADVANCE(863); END_STATE(); - case 823: + case 864: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'a') ADVANCE(824); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'a') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 824: + case 865: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'c') ADVANCE(623); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'c') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 825: + case 866: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 's') ADVANCE(823); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 's') ADVANCE(864); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 826: + case 867: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(765); + if (lookahead == '\\') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 827: + case 868: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(484); + if (lookahead == '\\') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(827); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 828: + case 869: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(829); + if (lookahead == 'a') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 829: + case 870: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(625); + if (lookahead == 'c') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 830: + case 871: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(828); + if (lookahead == 's') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 831: + case 872: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 832: + case 873: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 833: + case 874: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(834); + if (lookahead == 'a') ADVANCE(875); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 834: + case 875: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(626); + if (lookahead == 'c') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 835: + case 876: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(513); + if (lookahead == 'n') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 836: + case 877: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(833); + if (lookahead == 's') ADVANCE(874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 837: + case 878: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 838: + case 879: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 839: + case 880: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(654); - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); + if (lookahead == '\n') ADVANCE(689); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(909); + (lookahead < '[' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 840: + case 881: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(657); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(351); - if (lookahead == '_') ADVANCE(899); - if (lookahead == 'e') ADVANCE(836); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(373); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(141) + lookahead == ' ') SKIP(150) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 841: + case 882: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(658); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(357); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(151) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 842: + case 883: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(660); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(695); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(374); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) + lookahead == ' ') SKIP(175) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 843: + case 884: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(696); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(358); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(176) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 844: + case 885: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(698); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166) + lookahead == ' ') SKIP(178) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 845: + case 886: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(367); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(699); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(389); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 846: + case 887: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(701); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) + lookahead == ' ') SKIP(181) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 847: + case 888: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(667); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(368); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(702); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(359); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(182) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 848: + case 889: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(669); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(704); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(375); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) + lookahead == ' ') SKIP(184) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 849: + case 890: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(670); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(705); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 850: + case 891: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(707); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(376); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) + lookahead == ' ') SKIP(187) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 851: + case 892: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(708); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(188) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 852: + case 893: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(675); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(570); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(332); + if (lookahead == '\n') ADVANCE(710); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178) + lookahead == ' ') SKIP(190) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 853: + case 894: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(676); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(338); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(711); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(391); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(191) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && - lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 854: + case 895: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(678); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '_') ADVANCE(899); - if (lookahead == 'i') ADVANCE(835); + if (lookahead == '\n') ADVANCE(713); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(399); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(181) + lookahead == ' ') SKIP(193) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 855: + case 896: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(679); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(714); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(194) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 856: + case 897: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(681); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(369); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(716); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + lookahead == ' ') SKIP(196) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 857: + case 898: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(683); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(381); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == 'e') ADVANCE(830); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(717); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(360); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(197) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 858: + case 899: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(685); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(719); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + lookahead == ' ') SKIP(199) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 859: + case 900: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(687); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(720); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == 'e') ADVANCE(871); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(200) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 860: + case 901: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(517); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(382); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(722); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(378); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + lookahead == ' ') SKIP(202) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 861: + case 902: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(691); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(340); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(723); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(361); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(203) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 862: + case 903: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(341); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(725); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(205) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 904: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(726); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(362); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(206) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + END_STATE(); + case 905: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(728); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(407); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(354); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(208) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 906: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(729); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(554); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(411); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(209) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 863: + case 907: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); + if (lookahead == '\n') ADVANCE(731); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); if (lookahead == '\\') ADVANCE(383); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '_') ADVANCE(948); + if (lookahead == 'i') ADVANCE(876); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(211) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 908: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(392); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(212) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 864: + case 909: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(734); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(363); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(214) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + lookahead != ')' && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + END_STATE(); + case 910: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(736); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(412); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(216) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (lookahead != 0 && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + END_STATE(); + case 911: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(738); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(602); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(218) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 865: + case 912: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(371); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(740); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(393); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(220) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 866: + case 913: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(343); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(742); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(366); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(222) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 867: + case 914: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(384); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '\n') ADVANCE(744); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(414); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(224) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 868: + case 915: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(571); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(332); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(395); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(354); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(226) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 869: + case 916: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(562); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == ';') ADVANCE(518); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '\n') ADVANCE(748); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(599); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == ';') ADVANCE(555); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(377); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(228) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 870: + case 917: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(709); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(230) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 871: + case 918: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(635); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '%') ADVANCE(614); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(603); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '-') ADVANCE(598); - if (lookahead == '/') ADVANCE(609); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(523); - if (lookahead == '>') ADVANCE(581); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(559); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(555); + if (lookahead == '!') ADVANCE(670); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '%') ADVANCE(649); + if (lookahead == '&') ADVANCE(601); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(638); + if (lookahead == '+') ADVANCE(630); + if (lookahead == '-') ADVANCE(633); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(607); + if (lookahead == '=') ADVANCE(560); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(356); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(596); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(592); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(240) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(909); + (lookahead < ';' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 872: + case 919: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(324); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(573); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(346); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(372); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(247) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 873: + case 920: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(619); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(342); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(654); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(364); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 874: + case 921: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '=') ADVANCE(903); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(952); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(394); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(249) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 875: + case 922: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(365); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 876: + case 923: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(574); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(368); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(251) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 877: + case 924: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(385); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(413); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(252) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 878: + case 925: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(575); - if (lookahead == '>') ADVANCE(582); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(610); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(415); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(253) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 879: + case 926: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(637); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(740); - if (lookahead == '\'') ADVANCE(307); - if (lookahead == '(') ADVANCE(311); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '0') ADVANCE(894); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(720); - if (lookahead == '@') ADVANCE(893); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '_') ADVANCE(898); - if (lookahead == '`') ADVANCE(814); + if (lookahead == '!') ADVANCE(672); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(781); + if (lookahead == '\'') ADVANCE(329); + if (lookahead == '(') ADVANCE(332); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '-') ADVANCE(636); + if (lookahead == '0') ADVANCE(943); + if (lookahead == '<') ADVANCE(333); + if (lookahead == '>') ADVANCE(334); + if (lookahead == '?') ADVANCE(761); + if (lookahead == '@') ADVANCE(942); + if (lookahead == '\\') ADVANCE(380); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '`') ADVANCE(855); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(766); + lookahead == ' ') SKIP(254) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(909); + (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); - case 880: + case 927: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(370); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) + lookahead == ' ') SKIP(265) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 881: + case 928: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == ')') ADVANCE(315); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(347); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(397); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) + lookahead == ' ') SKIP(266) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 882: + case 929: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == ':') ADVANCE(721); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == ':') ADVANCE(762); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(369); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(249) + lookahead == ' ') SKIP(267) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 883: + case 930: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(346); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(367); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250) + lookahead == ' ') SKIP(268) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 884: + case 931: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == ']') ADVANCE(325); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == ']') ADVANCE(347); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251) + lookahead == ' ') SKIP(269) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 885: + case 932: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(636); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '%') ADVANCE(615); - if (lookahead == '&') ADVANCE(563); - if (lookahead == '*') ADVANCE(604); - if (lookahead == '+') ADVANCE(596); - if (lookahead == '-') ADVANCE(599); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(580); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(585); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(557); + if (lookahead == '!') ADVANCE(671); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '%') ADVANCE(650); + if (lookahead == '&') ADVANCE(600); + if (lookahead == '*') ADVANCE(639); + if (lookahead == '+') ADVANCE(631); + if (lookahead == '-') ADVANCE(634); + if (lookahead == '/') ADVANCE(645); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(371); + if (lookahead == '^') ADVANCE(597); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(594); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) + lookahead == ' ') SKIP(270) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 886: + case 933: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(379); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265) + lookahead == ' ') SKIP(282) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 887: + case 934: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '&') ADVANCE(305); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '<') ADVANCE(578); - if (lookahead == '>') ADVANCE(583); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == ']') ADVANCE(640); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(382); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(266) + lookahead == ' ') SKIP(283) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 888: + case 935: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == ')') ADVANCE(620); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '_') ADVANCE(899); - if (lookahead == '|') ADVANCE(553); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(402); + if (lookahead == ']') ADVANCE(675); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267) + lookahead == ' ') SKIP(284) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 889: + case 936: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '"') ADVANCE(747); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '&') ADVANCE(327); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(593); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(269) + lookahead == ' ') SKIP(285) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 890: + case 937: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(634); - if (lookahead == '#') ADVANCE(775); - if (lookahead == '$') ADVANCE(739); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '-') ADVANCE(597); - if (lookahead == '0') ADVANCE(896); - if (lookahead == '?') ADVANCE(719); - if (lookahead == '@') ADVANCE(892); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '_') ADVANCE(899); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == ')') ADVANCE(655); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(384); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '|') ADVANCE(590); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(272) + lookahead == ' ') SKIP(286) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 891: + case 938: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '"') ADVANCE(788); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(385); + if (lookahead == '_') ADVANCE(948); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(288) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 939: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '!') ADVANCE(669); + if (lookahead == '#') ADVANCE(816); + if (lookahead == '$') ADVANCE(780); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(945); + if (lookahead == '?') ADVANCE(760); + if (lookahead == '@') ADVANCE(941); + if (lookahead == '\\') ADVANCE(388); + if (lookahead == '_') ADVANCE(948); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(291) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + END_STATE(); + case 940: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(891); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(940); END_STATE(); - case 892: + case 941: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 893: + case 942: ACCEPT_TOKEN(anon_sym_AT2); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 894: + case 943: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(773); + if (lookahead == '#') ADVANCE(814); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(831); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(766); + if (lookahead == 'x') ADVANCE(872); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_6(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_6(lookahead)) ADVANCE(958); END_STATE(); - case 895: + case 944: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 896: + case 945: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 897: + case 946: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 898: + case 947: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(832); - if (!sym_word_character_set_4(lookahead)) ADVANCE(909); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + if (!sym_word_character_set_4(lookahead)) ADVANCE(958); END_STATE(); - case 899: + case 948: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(838); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); END_STATE(); - case 900: + case 949: ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(736); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '.') ADVANCE(777); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 901: + case 950: ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(762); - if (lookahead == '\\') ADVANCE(484); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '0') ADVANCE(803); + if (lookahead == '\\') ADVANCE(517); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 902: + case 951: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 903: + case 952: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(567); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == '~') ADVANCE(644); - if (!sym_word_character_set_2(lookahead)) ADVANCE(909); + if (lookahead == '=') ADVANCE(604); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == '~') ADVANCE(679); + if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); - case 904: + case 953: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'a') ADVANCE(905); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'a') ADVANCE(954); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 905: + case 954: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'c') ADVANCE(624); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'c') ADVANCE(659); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 906: + case 955: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 'n') ADVANCE(512); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 'n') ADVANCE(549); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 907: + case 956: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == 's') ADVANCE(904); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (lookahead == 's') ADVANCE(953); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 908: + case 957: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(764); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); - case 909: + case 958: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(484); - if (!sym_word_character_set_1(lookahead)) ADVANCE(909); + if (lookahead == '\\') ADVANCE(517); + if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); default: return false; @@ -18681,6 +20852,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == 'A') ADVANCE(1); @@ -19027,6169 +21199,7676 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 506, .external_lex_state = 2}, - [2] = {.lex_state = 238, .external_lex_state = 2}, - [3] = {.lex_state = 238, .external_lex_state = 2}, - [4] = {.lex_state = 239, .external_lex_state = 3}, - [5] = {.lex_state = 239, .external_lex_state = 3}, - [6] = {.lex_state = 239, .external_lex_state = 3}, - [7] = {.lex_state = 6, .external_lex_state = 4}, - [8] = {.lex_state = 506, .external_lex_state = 2}, - [9] = {.lex_state = 506, .external_lex_state = 2}, - [10] = {.lex_state = 506, .external_lex_state = 2}, - [11] = {.lex_state = 223, .external_lex_state = 5}, - [12] = {.lex_state = 506, .external_lex_state = 2}, - [13] = {.lex_state = 506, .external_lex_state = 2}, - [14] = {.lex_state = 506, .external_lex_state = 2}, - [15] = {.lex_state = 241, .external_lex_state = 2}, - [16] = {.lex_state = 241, .external_lex_state = 2}, - [17] = {.lex_state = 241, .external_lex_state = 2}, - [18] = {.lex_state = 241, .external_lex_state = 2}, - [19] = {.lex_state = 506, .external_lex_state = 2}, - [20] = {.lex_state = 241, .external_lex_state = 2}, - [21] = {.lex_state = 241, .external_lex_state = 2}, - [22] = {.lex_state = 241, .external_lex_state = 2}, - [23] = {.lex_state = 241, .external_lex_state = 2}, - [24] = {.lex_state = 241, .external_lex_state = 2}, - [25] = {.lex_state = 241, .external_lex_state = 2}, - [26] = {.lex_state = 241, .external_lex_state = 2}, - [27] = {.lex_state = 241, .external_lex_state = 2}, - [28] = {.lex_state = 506, .external_lex_state = 2}, - [29] = {.lex_state = 506, .external_lex_state = 2}, - [30] = {.lex_state = 506, .external_lex_state = 2}, - [31] = {.lex_state = 506, .external_lex_state = 2}, - [32] = {.lex_state = 506, .external_lex_state = 2}, - [33] = {.lex_state = 506, .external_lex_state = 2}, - [34] = {.lex_state = 506, .external_lex_state = 2}, - [35] = {.lex_state = 506, .external_lex_state = 2}, - [36] = {.lex_state = 506, .external_lex_state = 2}, - [37] = {.lex_state = 506, .external_lex_state = 2}, - [38] = {.lex_state = 506, .external_lex_state = 2}, - [39] = {.lex_state = 506, .external_lex_state = 2}, - [40] = {.lex_state = 506, .external_lex_state = 2}, - [41] = {.lex_state = 506, .external_lex_state = 2}, - [42] = {.lex_state = 506, .external_lex_state = 2}, - [43] = {.lex_state = 506, .external_lex_state = 2}, - [44] = {.lex_state = 506, .external_lex_state = 2}, - [45] = {.lex_state = 506, .external_lex_state = 2}, - [46] = {.lex_state = 506, .external_lex_state = 2}, - [47] = {.lex_state = 506, .external_lex_state = 2}, - [48] = {.lex_state = 506, .external_lex_state = 2}, - [49] = {.lex_state = 506, .external_lex_state = 2}, - [50] = {.lex_state = 506, .external_lex_state = 2}, - [51] = {.lex_state = 506, .external_lex_state = 2}, - [52] = {.lex_state = 506, .external_lex_state = 2}, - [53] = {.lex_state = 506, .external_lex_state = 2}, - [54] = {.lex_state = 506, .external_lex_state = 2}, - [55] = {.lex_state = 506, .external_lex_state = 2}, - [56] = {.lex_state = 506, .external_lex_state = 2}, - [57] = {.lex_state = 506, .external_lex_state = 2}, - [58] = {.lex_state = 506, .external_lex_state = 2}, - [59] = {.lex_state = 506, .external_lex_state = 2}, - [60] = {.lex_state = 506, .external_lex_state = 2}, - [61] = {.lex_state = 506, .external_lex_state = 2}, - [62] = {.lex_state = 506, .external_lex_state = 2}, - [63] = {.lex_state = 506, .external_lex_state = 2}, - [64] = {.lex_state = 506, .external_lex_state = 2}, - [65] = {.lex_state = 506, .external_lex_state = 2}, - [66] = {.lex_state = 506, .external_lex_state = 2}, - [67] = {.lex_state = 506, .external_lex_state = 2}, - [68] = {.lex_state = 506, .external_lex_state = 2}, - [69] = {.lex_state = 506, .external_lex_state = 2}, - [70] = {.lex_state = 506, .external_lex_state = 2}, - [71] = {.lex_state = 506, .external_lex_state = 2}, - [72] = {.lex_state = 506, .external_lex_state = 2}, - [73] = {.lex_state = 506, .external_lex_state = 2}, - [74] = {.lex_state = 506, .external_lex_state = 2}, - [75] = {.lex_state = 506, .external_lex_state = 2}, - [76] = {.lex_state = 506, .external_lex_state = 2}, - [77] = {.lex_state = 242, .external_lex_state = 2}, - [78] = {.lex_state = 506, .external_lex_state = 2}, - [79] = {.lex_state = 506, .external_lex_state = 2}, - [80] = {.lex_state = 506, .external_lex_state = 2}, - [81] = {.lex_state = 506, .external_lex_state = 2}, - [82] = {.lex_state = 506, .external_lex_state = 2}, - [83] = {.lex_state = 242, .external_lex_state = 2}, - [84] = {.lex_state = 506, .external_lex_state = 2}, - [85] = {.lex_state = 506, .external_lex_state = 2}, - [86] = {.lex_state = 506, .external_lex_state = 2}, - [87] = {.lex_state = 506, .external_lex_state = 2}, - [88] = {.lex_state = 506, .external_lex_state = 2}, - [89] = {.lex_state = 506, .external_lex_state = 2}, - [90] = {.lex_state = 506, .external_lex_state = 2}, - [91] = {.lex_state = 506, .external_lex_state = 2}, - [92] = {.lex_state = 506, .external_lex_state = 2}, - [93] = {.lex_state = 506, .external_lex_state = 2}, - [94] = {.lex_state = 506, .external_lex_state = 2}, - [95] = {.lex_state = 506, .external_lex_state = 2}, - [96] = {.lex_state = 506, .external_lex_state = 2}, - [97] = {.lex_state = 506, .external_lex_state = 2}, - [98] = {.lex_state = 506, .external_lex_state = 2}, - [99] = {.lex_state = 506, .external_lex_state = 2}, - [100] = {.lex_state = 506, .external_lex_state = 2}, - [101] = {.lex_state = 506, .external_lex_state = 2}, - [102] = {.lex_state = 242, .external_lex_state = 2}, - [103] = {.lex_state = 506, .external_lex_state = 2}, - [104] = {.lex_state = 506, .external_lex_state = 2}, - [105] = {.lex_state = 506, .external_lex_state = 2}, - [106] = {.lex_state = 506, .external_lex_state = 2}, - [107] = {.lex_state = 506, .external_lex_state = 2}, - [108] = {.lex_state = 506, .external_lex_state = 2}, - [109] = {.lex_state = 506, .external_lex_state = 2}, - [110] = {.lex_state = 506, .external_lex_state = 2}, - [111] = {.lex_state = 506, .external_lex_state = 2}, - [112] = {.lex_state = 506, .external_lex_state = 2}, - [113] = {.lex_state = 506, .external_lex_state = 2}, - [114] = {.lex_state = 506, .external_lex_state = 2}, - [115] = {.lex_state = 506, .external_lex_state = 2}, - [116] = {.lex_state = 506, .external_lex_state = 2}, - [117] = {.lex_state = 506, .external_lex_state = 2}, - [118] = {.lex_state = 506, .external_lex_state = 2}, - [119] = {.lex_state = 506, .external_lex_state = 2}, - [120] = {.lex_state = 506, .external_lex_state = 2}, - [121] = {.lex_state = 506, .external_lex_state = 2}, - [122] = {.lex_state = 506, .external_lex_state = 2}, - [123] = {.lex_state = 506, .external_lex_state = 2}, - [124] = {.lex_state = 506, .external_lex_state = 2}, - [125] = {.lex_state = 506, .external_lex_state = 2}, - [126] = {.lex_state = 506, .external_lex_state = 2}, - [127] = {.lex_state = 506, .external_lex_state = 2}, - [128] = {.lex_state = 506, .external_lex_state = 2}, - [129] = {.lex_state = 506, .external_lex_state = 2}, - [130] = {.lex_state = 506, .external_lex_state = 2}, - [131] = {.lex_state = 506, .external_lex_state = 2}, - [132] = {.lex_state = 506, .external_lex_state = 2}, - [133] = {.lex_state = 506, .external_lex_state = 2}, - [134] = {.lex_state = 506, .external_lex_state = 2}, - [135] = {.lex_state = 506, .external_lex_state = 2}, - [136] = {.lex_state = 506, .external_lex_state = 2}, - [137] = {.lex_state = 506, .external_lex_state = 2}, - [138] = {.lex_state = 506, .external_lex_state = 2}, - [139] = {.lex_state = 506, .external_lex_state = 2}, - [140] = {.lex_state = 506, .external_lex_state = 2}, - [141] = {.lex_state = 506, .external_lex_state = 2}, - [142] = {.lex_state = 506, .external_lex_state = 2}, - [143] = {.lex_state = 506, .external_lex_state = 2}, - [144] = {.lex_state = 506, .external_lex_state = 2}, - [145] = {.lex_state = 506, .external_lex_state = 2}, - [146] = {.lex_state = 506, .external_lex_state = 2}, - [147] = {.lex_state = 506, .external_lex_state = 2}, - [148] = {.lex_state = 506, .external_lex_state = 2}, - [149] = {.lex_state = 506, .external_lex_state = 2}, - [150] = {.lex_state = 506, .external_lex_state = 2}, - [151] = {.lex_state = 506, .external_lex_state = 2}, - [152] = {.lex_state = 506, .external_lex_state = 2}, - [153] = {.lex_state = 506, .external_lex_state = 2}, - [154] = {.lex_state = 506, .external_lex_state = 2}, - [155] = {.lex_state = 506, .external_lex_state = 2}, - [156] = {.lex_state = 506, .external_lex_state = 2}, - [157] = {.lex_state = 506, .external_lex_state = 2}, - [158] = {.lex_state = 506, .external_lex_state = 2}, - [159] = {.lex_state = 506, .external_lex_state = 2}, - [160] = {.lex_state = 506, .external_lex_state = 2}, - [161] = {.lex_state = 506, .external_lex_state = 2}, - [162] = {.lex_state = 506, .external_lex_state = 2}, - [163] = {.lex_state = 506, .external_lex_state = 2}, - [164] = {.lex_state = 506, .external_lex_state = 2}, - [165] = {.lex_state = 506, .external_lex_state = 2}, - [166] = {.lex_state = 506, .external_lex_state = 2}, - [167] = {.lex_state = 506, .external_lex_state = 2}, - [168] = {.lex_state = 506, .external_lex_state = 2}, - [169] = {.lex_state = 506, .external_lex_state = 2}, - [170] = {.lex_state = 506, .external_lex_state = 2}, - [171] = {.lex_state = 506, .external_lex_state = 2}, - [172] = {.lex_state = 506, .external_lex_state = 2}, - [173] = {.lex_state = 506, .external_lex_state = 2}, - [174] = {.lex_state = 506, .external_lex_state = 2}, - [175] = {.lex_state = 506, .external_lex_state = 2}, - [176] = {.lex_state = 506, .external_lex_state = 2}, - [177] = {.lex_state = 506, .external_lex_state = 2}, - [178] = {.lex_state = 506, .external_lex_state = 2}, - [179] = {.lex_state = 506, .external_lex_state = 2}, - [180] = {.lex_state = 506, .external_lex_state = 2}, - [181] = {.lex_state = 506, .external_lex_state = 2}, - [182] = {.lex_state = 506, .external_lex_state = 2}, - [183] = {.lex_state = 506, .external_lex_state = 2}, - [184] = {.lex_state = 506, .external_lex_state = 2}, - [185] = {.lex_state = 242, .external_lex_state = 2}, - [186] = {.lex_state = 506, .external_lex_state = 2}, - [187] = {.lex_state = 506, .external_lex_state = 2}, - [188] = {.lex_state = 506, .external_lex_state = 2}, - [189] = {.lex_state = 506, .external_lex_state = 2}, - [190] = {.lex_state = 506, .external_lex_state = 2}, - [191] = {.lex_state = 506, .external_lex_state = 2}, - [192] = {.lex_state = 506, .external_lex_state = 2}, - [193] = {.lex_state = 506, .external_lex_state = 2}, - [194] = {.lex_state = 506, .external_lex_state = 2}, - [195] = {.lex_state = 506, .external_lex_state = 2}, - [196] = {.lex_state = 506, .external_lex_state = 2}, - [197] = {.lex_state = 506, .external_lex_state = 2}, - [198] = {.lex_state = 506, .external_lex_state = 2}, - [199] = {.lex_state = 506, .external_lex_state = 2}, - [200] = {.lex_state = 506, .external_lex_state = 2}, - [201] = {.lex_state = 506, .external_lex_state = 2}, - [202] = {.lex_state = 506, .external_lex_state = 2}, - [203] = {.lex_state = 506, .external_lex_state = 2}, - [204] = {.lex_state = 506, .external_lex_state = 2}, - [205] = {.lex_state = 506, .external_lex_state = 2}, - [206] = {.lex_state = 506, .external_lex_state = 2}, - [207] = {.lex_state = 506, .external_lex_state = 2}, - [208] = {.lex_state = 506, .external_lex_state = 2}, - [209] = {.lex_state = 506, .external_lex_state = 2}, - [210] = {.lex_state = 506, .external_lex_state = 2}, - [211] = {.lex_state = 506, .external_lex_state = 2}, - [212] = {.lex_state = 506, .external_lex_state = 2}, - [213] = {.lex_state = 506, .external_lex_state = 2}, - [214] = {.lex_state = 506, .external_lex_state = 2}, - [215] = {.lex_state = 506, .external_lex_state = 2}, - [216] = {.lex_state = 506, .external_lex_state = 2}, - [217] = {.lex_state = 506, .external_lex_state = 2}, - [218] = {.lex_state = 506, .external_lex_state = 2}, - [219] = {.lex_state = 506, .external_lex_state = 2}, - [220] = {.lex_state = 506, .external_lex_state = 2}, - [221] = {.lex_state = 506, .external_lex_state = 2}, - [222] = {.lex_state = 506, .external_lex_state = 2}, - [223] = {.lex_state = 506, .external_lex_state = 2}, - [224] = {.lex_state = 506, .external_lex_state = 2}, - [225] = {.lex_state = 506, .external_lex_state = 2}, - [226] = {.lex_state = 506, .external_lex_state = 2}, - [227] = {.lex_state = 506, .external_lex_state = 2}, - [228] = {.lex_state = 506, .external_lex_state = 2}, - [229] = {.lex_state = 506, .external_lex_state = 2}, - [230] = {.lex_state = 506, .external_lex_state = 2}, - [231] = {.lex_state = 506, .external_lex_state = 2}, - [232] = {.lex_state = 506, .external_lex_state = 2}, - [233] = {.lex_state = 506, .external_lex_state = 2}, - [234] = {.lex_state = 506, .external_lex_state = 2}, - [235] = {.lex_state = 506, .external_lex_state = 2}, - [236] = {.lex_state = 506, .external_lex_state = 2}, - [237] = {.lex_state = 506, .external_lex_state = 2}, - [238] = {.lex_state = 506, .external_lex_state = 2}, - [239] = {.lex_state = 506, .external_lex_state = 2}, - [240] = {.lex_state = 506, .external_lex_state = 2}, - [241] = {.lex_state = 506, .external_lex_state = 2}, - [242] = {.lex_state = 506, .external_lex_state = 2}, - [243] = {.lex_state = 506, .external_lex_state = 2}, - [244] = {.lex_state = 506, .external_lex_state = 2}, - [245] = {.lex_state = 506, .external_lex_state = 2}, - [246] = {.lex_state = 506, .external_lex_state = 2}, - [247] = {.lex_state = 506, .external_lex_state = 2}, - [248] = {.lex_state = 506, .external_lex_state = 2}, - [249] = {.lex_state = 506, .external_lex_state = 2}, - [250] = {.lex_state = 506, .external_lex_state = 2}, - [251] = {.lex_state = 506, .external_lex_state = 2}, - [252] = {.lex_state = 506, .external_lex_state = 2}, - [253] = {.lex_state = 506, .external_lex_state = 2}, - [254] = {.lex_state = 506, .external_lex_state = 2}, - [255] = {.lex_state = 506, .external_lex_state = 2}, - [256] = {.lex_state = 506, .external_lex_state = 2}, - [257] = {.lex_state = 506, .external_lex_state = 2}, - [258] = {.lex_state = 506, .external_lex_state = 2}, - [259] = {.lex_state = 506, .external_lex_state = 2}, - [260] = {.lex_state = 506, .external_lex_state = 2}, - [261] = {.lex_state = 506, .external_lex_state = 2}, - [262] = {.lex_state = 506, .external_lex_state = 2}, - [263] = {.lex_state = 506, .external_lex_state = 2}, - [264] = {.lex_state = 506, .external_lex_state = 2}, - [265] = {.lex_state = 506, .external_lex_state = 2}, - [266] = {.lex_state = 506, .external_lex_state = 2}, - [267] = {.lex_state = 506, .external_lex_state = 2}, - [268] = {.lex_state = 506, .external_lex_state = 2}, - [269] = {.lex_state = 506, .external_lex_state = 2}, - [270] = {.lex_state = 506, .external_lex_state = 2}, - [271] = {.lex_state = 506, .external_lex_state = 2}, - [272] = {.lex_state = 242, .external_lex_state = 2}, - [273] = {.lex_state = 506, .external_lex_state = 2}, - [274] = {.lex_state = 506, .external_lex_state = 2}, - [275] = {.lex_state = 506, .external_lex_state = 2}, - [276] = {.lex_state = 506, .external_lex_state = 2}, - [277] = {.lex_state = 506, .external_lex_state = 2}, - [278] = {.lex_state = 506, .external_lex_state = 2}, - [279] = {.lex_state = 506, .external_lex_state = 2}, - [280] = {.lex_state = 506, .external_lex_state = 2}, - [281] = {.lex_state = 506, .external_lex_state = 2}, - [282] = {.lex_state = 506, .external_lex_state = 2}, - [283] = {.lex_state = 506, .external_lex_state = 2}, - [284] = {.lex_state = 506, .external_lex_state = 2}, - [285] = {.lex_state = 506, .external_lex_state = 2}, - [286] = {.lex_state = 506, .external_lex_state = 2}, - [287] = {.lex_state = 506, .external_lex_state = 2}, - [288] = {.lex_state = 506, .external_lex_state = 2}, - [289] = {.lex_state = 242, .external_lex_state = 2}, - [290] = {.lex_state = 506, .external_lex_state = 2}, - [291] = {.lex_state = 506, .external_lex_state = 2}, - [292] = {.lex_state = 506, .external_lex_state = 2}, - [293] = {.lex_state = 506, .external_lex_state = 2}, - [294] = {.lex_state = 506, .external_lex_state = 2}, - [295] = {.lex_state = 506, .external_lex_state = 2}, - [296] = {.lex_state = 506, .external_lex_state = 2}, - [297] = {.lex_state = 506, .external_lex_state = 2}, - [298] = {.lex_state = 506, .external_lex_state = 2}, - [299] = {.lex_state = 506, .external_lex_state = 2}, - [300] = {.lex_state = 506, .external_lex_state = 2}, - [301] = {.lex_state = 506, .external_lex_state = 2}, - [302] = {.lex_state = 506, .external_lex_state = 2}, - [303] = {.lex_state = 506, .external_lex_state = 2}, - [304] = {.lex_state = 506, .external_lex_state = 2}, - [305] = {.lex_state = 506, .external_lex_state = 2}, - [306] = {.lex_state = 506, .external_lex_state = 2}, - [307] = {.lex_state = 506, .external_lex_state = 2}, - [308] = {.lex_state = 506, .external_lex_state = 2}, - [309] = {.lex_state = 506, .external_lex_state = 2}, - [310] = {.lex_state = 506, .external_lex_state = 2}, - [311] = {.lex_state = 506, .external_lex_state = 2}, - [312] = {.lex_state = 506, .external_lex_state = 2}, - [313] = {.lex_state = 242, .external_lex_state = 2}, - [314] = {.lex_state = 506, .external_lex_state = 2}, - [315] = {.lex_state = 506, .external_lex_state = 2}, - [316] = {.lex_state = 506, .external_lex_state = 2}, - [317] = {.lex_state = 506, .external_lex_state = 2}, - [318] = {.lex_state = 506, .external_lex_state = 2}, - [319] = {.lex_state = 506, .external_lex_state = 2}, - [320] = {.lex_state = 506, .external_lex_state = 2}, - [321] = {.lex_state = 506, .external_lex_state = 2}, - [322] = {.lex_state = 506, .external_lex_state = 2}, - [323] = {.lex_state = 506, .external_lex_state = 2}, - [324] = {.lex_state = 506, .external_lex_state = 2}, - [325] = {.lex_state = 506, .external_lex_state = 2}, - [326] = {.lex_state = 506, .external_lex_state = 2}, - [327] = {.lex_state = 506, .external_lex_state = 2}, - [328] = {.lex_state = 506, .external_lex_state = 2}, - [329] = {.lex_state = 506, .external_lex_state = 2}, - [330] = {.lex_state = 506, .external_lex_state = 2}, - [331] = {.lex_state = 506, .external_lex_state = 2}, - [332] = {.lex_state = 506, .external_lex_state = 2}, - [333] = {.lex_state = 506, .external_lex_state = 2}, - [334] = {.lex_state = 506, .external_lex_state = 2}, - [335] = {.lex_state = 506, .external_lex_state = 2}, - [336] = {.lex_state = 506, .external_lex_state = 2}, - [337] = {.lex_state = 506, .external_lex_state = 2}, - [338] = {.lex_state = 506, .external_lex_state = 2}, - [339] = {.lex_state = 506, .external_lex_state = 2}, - [340] = {.lex_state = 506, .external_lex_state = 2}, - [341] = {.lex_state = 506, .external_lex_state = 2}, - [342] = {.lex_state = 506, .external_lex_state = 2}, - [343] = {.lex_state = 506, .external_lex_state = 2}, - [344] = {.lex_state = 506, .external_lex_state = 2}, - [345] = {.lex_state = 506, .external_lex_state = 2}, - [346] = {.lex_state = 506, .external_lex_state = 2}, - [347] = {.lex_state = 506, .external_lex_state = 2}, - [348] = {.lex_state = 506, .external_lex_state = 2}, - [349] = {.lex_state = 227, .external_lex_state = 6}, - [350] = {.lex_state = 227, .external_lex_state = 6}, - [351] = {.lex_state = 228, .external_lex_state = 7}, - [352] = {.lex_state = 227, .external_lex_state = 6}, - [353] = {.lex_state = 227, .external_lex_state = 6}, - [354] = {.lex_state = 227, .external_lex_state = 6}, - [355] = {.lex_state = 227, .external_lex_state = 6}, - [356] = {.lex_state = 226, .external_lex_state = 7}, - [357] = {.lex_state = 225, .external_lex_state = 7}, - [358] = {.lex_state = 227, .external_lex_state = 6}, - [359] = {.lex_state = 227, .external_lex_state = 6}, - [360] = {.lex_state = 224, .external_lex_state = 7}, - [361] = {.lex_state = 225, .external_lex_state = 7}, - [362] = {.lex_state = 12, .external_lex_state = 8}, - [363] = {.lex_state = 12, .external_lex_state = 8}, - [364] = {.lex_state = 222, .external_lex_state = 9}, - [365] = {.lex_state = 222, .external_lex_state = 9}, - [366] = {.lex_state = 108, .external_lex_state = 4}, - [367] = {.lex_state = 108, .external_lex_state = 4}, - [368] = {.lex_state = 108, .external_lex_state = 4}, - [369] = {.lex_state = 108, .external_lex_state = 4}, - [370] = {.lex_state = 108, .external_lex_state = 4}, - [371] = {.lex_state = 108, .external_lex_state = 4}, - [372] = {.lex_state = 108, .external_lex_state = 4}, - [373] = {.lex_state = 108, .external_lex_state = 4}, - [374] = {.lex_state = 108, .external_lex_state = 4}, - [375] = {.lex_state = 108, .external_lex_state = 4}, - [376] = {.lex_state = 108, .external_lex_state = 4}, - [377] = {.lex_state = 108, .external_lex_state = 4}, - [378] = {.lex_state = 108, .external_lex_state = 4}, - [379] = {.lex_state = 108, .external_lex_state = 4}, - [380] = {.lex_state = 108, .external_lex_state = 4}, - [381] = {.lex_state = 108, .external_lex_state = 4}, - [382] = {.lex_state = 108, .external_lex_state = 4}, - [383] = {.lex_state = 108, .external_lex_state = 4}, - [384] = {.lex_state = 108, .external_lex_state = 4}, - [385] = {.lex_state = 108, .external_lex_state = 4}, - [386] = {.lex_state = 108, .external_lex_state = 4}, - [387] = {.lex_state = 108, .external_lex_state = 4}, - [388] = {.lex_state = 108, .external_lex_state = 4}, - [389] = {.lex_state = 108, .external_lex_state = 4}, - [390] = {.lex_state = 108, .external_lex_state = 4}, - [391] = {.lex_state = 162, .external_lex_state = 8}, - [392] = {.lex_state = 162, .external_lex_state = 8}, - [393] = {.lex_state = 245, .external_lex_state = 5}, - [394] = {.lex_state = 245, .external_lex_state = 5}, - [395] = {.lex_state = 162, .external_lex_state = 8}, - [396] = {.lex_state = 245, .external_lex_state = 5}, - [397] = {.lex_state = 162, .external_lex_state = 8}, - [398] = {.lex_state = 245, .external_lex_state = 5}, - [399] = {.lex_state = 245, .external_lex_state = 5}, - [400] = {.lex_state = 245, .external_lex_state = 5}, - [401] = {.lex_state = 245, .external_lex_state = 5}, - [402] = {.lex_state = 245, .external_lex_state = 5}, - [403] = {.lex_state = 245, .external_lex_state = 5}, - [404] = {.lex_state = 245, .external_lex_state = 5}, - [405] = {.lex_state = 245, .external_lex_state = 5}, - [406] = {.lex_state = 245, .external_lex_state = 5}, - [407] = {.lex_state = 245, .external_lex_state = 5}, - [408] = {.lex_state = 245, .external_lex_state = 5}, - [409] = {.lex_state = 245, .external_lex_state = 5}, - [410] = {.lex_state = 245, .external_lex_state = 5}, - [411] = {.lex_state = 245, .external_lex_state = 5}, - [412] = {.lex_state = 245, .external_lex_state = 5}, - [413] = {.lex_state = 245, .external_lex_state = 5}, - [414] = {.lex_state = 245, .external_lex_state = 5}, - [415] = {.lex_state = 245, .external_lex_state = 5}, - [416] = {.lex_state = 245, .external_lex_state = 5}, - [417] = {.lex_state = 245, .external_lex_state = 5}, - [418] = {.lex_state = 245, .external_lex_state = 5}, - [419] = {.lex_state = 245, .external_lex_state = 5}, - [420] = {.lex_state = 246, .external_lex_state = 9}, - [421] = {.lex_state = 246, .external_lex_state = 9}, - [422] = {.lex_state = 246, .external_lex_state = 9}, - [423] = {.lex_state = 246, .external_lex_state = 9}, - [424] = {.lex_state = 240, .external_lex_state = 2}, - [425] = {.lex_state = 240, .external_lex_state = 2}, - [426] = {.lex_state = 165, .external_lex_state = 8}, - [427] = {.lex_state = 165, .external_lex_state = 8}, - [428] = {.lex_state = 168, .external_lex_state = 8}, - [429] = {.lex_state = 168, .external_lex_state = 8}, - [430] = {.lex_state = 165, .external_lex_state = 8}, - [431] = {.lex_state = 493, .external_lex_state = 8}, - [432] = {.lex_state = 165, .external_lex_state = 8}, - [433] = {.lex_state = 493, .external_lex_state = 8}, - [434] = {.lex_state = 493, .external_lex_state = 8}, - [435] = {.lex_state = 165, .external_lex_state = 8}, - [436] = {.lex_state = 493, .external_lex_state = 8}, - [437] = {.lex_state = 493, .external_lex_state = 8}, - [438] = {.lex_state = 151, .external_lex_state = 8}, - [439] = {.lex_state = 493, .external_lex_state = 8}, - [440] = {.lex_state = 168, .external_lex_state = 8}, - [441] = {.lex_state = 493, .external_lex_state = 8}, - [442] = {.lex_state = 174, .external_lex_state = 10}, - [443] = {.lex_state = 174, .external_lex_state = 10}, - [444] = {.lex_state = 168, .external_lex_state = 8}, - [445] = {.lex_state = 151, .external_lex_state = 8}, - [446] = {.lex_state = 168, .external_lex_state = 8}, - [447] = {.lex_state = 493, .external_lex_state = 8}, - [448] = {.lex_state = 174, .external_lex_state = 10}, - [449] = {.lex_state = 164, .external_lex_state = 8}, - [450] = {.lex_state = 177, .external_lex_state = 10}, - [451] = {.lex_state = 177, .external_lex_state = 10}, - [452] = {.lex_state = 177, .external_lex_state = 10}, - [453] = {.lex_state = 164, .external_lex_state = 8}, - [454] = {.lex_state = 493, .external_lex_state = 8}, - [455] = {.lex_state = 493, .external_lex_state = 8}, - [456] = {.lex_state = 167, .external_lex_state = 8}, - [457] = {.lex_state = 493, .external_lex_state = 8}, - [458] = {.lex_state = 493, .external_lex_state = 8}, - [459] = {.lex_state = 493, .external_lex_state = 8}, - [460] = {.lex_state = 493, .external_lex_state = 8}, - [461] = {.lex_state = 167, .external_lex_state = 8}, - [462] = {.lex_state = 492, .external_lex_state = 8}, - [463] = {.lex_state = 180, .external_lex_state = 10}, - [464] = {.lex_state = 173, .external_lex_state = 8}, - [465] = {.lex_state = 180, .external_lex_state = 10}, - [466] = {.lex_state = 496, .external_lex_state = 10}, - [467] = {.lex_state = 180, .external_lex_state = 10}, - [468] = {.lex_state = 173, .external_lex_state = 8}, - [469] = {.lex_state = 492, .external_lex_state = 8}, - [470] = {.lex_state = 493, .external_lex_state = 8}, - [471] = {.lex_state = 496, .external_lex_state = 10}, - [472] = {.lex_state = 493, .external_lex_state = 8}, - [473] = {.lex_state = 493, .external_lex_state = 8}, - [474] = {.lex_state = 496, .external_lex_state = 10}, - [475] = {.lex_state = 493, .external_lex_state = 8}, - [476] = {.lex_state = 496, .external_lex_state = 10}, - [477] = {.lex_state = 493, .external_lex_state = 8}, - [478] = {.lex_state = 176, .external_lex_state = 8}, - [479] = {.lex_state = 496, .external_lex_state = 10}, - [480] = {.lex_state = 496, .external_lex_state = 10}, - [481] = {.lex_state = 176, .external_lex_state = 8}, - [482] = {.lex_state = 179, .external_lex_state = 10}, - [483] = {.lex_state = 506, .external_lex_state = 2}, - [484] = {.lex_state = 495, .external_lex_state = 8}, - [485] = {.lex_state = 496, .external_lex_state = 10}, - [486] = {.lex_state = 496, .external_lex_state = 10}, - [487] = {.lex_state = 174, .external_lex_state = 11}, - [488] = {.lex_state = 179, .external_lex_state = 10}, - [489] = {.lex_state = 492, .external_lex_state = 8}, - [490] = {.lex_state = 168, .external_lex_state = 8}, - [491] = {.lex_state = 495, .external_lex_state = 8}, - [492] = {.lex_state = 180, .external_lex_state = 10}, - [493] = {.lex_state = 184, .external_lex_state = 8}, - [494] = {.lex_state = 492, .external_lex_state = 8}, - [495] = {.lex_state = 185, .external_lex_state = 10}, - [496] = {.lex_state = 185, .external_lex_state = 10}, - [497] = {.lex_state = 496, .external_lex_state = 10}, - [498] = {.lex_state = 174, .external_lex_state = 11}, - [499] = {.lex_state = 185, .external_lex_state = 10}, - [500] = {.lex_state = 496, .external_lex_state = 10}, - [501] = {.lex_state = 496, .external_lex_state = 10}, - [502] = {.lex_state = 168, .external_lex_state = 8}, - [503] = {.lex_state = 184, .external_lex_state = 8}, - [504] = {.lex_state = 174, .external_lex_state = 11}, - [505] = {.lex_state = 180, .external_lex_state = 10}, - [506] = {.lex_state = 186, .external_lex_state = 10}, - [507] = {.lex_state = 276, .external_lex_state = 2}, - [508] = {.lex_state = 177, .external_lex_state = 11}, - [509] = {.lex_state = 177, .external_lex_state = 11}, - [510] = {.lex_state = 497, .external_lex_state = 10}, - [511] = {.lex_state = 189, .external_lex_state = 11}, - [512] = {.lex_state = 276, .external_lex_state = 2}, - [513] = {.lex_state = 276, .external_lex_state = 2}, - [514] = {.lex_state = 241, .external_lex_state = 2}, - [515] = {.lex_state = 276, .external_lex_state = 2}, - [516] = {.lex_state = 280, .external_lex_state = 12}, - [517] = {.lex_state = 189, .external_lex_state = 11}, - [518] = {.lex_state = 188, .external_lex_state = 10}, - [519] = {.lex_state = 506, .external_lex_state = 2}, - [520] = {.lex_state = 188, .external_lex_state = 10}, - [521] = {.lex_state = 495, .external_lex_state = 8}, - [522] = {.lex_state = 186, .external_lex_state = 10}, - [523] = {.lex_state = 177, .external_lex_state = 11}, - [524] = {.lex_state = 276, .external_lex_state = 2}, - [525] = {.lex_state = 497, .external_lex_state = 10}, - [526] = {.lex_state = 189, .external_lex_state = 11}, - [527] = {.lex_state = 497, .external_lex_state = 10}, - [528] = {.lex_state = 276, .external_lex_state = 2}, - [529] = {.lex_state = 241, .external_lex_state = 2}, - [530] = {.lex_state = 276, .external_lex_state = 2}, - [531] = {.lex_state = 276, .external_lex_state = 2}, - [532] = {.lex_state = 497, .external_lex_state = 10}, - [533] = {.lex_state = 506, .external_lex_state = 2}, - [534] = {.lex_state = 497, .external_lex_state = 10}, - [535] = {.lex_state = 185, .external_lex_state = 10}, - [536] = {.lex_state = 495, .external_lex_state = 8}, - [537] = {.lex_state = 280, .external_lex_state = 12}, - [538] = {.lex_state = 497, .external_lex_state = 10}, - [539] = {.lex_state = 185, .external_lex_state = 10}, - [540] = {.lex_state = 497, .external_lex_state = 10}, - [541] = {.lex_state = 168, .external_lex_state = 8}, - [542] = {.lex_state = 496, .external_lex_state = 11}, - [543] = {.lex_state = 496, .external_lex_state = 11}, - [544] = {.lex_state = 496, .external_lex_state = 11}, - [545] = {.lex_state = 191, .external_lex_state = 11}, - [546] = {.lex_state = 168, .external_lex_state = 8}, - [547] = {.lex_state = 168, .external_lex_state = 8}, - [548] = {.lex_state = 186, .external_lex_state = 11}, - [549] = {.lex_state = 497, .external_lex_state = 10}, - [550] = {.lex_state = 498, .external_lex_state = 10}, - [551] = {.lex_state = 244, .external_lex_state = 13}, - [552] = {.lex_state = 186, .external_lex_state = 11}, - [553] = {.lex_state = 497, .external_lex_state = 10}, - [554] = {.lex_state = 186, .external_lex_state = 11}, - [555] = {.lex_state = 497, .external_lex_state = 10}, - [556] = {.lex_state = 497, .external_lex_state = 10}, - [557] = {.lex_state = 186, .external_lex_state = 11}, - [558] = {.lex_state = 497, .external_lex_state = 10}, - [559] = {.lex_state = 496, .external_lex_state = 11}, - [560] = {.lex_state = 191, .external_lex_state = 11}, - [561] = {.lex_state = 191, .external_lex_state = 11}, - [562] = {.lex_state = 192, .external_lex_state = 10}, - [563] = {.lex_state = 189, .external_lex_state = 11}, - [564] = {.lex_state = 244, .external_lex_state = 13}, - [565] = {.lex_state = 244, .external_lex_state = 13}, - [566] = {.lex_state = 194, .external_lex_state = 10}, - [567] = {.lex_state = 244, .external_lex_state = 13}, - [568] = {.lex_state = 497, .external_lex_state = 10}, - [569] = {.lex_state = 496, .external_lex_state = 11}, - [570] = {.lex_state = 194, .external_lex_state = 10}, - [571] = {.lex_state = 498, .external_lex_state = 10}, - [572] = {.lex_state = 244, .external_lex_state = 13}, - [573] = {.lex_state = 189, .external_lex_state = 11}, - [574] = {.lex_state = 192, .external_lex_state = 10}, - [575] = {.lex_state = 244, .external_lex_state = 13}, - [576] = {.lex_state = 496, .external_lex_state = 11}, - [577] = {.lex_state = 244, .external_lex_state = 13}, - [578] = {.lex_state = 192, .external_lex_state = 11}, - [579] = {.lex_state = 196, .external_lex_state = 8}, - [580] = {.lex_state = 244, .external_lex_state = 13}, - [581] = {.lex_state = 244, .external_lex_state = 13}, - [582] = {.lex_state = 244, .external_lex_state = 13}, - [583] = {.lex_state = 496, .external_lex_state = 11}, - [584] = {.lex_state = 496, .external_lex_state = 11}, - [585] = {.lex_state = 177, .external_lex_state = 10}, - [586] = {.lex_state = 496, .external_lex_state = 11}, - [587] = {.lex_state = 496, .external_lex_state = 11}, - [588] = {.lex_state = 191, .external_lex_state = 11}, - [589] = {.lex_state = 191, .external_lex_state = 11}, - [590] = {.lex_state = 244, .external_lex_state = 13}, - [591] = {.lex_state = 177, .external_lex_state = 10}, - [592] = {.lex_state = 198, .external_lex_state = 10}, - [593] = {.lex_state = 198, .external_lex_state = 10}, - [594] = {.lex_state = 196, .external_lex_state = 8}, - [595] = {.lex_state = 499, .external_lex_state = 11}, - [596] = {.lex_state = 499, .external_lex_state = 11}, - [597] = {.lex_state = 499, .external_lex_state = 11}, - [598] = {.lex_state = 499, .external_lex_state = 11}, - [599] = {.lex_state = 244, .external_lex_state = 13}, - [600] = {.lex_state = 280, .external_lex_state = 12}, - [601] = {.lex_state = 280, .external_lex_state = 12}, - [602] = {.lex_state = 498, .external_lex_state = 10}, - [603] = {.lex_state = 500, .external_lex_state = 10}, - [604] = {.lex_state = 500, .external_lex_state = 10}, - [605] = {.lex_state = 497, .external_lex_state = 10}, - [606] = {.lex_state = 499, .external_lex_state = 11}, - [607] = {.lex_state = 499, .external_lex_state = 11}, - [608] = {.lex_state = 497, .external_lex_state = 10}, - [609] = {.lex_state = 496, .external_lex_state = 11}, - [610] = {.lex_state = 244, .external_lex_state = 13}, - [611] = {.lex_state = 244, .external_lex_state = 13}, - [612] = {.lex_state = 177, .external_lex_state = 10}, - [613] = {.lex_state = 498, .external_lex_state = 10}, - [614] = {.lex_state = 192, .external_lex_state = 11}, - [615] = {.lex_state = 192, .external_lex_state = 11}, - [616] = {.lex_state = 192, .external_lex_state = 11}, - [617] = {.lex_state = 280, .external_lex_state = 12}, - [618] = {.lex_state = 244, .external_lex_state = 13}, - [619] = {.lex_state = 500, .external_lex_state = 11}, - [620] = {.lex_state = 242, .external_lex_state = 2}, - [621] = {.lex_state = 499, .external_lex_state = 11}, - [622] = {.lex_state = 202, .external_lex_state = 8}, - [623] = {.lex_state = 198, .external_lex_state = 11}, - [624] = {.lex_state = 202, .external_lex_state = 8}, - [625] = {.lex_state = 499, .external_lex_state = 11}, - [626] = {.lex_state = 198, .external_lex_state = 11}, - [627] = {.lex_state = 500, .external_lex_state = 10}, - [628] = {.lex_state = 499, .external_lex_state = 11}, - [629] = {.lex_state = 499, .external_lex_state = 11}, - [630] = {.lex_state = 499, .external_lex_state = 11}, - [631] = {.lex_state = 506, .external_lex_state = 2}, - [632] = {.lex_state = 499, .external_lex_state = 11}, - [633] = {.lex_state = 500, .external_lex_state = 11}, - [634] = {.lex_state = 230, .external_lex_state = 12}, - [635] = {.lex_state = 500, .external_lex_state = 11}, - [636] = {.lex_state = 230, .external_lex_state = 12}, - [637] = {.lex_state = 289, .external_lex_state = 14}, - [638] = {.lex_state = 289, .external_lex_state = 14}, - [639] = {.lex_state = 500, .external_lex_state = 11}, - [640] = {.lex_state = 499, .external_lex_state = 11}, - [641] = {.lex_state = 506, .external_lex_state = 2}, - [642] = {.lex_state = 500, .external_lex_state = 10}, - [643] = {.lex_state = 289, .external_lex_state = 14}, - [644] = {.lex_state = 198, .external_lex_state = 11}, - [645] = {.lex_state = 198, .external_lex_state = 11}, - [646] = {.lex_state = 506, .external_lex_state = 2}, - [647] = {.lex_state = 499, .external_lex_state = 11}, - [648] = {.lex_state = 499, .external_lex_state = 11}, - [649] = {.lex_state = 499, .external_lex_state = 11}, - [650] = {.lex_state = 195, .external_lex_state = 15}, - [651] = {.lex_state = 185, .external_lex_state = 10}, - [652] = {.lex_state = 283, .external_lex_state = 16}, - [653] = {.lex_state = 195, .external_lex_state = 15}, - [654] = {.lex_state = 197, .external_lex_state = 4}, - [655] = {.lex_state = 283, .external_lex_state = 16}, - [656] = {.lex_state = 506, .external_lex_state = 2}, - [657] = {.lex_state = 500, .external_lex_state = 11}, - [658] = {.lex_state = 500, .external_lex_state = 11}, - [659] = {.lex_state = 195, .external_lex_state = 15}, - [660] = {.lex_state = 180, .external_lex_state = 10}, - [661] = {.lex_state = 180, .external_lex_state = 10}, - [662] = {.lex_state = 197, .external_lex_state = 4}, - [663] = {.lex_state = 499, .external_lex_state = 11}, - [664] = {.lex_state = 197, .external_lex_state = 4}, - [665] = {.lex_state = 506, .external_lex_state = 2}, - [666] = {.lex_state = 195, .external_lex_state = 15}, - [667] = {.lex_state = 197, .external_lex_state = 4}, - [668] = {.lex_state = 500, .external_lex_state = 11}, - [669] = {.lex_state = 231, .external_lex_state = 12}, - [670] = {.lex_state = 231, .external_lex_state = 12}, - [671] = {.lex_state = 185, .external_lex_state = 10}, - [672] = {.lex_state = 500, .external_lex_state = 11}, - [673] = {.lex_state = 197, .external_lex_state = 4}, - [674] = {.lex_state = 197, .external_lex_state = 4}, - [675] = {.lex_state = 195, .external_lex_state = 15}, - [676] = {.lex_state = 195, .external_lex_state = 15}, - [677] = {.lex_state = 499, .external_lex_state = 11}, - [678] = {.lex_state = 185, .external_lex_state = 10}, - [679] = {.lex_state = 180, .external_lex_state = 10}, - [680] = {.lex_state = 180, .external_lex_state = 10}, - [681] = {.lex_state = 197, .external_lex_state = 4}, - [682] = {.lex_state = 506, .external_lex_state = 2}, - [683] = {.lex_state = 195, .external_lex_state = 15}, - [684] = {.lex_state = 499, .external_lex_state = 11}, - [685] = {.lex_state = 283, .external_lex_state = 16}, - [686] = {.lex_state = 195, .external_lex_state = 15}, - [687] = {.lex_state = 177, .external_lex_state = 11}, - [688] = {.lex_state = 197, .external_lex_state = 4}, - [689] = {.lex_state = 185, .external_lex_state = 10}, - [690] = {.lex_state = 197, .external_lex_state = 4}, - [691] = {.lex_state = 197, .external_lex_state = 4}, - [692] = {.lex_state = 197, .external_lex_state = 4}, - [693] = {.lex_state = 199, .external_lex_state = 4}, - [694] = {.lex_state = 197, .external_lex_state = 4}, - [695] = {.lex_state = 197, .external_lex_state = 4}, - [696] = {.lex_state = 197, .external_lex_state = 4}, - [697] = {.lex_state = 279, .external_lex_state = 14}, - [698] = {.lex_state = 197, .external_lex_state = 4}, - [699] = {.lex_state = 197, .external_lex_state = 4}, - [700] = {.lex_state = 185, .external_lex_state = 10}, - [701] = {.lex_state = 199, .external_lex_state = 4}, - [702] = {.lex_state = 197, .external_lex_state = 4}, - [703] = {.lex_state = 197, .external_lex_state = 4}, - [704] = {.lex_state = 199, .external_lex_state = 4}, - [705] = {.lex_state = 197, .external_lex_state = 4}, - [706] = {.lex_state = 204, .external_lex_state = 10}, - [707] = {.lex_state = 279, .external_lex_state = 14}, - [708] = {.lex_state = 279, .external_lex_state = 14}, - [709] = {.lex_state = 232, .external_lex_state = 16}, - [710] = {.lex_state = 177, .external_lex_state = 11}, - [711] = {.lex_state = 199, .external_lex_state = 4}, - [712] = {.lex_state = 197, .external_lex_state = 4}, - [713] = {.lex_state = 185, .external_lex_state = 10}, - [714] = {.lex_state = 185, .external_lex_state = 10}, - [715] = {.lex_state = 197, .external_lex_state = 4}, - [716] = {.lex_state = 283, .external_lex_state = 16}, - [717] = {.lex_state = 232, .external_lex_state = 16}, - [718] = {.lex_state = 204, .external_lex_state = 10}, - [719] = {.lex_state = 197, .external_lex_state = 4}, - [720] = {.lex_state = 197, .external_lex_state = 4}, - [721] = {.lex_state = 185, .external_lex_state = 10}, - [722] = {.lex_state = 197, .external_lex_state = 4}, - [723] = {.lex_state = 197, .external_lex_state = 4}, - [724] = {.lex_state = 197, .external_lex_state = 4}, - [725] = {.lex_state = 177, .external_lex_state = 11}, - [726] = {.lex_state = 197, .external_lex_state = 4}, - [727] = {.lex_state = 197, .external_lex_state = 4}, - [728] = {.lex_state = 185, .external_lex_state = 10}, - [729] = {.lex_state = 197, .external_lex_state = 4}, - [730] = {.lex_state = 197, .external_lex_state = 4}, - [731] = {.lex_state = 197, .external_lex_state = 4}, - [732] = {.lex_state = 199, .external_lex_state = 4}, - [733] = {.lex_state = 197, .external_lex_state = 4}, - [734] = {.lex_state = 197, .external_lex_state = 4}, - [735] = {.lex_state = 197, .external_lex_state = 4}, - [736] = {.lex_state = 199, .external_lex_state = 4}, - [737] = {.lex_state = 197, .external_lex_state = 4}, - [738] = {.lex_state = 199, .external_lex_state = 4}, - [739] = {.lex_state = 197, .external_lex_state = 4}, - [740] = {.lex_state = 197, .external_lex_state = 4}, - [741] = {.lex_state = 283, .external_lex_state = 16}, - [742] = {.lex_state = 199, .external_lex_state = 4}, - [743] = {.lex_state = 199, .external_lex_state = 4}, - [744] = {.lex_state = 497, .external_lex_state = 10}, - [745] = {.lex_state = 289, .external_lex_state = 17}, - [746] = {.lex_state = 191, .external_lex_state = 11}, - [747] = {.lex_state = 501, .external_lex_state = 4}, - [748] = {.lex_state = 286, .external_lex_state = 18}, - [749] = {.lex_state = 191, .external_lex_state = 11}, - [750] = {.lex_state = 206, .external_lex_state = 10}, - [751] = {.lex_state = 501, .external_lex_state = 4}, - [752] = {.lex_state = 199, .external_lex_state = 4}, - [753] = {.lex_state = 199, .external_lex_state = 4}, - [754] = {.lex_state = 199, .external_lex_state = 4}, - [755] = {.lex_state = 501, .external_lex_state = 4}, - [756] = {.lex_state = 501, .external_lex_state = 4}, - [757] = {.lex_state = 165, .external_lex_state = 8}, - [758] = {.lex_state = 277, .external_lex_state = 2}, - [759] = {.lex_state = 277, .external_lex_state = 2}, - [760] = {.lex_state = 199, .external_lex_state = 4}, - [761] = {.lex_state = 199, .external_lex_state = 4}, - [762] = {.lex_state = 199, .external_lex_state = 4}, - [763] = {.lex_state = 233, .external_lex_state = 14}, - [764] = {.lex_state = 199, .external_lex_state = 4}, - [765] = {.lex_state = 497, .external_lex_state = 10}, - [766] = {.lex_state = 286, .external_lex_state = 18}, - [767] = {.lex_state = 206, .external_lex_state = 10}, - [768] = {.lex_state = 199, .external_lex_state = 4}, - [769] = {.lex_state = 199, .external_lex_state = 4}, - [770] = {.lex_state = 199, .external_lex_state = 4}, - [771] = {.lex_state = 199, .external_lex_state = 4}, - [772] = {.lex_state = 191, .external_lex_state = 11}, - [773] = {.lex_state = 199, .external_lex_state = 4}, - [774] = {.lex_state = 279, .external_lex_state = 14}, - [775] = {.lex_state = 199, .external_lex_state = 4}, - [776] = {.lex_state = 497, .external_lex_state = 10}, - [777] = {.lex_state = 279, .external_lex_state = 14}, - [778] = {.lex_state = 233, .external_lex_state = 14}, - [779] = {.lex_state = 501, .external_lex_state = 4}, - [780] = {.lex_state = 501, .external_lex_state = 4}, - [781] = {.lex_state = 199, .external_lex_state = 4}, - [782] = {.lex_state = 501, .external_lex_state = 4}, - [783] = {.lex_state = 289, .external_lex_state = 17}, - [784] = {.lex_state = 286, .external_lex_state = 18}, - [785] = {.lex_state = 199, .external_lex_state = 4}, - [786] = {.lex_state = 501, .external_lex_state = 4}, - [787] = {.lex_state = 289, .external_lex_state = 17}, - [788] = {.lex_state = 277, .external_lex_state = 2}, - [789] = {.lex_state = 497, .external_lex_state = 10}, - [790] = {.lex_state = 501, .external_lex_state = 4}, - [791] = {.lex_state = 199, .external_lex_state = 4}, - [792] = {.lex_state = 497, .external_lex_state = 10}, - [793] = {.lex_state = 199, .external_lex_state = 4}, - [794] = {.lex_state = 199, .external_lex_state = 4}, - [795] = {.lex_state = 199, .external_lex_state = 4}, - [796] = {.lex_state = 199, .external_lex_state = 4}, - [797] = {.lex_state = 199, .external_lex_state = 4}, - [798] = {.lex_state = 501, .external_lex_state = 4}, - [799] = {.lex_state = 199, .external_lex_state = 4}, - [800] = {.lex_state = 199, .external_lex_state = 4}, - [801] = {.lex_state = 199, .external_lex_state = 4}, - [802] = {.lex_state = 497, .external_lex_state = 10}, - [803] = {.lex_state = 277, .external_lex_state = 2}, - [804] = {.lex_state = 199, .external_lex_state = 4}, - [805] = {.lex_state = 199, .external_lex_state = 4}, - [806] = {.lex_state = 277, .external_lex_state = 2}, - [807] = {.lex_state = 199, .external_lex_state = 4}, - [808] = {.lex_state = 199, .external_lex_state = 4}, - [809] = {.lex_state = 501, .external_lex_state = 4}, - [810] = {.lex_state = 165, .external_lex_state = 8}, - [811] = {.lex_state = 497, .external_lex_state = 10}, - [812] = {.lex_state = 277, .external_lex_state = 2}, - [813] = {.lex_state = 501, .external_lex_state = 4}, - [814] = {.lex_state = 277, .external_lex_state = 2}, - [815] = {.lex_state = 497, .external_lex_state = 10}, - [816] = {.lex_state = 277, .external_lex_state = 2}, - [817] = {.lex_state = 501, .external_lex_state = 4}, - [818] = {.lex_state = 501, .external_lex_state = 4}, - [819] = {.lex_state = 501, .external_lex_state = 4}, - [820] = {.lex_state = 203, .external_lex_state = 19}, - [821] = {.lex_state = 497, .external_lex_state = 10}, - [822] = {.lex_state = 501, .external_lex_state = 4}, - [823] = {.lex_state = 501, .external_lex_state = 4}, - [824] = {.lex_state = 501, .external_lex_state = 4}, - [825] = {.lex_state = 501, .external_lex_state = 4}, - [826] = {.lex_state = 206, .external_lex_state = 11}, - [827] = {.lex_state = 168, .external_lex_state = 8}, - [828] = {.lex_state = 501, .external_lex_state = 4}, - [829] = {.lex_state = 203, .external_lex_state = 19}, - [830] = {.lex_state = 501, .external_lex_state = 4}, - [831] = {.lex_state = 501, .external_lex_state = 4}, - [832] = {.lex_state = 205, .external_lex_state = 19}, - [833] = {.lex_state = 205, .external_lex_state = 19}, - [834] = {.lex_state = 501, .external_lex_state = 4}, - [835] = {.lex_state = 501, .external_lex_state = 4}, - [836] = {.lex_state = 501, .external_lex_state = 4}, - [837] = {.lex_state = 287, .external_lex_state = 17}, - [838] = {.lex_state = 497, .external_lex_state = 10}, - [839] = {.lex_state = 501, .external_lex_state = 4}, - [840] = {.lex_state = 501, .external_lex_state = 4}, - [841] = {.lex_state = 205, .external_lex_state = 19}, - [842] = {.lex_state = 205, .external_lex_state = 19}, - [843] = {.lex_state = 205, .external_lex_state = 19}, - [844] = {.lex_state = 191, .external_lex_state = 11}, - [845] = {.lex_state = 191, .external_lex_state = 11}, - [846] = {.lex_state = 501, .external_lex_state = 4}, - [847] = {.lex_state = 287, .external_lex_state = 17}, - [848] = {.lex_state = 501, .external_lex_state = 4}, - [849] = {.lex_state = 165, .external_lex_state = 8}, - [850] = {.lex_state = 501, .external_lex_state = 4}, - [851] = {.lex_state = 205, .external_lex_state = 19}, - [852] = {.lex_state = 205, .external_lex_state = 19}, - [853] = {.lex_state = 501, .external_lex_state = 4}, - [854] = {.lex_state = 501, .external_lex_state = 4}, - [855] = {.lex_state = 497, .external_lex_state = 10}, - [856] = {.lex_state = 206, .external_lex_state = 11}, - [857] = {.lex_state = 205, .external_lex_state = 19}, - [858] = {.lex_state = 205, .external_lex_state = 19}, - [859] = {.lex_state = 287, .external_lex_state = 17}, - [860] = {.lex_state = 250, .external_lex_state = 20}, - [861] = {.lex_state = 250, .external_lex_state = 20}, - [862] = {.lex_state = 205, .external_lex_state = 19}, - [863] = {.lex_state = 205, .external_lex_state = 19}, - [864] = {.lex_state = 203, .external_lex_state = 19}, - [865] = {.lex_state = 234, .external_lex_state = 18}, - [866] = {.lex_state = 501, .external_lex_state = 4}, - [867] = {.lex_state = 165, .external_lex_state = 8}, - [868] = {.lex_state = 203, .external_lex_state = 19}, - [869] = {.lex_state = 501, .external_lex_state = 4}, - [870] = {.lex_state = 203, .external_lex_state = 19}, - [871] = {.lex_state = 205, .external_lex_state = 19}, - [872] = {.lex_state = 497, .external_lex_state = 10}, - [873] = {.lex_state = 501, .external_lex_state = 4}, - [874] = {.lex_state = 205, .external_lex_state = 19}, - [875] = {.lex_state = 501, .external_lex_state = 4}, - [876] = {.lex_state = 205, .external_lex_state = 19}, - [877] = {.lex_state = 203, .external_lex_state = 19}, - [878] = {.lex_state = 501, .external_lex_state = 4}, - [879] = {.lex_state = 501, .external_lex_state = 4}, - [880] = {.lex_state = 165, .external_lex_state = 8}, - [881] = {.lex_state = 497, .external_lex_state = 10}, - [882] = {.lex_state = 497, .external_lex_state = 10}, - [883] = {.lex_state = 501, .external_lex_state = 4}, - [884] = {.lex_state = 501, .external_lex_state = 4}, - [885] = {.lex_state = 501, .external_lex_state = 4}, - [886] = {.lex_state = 501, .external_lex_state = 4}, - [887] = {.lex_state = 501, .external_lex_state = 4}, - [888] = {.lex_state = 501, .external_lex_state = 4}, - [889] = {.lex_state = 501, .external_lex_state = 4}, - [890] = {.lex_state = 206, .external_lex_state = 11}, - [891] = {.lex_state = 206, .external_lex_state = 11}, - [892] = {.lex_state = 501, .external_lex_state = 4}, - [893] = {.lex_state = 501, .external_lex_state = 4}, - [894] = {.lex_state = 501, .external_lex_state = 4}, - [895] = {.lex_state = 501, .external_lex_state = 4}, - [896] = {.lex_state = 501, .external_lex_state = 4}, - [897] = {.lex_state = 501, .external_lex_state = 4}, - [898] = {.lex_state = 501, .external_lex_state = 4}, - [899] = {.lex_state = 501, .external_lex_state = 4}, - [900] = {.lex_state = 497, .external_lex_state = 10}, - [901] = {.lex_state = 501, .external_lex_state = 4}, - [902] = {.lex_state = 501, .external_lex_state = 4}, - [903] = {.lex_state = 501, .external_lex_state = 4}, - [904] = {.lex_state = 501, .external_lex_state = 4}, - [905] = {.lex_state = 165, .external_lex_state = 8}, - [906] = {.lex_state = 501, .external_lex_state = 4}, - [907] = {.lex_state = 501, .external_lex_state = 4}, - [908] = {.lex_state = 497, .external_lex_state = 10}, - [909] = {.lex_state = 165, .external_lex_state = 8}, - [910] = {.lex_state = 501, .external_lex_state = 4}, - [911] = {.lex_state = 286, .external_lex_state = 18}, - [912] = {.lex_state = 501, .external_lex_state = 4}, - [913] = {.lex_state = 501, .external_lex_state = 4}, - [914] = {.lex_state = 286, .external_lex_state = 18}, - [915] = {.lex_state = 501, .external_lex_state = 4}, - [916] = {.lex_state = 203, .external_lex_state = 19}, - [917] = {.lex_state = 235, .external_lex_state = 14}, - [918] = {.lex_state = 203, .external_lex_state = 19}, - [919] = {.lex_state = 168, .external_lex_state = 8}, - [920] = {.lex_state = 501, .external_lex_state = 4}, - [921] = {.lex_state = 497, .external_lex_state = 10}, - [922] = {.lex_state = 235, .external_lex_state = 14}, - [923] = {.lex_state = 501, .external_lex_state = 4}, - [924] = {.lex_state = 501, .external_lex_state = 4}, - [925] = {.lex_state = 501, .external_lex_state = 4}, - [926] = {.lex_state = 501, .external_lex_state = 4}, - [927] = {.lex_state = 501, .external_lex_state = 4}, - [928] = {.lex_state = 501, .external_lex_state = 4}, - [929] = {.lex_state = 501, .external_lex_state = 4}, - [930] = {.lex_state = 501, .external_lex_state = 4}, - [931] = {.lex_state = 165, .external_lex_state = 8}, - [932] = {.lex_state = 501, .external_lex_state = 4}, - [933] = {.lex_state = 497, .external_lex_state = 10}, - [934] = {.lex_state = 501, .external_lex_state = 4}, - [935] = {.lex_state = 501, .external_lex_state = 4}, - [936] = {.lex_state = 501, .external_lex_state = 4}, - [937] = {.lex_state = 501, .external_lex_state = 4}, - [938] = {.lex_state = 501, .external_lex_state = 4}, - [939] = {.lex_state = 501, .external_lex_state = 4}, - [940] = {.lex_state = 501, .external_lex_state = 4}, - [941] = {.lex_state = 234, .external_lex_state = 18}, - [942] = {.lex_state = 501, .external_lex_state = 4}, - [943] = {.lex_state = 165, .external_lex_state = 8}, - [944] = {.lex_state = 203, .external_lex_state = 21}, - [945] = {.lex_state = 168, .external_lex_state = 8}, - [946] = {.lex_state = 207, .external_lex_state = 19}, - [947] = {.lex_state = 207, .external_lex_state = 19}, - [948] = {.lex_state = 493, .external_lex_state = 8}, - [949] = {.lex_state = 205, .external_lex_state = 19}, - [950] = {.lex_state = 248, .external_lex_state = 22}, - [951] = {.lex_state = 168, .external_lex_state = 8}, - [952] = {.lex_state = 209, .external_lex_state = 19}, - [953] = {.lex_state = 203, .external_lex_state = 19}, - [954] = {.lex_state = 203, .external_lex_state = 19}, - [955] = {.lex_state = 203, .external_lex_state = 19}, - [956] = {.lex_state = 209, .external_lex_state = 19}, - [957] = {.lex_state = 247, .external_lex_state = 22}, - [958] = {.lex_state = 205, .external_lex_state = 19}, - [959] = {.lex_state = 165, .external_lex_state = 8}, - [960] = {.lex_state = 203, .external_lex_state = 21}, - [961] = {.lex_state = 203, .external_lex_state = 21}, - [962] = {.lex_state = 247, .external_lex_state = 22}, - [963] = {.lex_state = 209, .external_lex_state = 19}, - [964] = {.lex_state = 209, .external_lex_state = 19}, - [965] = {.lex_state = 501, .external_lex_state = 4}, - [966] = {.lex_state = 501, .external_lex_state = 4}, - [967] = {.lex_state = 165, .external_lex_state = 8}, - [968] = {.lex_state = 209, .external_lex_state = 19}, - [969] = {.lex_state = 168, .external_lex_state = 8}, - [970] = {.lex_state = 203, .external_lex_state = 19}, - [971] = {.lex_state = 207, .external_lex_state = 19}, - [972] = {.lex_state = 235, .external_lex_state = 17}, - [973] = {.lex_state = 235, .external_lex_state = 17}, - [974] = {.lex_state = 249, .external_lex_state = 22}, - [975] = {.lex_state = 249, .external_lex_state = 22}, - [976] = {.lex_state = 207, .external_lex_state = 19}, - [977] = {.lex_state = 165, .external_lex_state = 8}, - [978] = {.lex_state = 205, .external_lex_state = 19}, - [979] = {.lex_state = 165, .external_lex_state = 8}, - [980] = {.lex_state = 205, .external_lex_state = 19}, - [981] = {.lex_state = 205, .external_lex_state = 19}, - [982] = {.lex_state = 253, .external_lex_state = 22}, - [983] = {.lex_state = 207, .external_lex_state = 19}, - [984] = {.lex_state = 235, .external_lex_state = 17}, - [985] = {.lex_state = 493, .external_lex_state = 8}, - [986] = {.lex_state = 235, .external_lex_state = 17}, - [987] = {.lex_state = 493, .external_lex_state = 8}, - [988] = {.lex_state = 209, .external_lex_state = 19}, - [989] = {.lex_state = 501, .external_lex_state = 4}, - [990] = {.lex_state = 207, .external_lex_state = 19}, - [991] = {.lex_state = 501, .external_lex_state = 4}, - [992] = {.lex_state = 493, .external_lex_state = 8}, - [993] = {.lex_state = 203, .external_lex_state = 19}, - [994] = {.lex_state = 168, .external_lex_state = 8}, - [995] = {.lex_state = 207, .external_lex_state = 19}, - [996] = {.lex_state = 205, .external_lex_state = 19}, - [997] = {.lex_state = 248, .external_lex_state = 22}, - [998] = {.lex_state = 209, .external_lex_state = 19}, - [999] = {.lex_state = 205, .external_lex_state = 19}, - [1000] = {.lex_state = 203, .external_lex_state = 21}, - [1001] = {.lex_state = 209, .external_lex_state = 19}, - [1002] = {.lex_state = 209, .external_lex_state = 19}, - [1003] = {.lex_state = 203, .external_lex_state = 19}, - [1004] = {.lex_state = 209, .external_lex_state = 19}, - [1005] = {.lex_state = 501, .external_lex_state = 4}, - [1006] = {.lex_state = 209, .external_lex_state = 19}, - [1007] = {.lex_state = 203, .external_lex_state = 19}, - [1008] = {.lex_state = 209, .external_lex_state = 19}, - [1009] = {.lex_state = 501, .external_lex_state = 4}, - [1010] = {.lex_state = 203, .external_lex_state = 19}, - [1011] = {.lex_state = 209, .external_lex_state = 19}, - [1012] = {.lex_state = 203, .external_lex_state = 19}, - [1013] = {.lex_state = 209, .external_lex_state = 19}, - [1014] = {.lex_state = 203, .external_lex_state = 19}, - [1015] = {.lex_state = 501, .external_lex_state = 4}, - [1016] = {.lex_state = 205, .external_lex_state = 19}, - [1017] = {.lex_state = 287, .external_lex_state = 17}, - [1018] = {.lex_state = 287, .external_lex_state = 17}, - [1019] = {.lex_state = 501, .external_lex_state = 4}, - [1020] = {.lex_state = 203, .external_lex_state = 19}, - [1021] = {.lex_state = 205, .external_lex_state = 19}, - [1022] = {.lex_state = 501, .external_lex_state = 4}, - [1023] = {.lex_state = 501, .external_lex_state = 4}, - [1024] = {.lex_state = 203, .external_lex_state = 19}, - [1025] = {.lex_state = 205, .external_lex_state = 19}, - [1026] = {.lex_state = 250, .external_lex_state = 23}, - [1027] = {.lex_state = 250, .external_lex_state = 23}, - [1028] = {.lex_state = 168, .external_lex_state = 8}, - [1029] = {.lex_state = 205, .external_lex_state = 19}, - [1030] = {.lex_state = 501, .external_lex_state = 4}, - [1031] = {.lex_state = 205, .external_lex_state = 19}, - [1032] = {.lex_state = 205, .external_lex_state = 19}, - [1033] = {.lex_state = 205, .external_lex_state = 19}, - [1034] = {.lex_state = 203, .external_lex_state = 19}, - [1035] = {.lex_state = 205, .external_lex_state = 19}, - [1036] = {.lex_state = 203, .external_lex_state = 19}, - [1037] = {.lex_state = 251, .external_lex_state = 22}, - [1038] = {.lex_state = 203, .external_lex_state = 19}, - [1039] = {.lex_state = 251, .external_lex_state = 22}, - [1040] = {.lex_state = 203, .external_lex_state = 21}, - [1041] = {.lex_state = 203, .external_lex_state = 19}, - [1042] = {.lex_state = 203, .external_lex_state = 19}, - [1043] = {.lex_state = 207, .external_lex_state = 19}, - [1044] = {.lex_state = 205, .external_lex_state = 19}, - [1045] = {.lex_state = 205, .external_lex_state = 19}, - [1046] = {.lex_state = 203, .external_lex_state = 19}, - [1047] = {.lex_state = 205, .external_lex_state = 19}, - [1048] = {.lex_state = 205, .external_lex_state = 19}, - [1049] = {.lex_state = 168, .external_lex_state = 8}, - [1050] = {.lex_state = 203, .external_lex_state = 21}, - [1051] = {.lex_state = 203, .external_lex_state = 19}, - [1052] = {.lex_state = 207, .external_lex_state = 19}, - [1053] = {.lex_state = 180, .external_lex_state = 10}, - [1054] = {.lex_state = 502, .external_lex_state = 19}, - [1055] = {.lex_state = 502, .external_lex_state = 19}, - [1056] = {.lex_state = 207, .external_lex_state = 19}, - [1057] = {.lex_state = 168, .external_lex_state = 8}, - [1058] = {.lex_state = 503, .external_lex_state = 19}, - [1059] = {.lex_state = 203, .external_lex_state = 21}, - [1060] = {.lex_state = 203, .external_lex_state = 21}, - [1061] = {.lex_state = 502, .external_lex_state = 19}, - [1062] = {.lex_state = 207, .external_lex_state = 19}, - [1063] = {.lex_state = 503, .external_lex_state = 19}, - [1064] = {.lex_state = 214, .external_lex_state = 21}, - [1065] = {.lex_state = 203, .external_lex_state = 21}, - [1066] = {.lex_state = 209, .external_lex_state = 19}, - [1067] = {.lex_state = 502, .external_lex_state = 19}, - [1068] = {.lex_state = 214, .external_lex_state = 21}, - [1069] = {.lex_state = 502, .external_lex_state = 19}, - [1070] = {.lex_state = 209, .external_lex_state = 19}, - [1071] = {.lex_state = 207, .external_lex_state = 21}, - [1072] = {.lex_state = 207, .external_lex_state = 19}, - [1073] = {.lex_state = 503, .external_lex_state = 19}, - [1074] = {.lex_state = 503, .external_lex_state = 19}, - [1075] = {.lex_state = 203, .external_lex_state = 21}, - [1076] = {.lex_state = 207, .external_lex_state = 21}, - [1077] = {.lex_state = 180, .external_lex_state = 10}, - [1078] = {.lex_state = 207, .external_lex_state = 19}, - [1079] = {.lex_state = 180, .external_lex_state = 10}, - [1080] = {.lex_state = 168, .external_lex_state = 8}, - [1081] = {.lex_state = 493, .external_lex_state = 8}, - [1082] = {.lex_state = 502, .external_lex_state = 19}, - [1083] = {.lex_state = 502, .external_lex_state = 19}, - [1084] = {.lex_state = 180, .external_lex_state = 10}, - [1085] = {.lex_state = 503, .external_lex_state = 19}, - [1086] = {.lex_state = 502, .external_lex_state = 19}, - [1087] = {.lex_state = 502, .external_lex_state = 19}, - [1088] = {.lex_state = 209, .external_lex_state = 19}, - [1089] = {.lex_state = 180, .external_lex_state = 10}, - [1090] = {.lex_state = 502, .external_lex_state = 19}, - [1091] = {.lex_state = 502, .external_lex_state = 19}, - [1092] = {.lex_state = 502, .external_lex_state = 19}, - [1093] = {.lex_state = 214, .external_lex_state = 21}, - [1094] = {.lex_state = 209, .external_lex_state = 19}, - [1095] = {.lex_state = 502, .external_lex_state = 19}, - [1096] = {.lex_state = 174, .external_lex_state = 10}, - [1097] = {.lex_state = 493, .external_lex_state = 8}, - [1098] = {.lex_state = 203, .external_lex_state = 21}, - [1099] = {.lex_state = 209, .external_lex_state = 19}, - [1100] = {.lex_state = 207, .external_lex_state = 21}, - [1101] = {.lex_state = 203, .external_lex_state = 21}, - [1102] = {.lex_state = 502, .external_lex_state = 19}, - [1103] = {.lex_state = 203, .external_lex_state = 21}, - [1104] = {.lex_state = 209, .external_lex_state = 19}, - [1105] = {.lex_state = 502, .external_lex_state = 19}, - [1106] = {.lex_state = 503, .external_lex_state = 19}, - [1107] = {.lex_state = 203, .external_lex_state = 21}, - [1108] = {.lex_state = 493, .external_lex_state = 8}, - [1109] = {.lex_state = 180, .external_lex_state = 10}, - [1110] = {.lex_state = 493, .external_lex_state = 8}, - [1111] = {.lex_state = 503, .external_lex_state = 19}, - [1112] = {.lex_state = 209, .external_lex_state = 19}, - [1113] = {.lex_state = 207, .external_lex_state = 19}, - [1114] = {.lex_state = 503, .external_lex_state = 19}, - [1115] = {.lex_state = 203, .external_lex_state = 21}, - [1116] = {.lex_state = 502, .external_lex_state = 19}, - [1117] = {.lex_state = 502, .external_lex_state = 19}, - [1118] = {.lex_state = 502, .external_lex_state = 19}, - [1119] = {.lex_state = 203, .external_lex_state = 21}, - [1120] = {.lex_state = 207, .external_lex_state = 19}, - [1121] = {.lex_state = 207, .external_lex_state = 19}, - [1122] = {.lex_state = 493, .external_lex_state = 8}, - [1123] = {.lex_state = 209, .external_lex_state = 19}, - [1124] = {.lex_state = 207, .external_lex_state = 19}, - [1125] = {.lex_state = 503, .external_lex_state = 19}, - [1126] = {.lex_state = 502, .external_lex_state = 19}, - [1127] = {.lex_state = 493, .external_lex_state = 8}, - [1128] = {.lex_state = 503, .external_lex_state = 19}, - [1129] = {.lex_state = 207, .external_lex_state = 19}, - [1130] = {.lex_state = 493, .external_lex_state = 8}, - [1131] = {.lex_state = 203, .external_lex_state = 21}, - [1132] = {.lex_state = 503, .external_lex_state = 19}, - [1133] = {.lex_state = 493, .external_lex_state = 8}, - [1134] = {.lex_state = 503, .external_lex_state = 19}, - [1135] = {.lex_state = 203, .external_lex_state = 21}, - [1136] = {.lex_state = 503, .external_lex_state = 19}, - [1137] = {.lex_state = 502, .external_lex_state = 19}, - [1138] = {.lex_state = 493, .external_lex_state = 8}, - [1139] = {.lex_state = 502, .external_lex_state = 19}, - [1140] = {.lex_state = 174, .external_lex_state = 10}, - [1141] = {.lex_state = 493, .external_lex_state = 8}, - [1142] = {.lex_state = 502, .external_lex_state = 19}, - [1143] = {.lex_state = 203, .external_lex_state = 21}, - [1144] = {.lex_state = 503, .external_lex_state = 19}, - [1145] = {.lex_state = 209, .external_lex_state = 19}, - [1146] = {.lex_state = 502, .external_lex_state = 19}, - [1147] = {.lex_state = 255, .external_lex_state = 20}, - [1148] = {.lex_state = 493, .external_lex_state = 8}, - [1149] = {.lex_state = 207, .external_lex_state = 19}, - [1150] = {.lex_state = 502, .external_lex_state = 19}, - [1151] = {.lex_state = 207, .external_lex_state = 19}, - [1152] = {.lex_state = 207, .external_lex_state = 19}, - [1153] = {.lex_state = 209, .external_lex_state = 19}, - [1154] = {.lex_state = 209, .external_lex_state = 19}, - [1155] = {.lex_state = 502, .external_lex_state = 19}, - [1156] = {.lex_state = 503, .external_lex_state = 19}, - [1157] = {.lex_state = 209, .external_lex_state = 19}, - [1158] = {.lex_state = 503, .external_lex_state = 19}, - [1159] = {.lex_state = 168, .external_lex_state = 8}, - [1160] = {.lex_state = 252, .external_lex_state = 22}, - [1161] = {.lex_state = 252, .external_lex_state = 22}, - [1162] = {.lex_state = 180, .external_lex_state = 10}, - [1163] = {.lex_state = 209, .external_lex_state = 19}, - [1164] = {.lex_state = 209, .external_lex_state = 19}, - [1165] = {.lex_state = 502, .external_lex_state = 19}, - [1166] = {.lex_state = 174, .external_lex_state = 10}, - [1167] = {.lex_state = 203, .external_lex_state = 21}, - [1168] = {.lex_state = 214, .external_lex_state = 21}, - [1169] = {.lex_state = 203, .external_lex_state = 21}, - [1170] = {.lex_state = 207, .external_lex_state = 19}, - [1171] = {.lex_state = 207, .external_lex_state = 19}, - [1172] = {.lex_state = 203, .external_lex_state = 21}, - [1173] = {.lex_state = 207, .external_lex_state = 21}, - [1174] = {.lex_state = 502, .external_lex_state = 19}, - [1175] = {.lex_state = 502, .external_lex_state = 19}, - [1176] = {.lex_state = 493, .external_lex_state = 8}, - [1177] = {.lex_state = 214, .external_lex_state = 21}, - [1178] = {.lex_state = 168, .external_lex_state = 8}, - [1179] = {.lex_state = 168, .external_lex_state = 8}, - [1180] = {.lex_state = 207, .external_lex_state = 19}, - [1181] = {.lex_state = 203, .external_lex_state = 21}, - [1182] = {.lex_state = 203, .external_lex_state = 21}, - [1183] = {.lex_state = 203, .external_lex_state = 21}, - [1184] = {.lex_state = 207, .external_lex_state = 21}, - [1185] = {.lex_state = 207, .external_lex_state = 21}, - [1186] = {.lex_state = 214, .external_lex_state = 21}, - [1187] = {.lex_state = 207, .external_lex_state = 19}, - [1188] = {.lex_state = 209, .external_lex_state = 19}, - [1189] = {.lex_state = 209, .external_lex_state = 19}, - [1190] = {.lex_state = 207, .external_lex_state = 19}, - [1191] = {.lex_state = 207, .external_lex_state = 19}, - [1192] = {.lex_state = 209, .external_lex_state = 19}, - [1193] = {.lex_state = 209, .external_lex_state = 19}, - [1194] = {.lex_state = 209, .external_lex_state = 19}, - [1195] = {.lex_state = 207, .external_lex_state = 21}, - [1196] = {.lex_state = 502, .external_lex_state = 19}, - [1197] = {.lex_state = 215, .external_lex_state = 21}, - [1198] = {.lex_state = 502, .external_lex_state = 19}, - [1199] = {.lex_state = 185, .external_lex_state = 10}, - [1200] = {.lex_state = 503, .external_lex_state = 21}, - [1201] = {.lex_state = 503, .external_lex_state = 21}, - [1202] = {.lex_state = 177, .external_lex_state = 10}, - [1203] = {.lex_state = 207, .external_lex_state = 21}, - [1204] = {.lex_state = 502, .external_lex_state = 19}, - [1205] = {.lex_state = 207, .external_lex_state = 21}, - [1206] = {.lex_state = 214, .external_lex_state = 21}, - [1207] = {.lex_state = 214, .external_lex_state = 21}, - [1208] = {.lex_state = 503, .external_lex_state = 19}, - [1209] = {.lex_state = 174, .external_lex_state = 11}, - [1210] = {.lex_state = 177, .external_lex_state = 10}, - [1211] = {.lex_state = 207, .external_lex_state = 21}, - [1212] = {.lex_state = 174, .external_lex_state = 11}, - [1213] = {.lex_state = 502, .external_lex_state = 19}, - [1214] = {.lex_state = 502, .external_lex_state = 19}, - [1215] = {.lex_state = 503, .external_lex_state = 21}, - [1216] = {.lex_state = 185, .external_lex_state = 10}, - [1217] = {.lex_state = 185, .external_lex_state = 10}, - [1218] = {.lex_state = 503, .external_lex_state = 21}, - [1219] = {.lex_state = 503, .external_lex_state = 21}, - [1220] = {.lex_state = 207, .external_lex_state = 21}, - [1221] = {.lex_state = 214, .external_lex_state = 21}, - [1222] = {.lex_state = 215, .external_lex_state = 21}, - [1223] = {.lex_state = 199, .external_lex_state = 4}, - [1224] = {.lex_state = 199, .external_lex_state = 4}, - [1225] = {.lex_state = 199, .external_lex_state = 4}, - [1226] = {.lex_state = 185, .external_lex_state = 10}, - [1227] = {.lex_state = 214, .external_lex_state = 21}, - [1228] = {.lex_state = 214, .external_lex_state = 21}, - [1229] = {.lex_state = 502, .external_lex_state = 19}, - [1230] = {.lex_state = 214, .external_lex_state = 21}, - [1231] = {.lex_state = 503, .external_lex_state = 21}, - [1232] = {.lex_state = 503, .external_lex_state = 21}, - [1233] = {.lex_state = 503, .external_lex_state = 19}, - [1234] = {.lex_state = 502, .external_lex_state = 19}, - [1235] = {.lex_state = 502, .external_lex_state = 19}, - [1236] = {.lex_state = 185, .external_lex_state = 10}, - [1237] = {.lex_state = 502, .external_lex_state = 19}, - [1238] = {.lex_state = 503, .external_lex_state = 19}, - [1239] = {.lex_state = 502, .external_lex_state = 19}, - [1240] = {.lex_state = 503, .external_lex_state = 19}, - [1241] = {.lex_state = 503, .external_lex_state = 19}, - [1242] = {.lex_state = 503, .external_lex_state = 19}, - [1243] = {.lex_state = 502, .external_lex_state = 19}, - [1244] = {.lex_state = 502, .external_lex_state = 19}, - [1245] = {.lex_state = 502, .external_lex_state = 19}, - [1246] = {.lex_state = 214, .external_lex_state = 21}, - [1247] = {.lex_state = 503, .external_lex_state = 19}, - [1248] = {.lex_state = 503, .external_lex_state = 19}, - [1249] = {.lex_state = 503, .external_lex_state = 19}, - [1250] = {.lex_state = 199, .external_lex_state = 4}, - [1251] = {.lex_state = 503, .external_lex_state = 19}, - [1252] = {.lex_state = 503, .external_lex_state = 19}, - [1253] = {.lex_state = 503, .external_lex_state = 19}, - [1254] = {.lex_state = 502, .external_lex_state = 19}, - [1255] = {.lex_state = 502, .external_lex_state = 19}, - [1256] = {.lex_state = 503, .external_lex_state = 19}, - [1257] = {.lex_state = 503, .external_lex_state = 19}, - [1258] = {.lex_state = 503, .external_lex_state = 19}, - [1259] = {.lex_state = 503, .external_lex_state = 19}, - [1260] = {.lex_state = 503, .external_lex_state = 19}, - [1261] = {.lex_state = 503, .external_lex_state = 19}, - [1262] = {.lex_state = 502, .external_lex_state = 19}, - [1263] = {.lex_state = 199, .external_lex_state = 4}, - [1264] = {.lex_state = 503, .external_lex_state = 19}, - [1265] = {.lex_state = 243, .external_lex_state = 24}, - [1266] = {.lex_state = 503, .external_lex_state = 19}, - [1267] = {.lex_state = 503, .external_lex_state = 21}, - [1268] = {.lex_state = 503, .external_lex_state = 19}, - [1269] = {.lex_state = 503, .external_lex_state = 19}, - [1270] = {.lex_state = 503, .external_lex_state = 19}, - [1271] = {.lex_state = 493, .external_lex_state = 8}, - [1272] = {.lex_state = 503, .external_lex_state = 19}, - [1273] = {.lex_state = 185, .external_lex_state = 10}, - [1274] = {.lex_state = 207, .external_lex_state = 21}, - [1275] = {.lex_state = 174, .external_lex_state = 10}, - [1276] = {.lex_state = 503, .external_lex_state = 19}, - [1277] = {.lex_state = 214, .external_lex_state = 21}, - [1278] = {.lex_state = 503, .external_lex_state = 21}, - [1279] = {.lex_state = 243, .external_lex_state = 24}, - [1280] = {.lex_state = 503, .external_lex_state = 19}, - [1281] = {.lex_state = 185, .external_lex_state = 10}, - [1282] = {.lex_state = 503, .external_lex_state = 19}, - [1283] = {.lex_state = 207, .external_lex_state = 21}, - [1284] = {.lex_state = 503, .external_lex_state = 19}, - [1285] = {.lex_state = 503, .external_lex_state = 19}, - [1286] = {.lex_state = 207, .external_lex_state = 21}, - [1287] = {.lex_state = 503, .external_lex_state = 19}, - [1288] = {.lex_state = 503, .external_lex_state = 19}, - [1289] = {.lex_state = 255, .external_lex_state = 23}, - [1290] = {.lex_state = 493, .external_lex_state = 8}, - [1291] = {.lex_state = 214, .external_lex_state = 21}, - [1292] = {.lex_state = 493, .external_lex_state = 8}, - [1293] = {.lex_state = 502, .external_lex_state = 19}, - [1294] = {.lex_state = 503, .external_lex_state = 19}, - [1295] = {.lex_state = 503, .external_lex_state = 19}, - [1296] = {.lex_state = 502, .external_lex_state = 19}, - [1297] = {.lex_state = 502, .external_lex_state = 19}, - [1298] = {.lex_state = 207, .external_lex_state = 21}, - [1299] = {.lex_state = 502, .external_lex_state = 19}, - [1300] = {.lex_state = 207, .external_lex_state = 21}, - [1301] = {.lex_state = 214, .external_lex_state = 21}, - [1302] = {.lex_state = 502, .external_lex_state = 19}, - [1303] = {.lex_state = 207, .external_lex_state = 21}, - [1304] = {.lex_state = 502, .external_lex_state = 19}, - [1305] = {.lex_state = 493, .external_lex_state = 8}, - [1306] = {.lex_state = 503, .external_lex_state = 21}, - [1307] = {.lex_state = 502, .external_lex_state = 19}, - [1308] = {.lex_state = 502, .external_lex_state = 19}, - [1309] = {.lex_state = 502, .external_lex_state = 19}, - [1310] = {.lex_state = 502, .external_lex_state = 19}, - [1311] = {.lex_state = 502, .external_lex_state = 19}, - [1312] = {.lex_state = 502, .external_lex_state = 19}, - [1313] = {.lex_state = 502, .external_lex_state = 19}, - [1314] = {.lex_state = 493, .external_lex_state = 8}, - [1315] = {.lex_state = 502, .external_lex_state = 19}, - [1316] = {.lex_state = 502, .external_lex_state = 19}, - [1317] = {.lex_state = 503, .external_lex_state = 19}, - [1318] = {.lex_state = 503, .external_lex_state = 19}, - [1319] = {.lex_state = 502, .external_lex_state = 19}, - [1320] = {.lex_state = 502, .external_lex_state = 19}, - [1321] = {.lex_state = 493, .external_lex_state = 8}, - [1322] = {.lex_state = 214, .external_lex_state = 21}, - [1323] = {.lex_state = 215, .external_lex_state = 21}, - [1324] = {.lex_state = 493, .external_lex_state = 8}, - [1325] = {.lex_state = 493, .external_lex_state = 8}, - [1326] = {.lex_state = 214, .external_lex_state = 21}, - [1327] = {.lex_state = 214, .external_lex_state = 21}, - [1328] = {.lex_state = 503, .external_lex_state = 19}, - [1329] = {.lex_state = 195, .external_lex_state = 15}, - [1330] = {.lex_state = 180, .external_lex_state = 10}, - [1331] = {.lex_state = 180, .external_lex_state = 10}, - [1332] = {.lex_state = 493, .external_lex_state = 8}, - [1333] = {.lex_state = 195, .external_lex_state = 15}, - [1334] = {.lex_state = 180, .external_lex_state = 10}, - [1335] = {.lex_state = 493, .external_lex_state = 8}, - [1336] = {.lex_state = 207, .external_lex_state = 21}, - [1337] = {.lex_state = 243, .external_lex_state = 24}, - [1338] = {.lex_state = 503, .external_lex_state = 21}, - [1339] = {.lex_state = 214, .external_lex_state = 21}, - [1340] = {.lex_state = 207, .external_lex_state = 21}, - [1341] = {.lex_state = 180, .external_lex_state = 10}, - [1342] = {.lex_state = 214, .external_lex_state = 21}, - [1343] = {.lex_state = 503, .external_lex_state = 19}, - [1344] = {.lex_state = 180, .external_lex_state = 10}, - [1345] = {.lex_state = 174, .external_lex_state = 10}, - [1346] = {.lex_state = 199, .external_lex_state = 4}, - [1347] = {.lex_state = 502, .external_lex_state = 19}, - [1348] = {.lex_state = 174, .external_lex_state = 10}, - [1349] = {.lex_state = 503, .external_lex_state = 19}, - [1350] = {.lex_state = 255, .external_lex_state = 22}, - [1351] = {.lex_state = 502, .external_lex_state = 19}, - [1352] = {.lex_state = 502, .external_lex_state = 19}, - [1353] = {.lex_state = 502, .external_lex_state = 19}, - [1354] = {.lex_state = 215, .external_lex_state = 21}, - [1355] = {.lex_state = 215, .external_lex_state = 21}, - [1356] = {.lex_state = 174, .external_lex_state = 10}, - [1357] = {.lex_state = 502, .external_lex_state = 19}, - [1358] = {.lex_state = 502, .external_lex_state = 19}, - [1359] = {.lex_state = 243, .external_lex_state = 24}, - [1360] = {.lex_state = 207, .external_lex_state = 21}, - [1361] = {.lex_state = 502, .external_lex_state = 19}, - [1362] = {.lex_state = 502, .external_lex_state = 19}, - [1363] = {.lex_state = 502, .external_lex_state = 19}, - [1364] = {.lex_state = 502, .external_lex_state = 19}, - [1365] = {.lex_state = 207, .external_lex_state = 21}, - [1366] = {.lex_state = 503, .external_lex_state = 19}, - [1367] = {.lex_state = 503, .external_lex_state = 19}, - [1368] = {.lex_state = 207, .external_lex_state = 21}, - [1369] = {.lex_state = 195, .external_lex_state = 15}, - [1370] = {.lex_state = 207, .external_lex_state = 21}, - [1371] = {.lex_state = 503, .external_lex_state = 19}, - [1372] = {.lex_state = 185, .external_lex_state = 10}, - [1373] = {.lex_state = 185, .external_lex_state = 10}, - [1374] = {.lex_state = 214, .external_lex_state = 21}, - [1375] = {.lex_state = 243, .external_lex_state = 24}, - [1376] = {.lex_state = 503, .external_lex_state = 21}, - [1377] = {.lex_state = 180, .external_lex_state = 10}, - [1378] = {.lex_state = 243, .external_lex_state = 24}, - [1379] = {.lex_state = 180, .external_lex_state = 10}, - [1380] = {.lex_state = 502, .external_lex_state = 19}, - [1381] = {.lex_state = 243, .external_lex_state = 24}, - [1382] = {.lex_state = 207, .external_lex_state = 21}, - [1383] = {.lex_state = 214, .external_lex_state = 21}, - [1384] = {.lex_state = 180, .external_lex_state = 10}, - [1385] = {.lex_state = 502, .external_lex_state = 19}, - [1386] = {.lex_state = 185, .external_lex_state = 10}, - [1387] = {.lex_state = 180, .external_lex_state = 10}, - [1388] = {.lex_state = 503, .external_lex_state = 19}, - [1389] = {.lex_state = 502, .external_lex_state = 19}, - [1390] = {.lex_state = 502, .external_lex_state = 19}, - [1391] = {.lex_state = 502, .external_lex_state = 19}, - [1392] = {.lex_state = 177, .external_lex_state = 10}, - [1393] = {.lex_state = 502, .external_lex_state = 19}, - [1394] = {.lex_state = 185, .external_lex_state = 10}, - [1395] = {.lex_state = 502, .external_lex_state = 19}, - [1396] = {.lex_state = 503, .external_lex_state = 19}, - [1397] = {.lex_state = 180, .external_lex_state = 10}, - [1398] = {.lex_state = 207, .external_lex_state = 21}, - [1399] = {.lex_state = 180, .external_lex_state = 10}, - [1400] = {.lex_state = 502, .external_lex_state = 19}, - [1401] = {.lex_state = 214, .external_lex_state = 21}, - [1402] = {.lex_state = 215, .external_lex_state = 21}, - [1403] = {.lex_state = 503, .external_lex_state = 19}, - [1404] = {.lex_state = 214, .external_lex_state = 21}, - [1405] = {.lex_state = 503, .external_lex_state = 19}, - [1406] = {.lex_state = 243, .external_lex_state = 25}, - [1407] = {.lex_state = 504, .external_lex_state = 21}, - [1408] = {.lex_state = 504, .external_lex_state = 21}, - [1409] = {.lex_state = 503, .external_lex_state = 21}, - [1410] = {.lex_state = 277, .external_lex_state = 2}, - [1411] = {.lex_state = 503, .external_lex_state = 21}, - [1412] = {.lex_state = 497, .external_lex_state = 10}, - [1413] = {.lex_state = 185, .external_lex_state = 10}, - [1414] = {.lex_state = 497, .external_lex_state = 10}, - [1415] = {.lex_state = 497, .external_lex_state = 10}, - [1416] = {.lex_state = 177, .external_lex_state = 11}, - [1417] = {.lex_state = 243, .external_lex_state = 26}, - [1418] = {.lex_state = 185, .external_lex_state = 10}, - [1419] = {.lex_state = 243, .external_lex_state = 26}, - [1420] = {.lex_state = 497, .external_lex_state = 10}, - [1421] = {.lex_state = 503, .external_lex_state = 21}, - [1422] = {.lex_state = 497, .external_lex_state = 10}, - [1423] = {.lex_state = 279, .external_lex_state = 14}, - [1424] = {.lex_state = 243, .external_lex_state = 26}, - [1425] = {.lex_state = 503, .external_lex_state = 21}, - [1426] = {.lex_state = 215, .external_lex_state = 21}, - [1427] = {.lex_state = 215, .external_lex_state = 21}, - [1428] = {.lex_state = 215, .external_lex_state = 21}, - [1429] = {.lex_state = 503, .external_lex_state = 21}, - [1430] = {.lex_state = 497, .external_lex_state = 10}, - [1431] = {.lex_state = 215, .external_lex_state = 21}, - [1432] = {.lex_state = 215, .external_lex_state = 21}, - [1433] = {.lex_state = 497, .external_lex_state = 10}, - [1434] = {.lex_state = 504, .external_lex_state = 21}, - [1435] = {.lex_state = 503, .external_lex_state = 21}, - [1436] = {.lex_state = 215, .external_lex_state = 21}, - [1437] = {.lex_state = 215, .external_lex_state = 21}, - [1438] = {.lex_state = 503, .external_lex_state = 21}, - [1439] = {.lex_state = 243, .external_lex_state = 26}, - [1440] = {.lex_state = 177, .external_lex_state = 10}, - [1441] = {.lex_state = 497, .external_lex_state = 10}, - [1442] = {.lex_state = 185, .external_lex_state = 10}, - [1443] = {.lex_state = 277, .external_lex_state = 2}, - [1444] = {.lex_state = 497, .external_lex_state = 10}, - [1445] = {.lex_state = 185, .external_lex_state = 10}, - [1446] = {.lex_state = 243, .external_lex_state = 25}, - [1447] = {.lex_state = 195, .external_lex_state = 15}, - [1448] = {.lex_state = 504, .external_lex_state = 21}, - [1449] = {.lex_state = 199, .external_lex_state = 4}, - [1450] = {.lex_state = 195, .external_lex_state = 15}, - [1451] = {.lex_state = 503, .external_lex_state = 21}, - [1452] = {.lex_state = 504, .external_lex_state = 21}, - [1453] = {.lex_state = 503, .external_lex_state = 21}, - [1454] = {.lex_state = 504, .external_lex_state = 21}, - [1455] = {.lex_state = 503, .external_lex_state = 21}, - [1456] = {.lex_state = 496, .external_lex_state = 10}, - [1457] = {.lex_state = 177, .external_lex_state = 10}, - [1458] = {.lex_state = 199, .external_lex_state = 4}, - [1459] = {.lex_state = 503, .external_lex_state = 21}, - [1460] = {.lex_state = 185, .external_lex_state = 10}, - [1461] = {.lex_state = 185, .external_lex_state = 10}, - [1462] = {.lex_state = 215, .external_lex_state = 21}, - [1463] = {.lex_state = 504, .external_lex_state = 21}, - [1464] = {.lex_state = 215, .external_lex_state = 21}, - [1465] = {.lex_state = 215, .external_lex_state = 21}, - [1466] = {.lex_state = 215, .external_lex_state = 21}, - [1467] = {.lex_state = 503, .external_lex_state = 21}, - [1468] = {.lex_state = 215, .external_lex_state = 21}, - [1469] = {.lex_state = 277, .external_lex_state = 2}, - [1470] = {.lex_state = 185, .external_lex_state = 10}, - [1471] = {.lex_state = 199, .external_lex_state = 4}, - [1472] = {.lex_state = 199, .external_lex_state = 4}, - [1473] = {.lex_state = 199, .external_lex_state = 4}, - [1474] = {.lex_state = 208, .external_lex_state = 15}, - [1475] = {.lex_state = 503, .external_lex_state = 21}, - [1476] = {.lex_state = 503, .external_lex_state = 21}, - [1477] = {.lex_state = 503, .external_lex_state = 21}, - [1478] = {.lex_state = 503, .external_lex_state = 21}, - [1479] = {.lex_state = 215, .external_lex_state = 21}, - [1480] = {.lex_state = 503, .external_lex_state = 21}, - [1481] = {.lex_state = 503, .external_lex_state = 21}, - [1482] = {.lex_state = 503, .external_lex_state = 21}, - [1483] = {.lex_state = 243, .external_lex_state = 26}, - [1484] = {.lex_state = 496, .external_lex_state = 10}, - [1485] = {.lex_state = 199, .external_lex_state = 4}, - [1486] = {.lex_state = 281, .external_lex_state = 27}, - [1487] = {.lex_state = 281, .external_lex_state = 27}, - [1488] = {.lex_state = 281, .external_lex_state = 27}, - [1489] = {.lex_state = 503, .external_lex_state = 21}, - [1490] = {.lex_state = 215, .external_lex_state = 21}, - [1491] = {.lex_state = 243, .external_lex_state = 25}, - [1492] = {.lex_state = 177, .external_lex_state = 11}, - [1493] = {.lex_state = 199, .external_lex_state = 4}, - [1494] = {.lex_state = 503, .external_lex_state = 21}, - [1495] = {.lex_state = 185, .external_lex_state = 10}, - [1496] = {.lex_state = 496, .external_lex_state = 10}, - [1497] = {.lex_state = 503, .external_lex_state = 21}, - [1498] = {.lex_state = 199, .external_lex_state = 4}, - [1499] = {.lex_state = 497, .external_lex_state = 10}, - [1500] = {.lex_state = 503, .external_lex_state = 21}, - [1501] = {.lex_state = 281, .external_lex_state = 27}, - [1502] = {.lex_state = 281, .external_lex_state = 27}, - [1503] = {.lex_state = 281, .external_lex_state = 27}, - [1504] = {.lex_state = 503, .external_lex_state = 21}, - [1505] = {.lex_state = 504, .external_lex_state = 21}, - [1506] = {.lex_state = 503, .external_lex_state = 21}, - [1507] = {.lex_state = 503, .external_lex_state = 21}, - [1508] = {.lex_state = 199, .external_lex_state = 4}, - [1509] = {.lex_state = 199, .external_lex_state = 4}, - [1510] = {.lex_state = 504, .external_lex_state = 21}, - [1511] = {.lex_state = 504, .external_lex_state = 21}, - [1512] = {.lex_state = 185, .external_lex_state = 10}, - [1513] = {.lex_state = 503, .external_lex_state = 21}, - [1514] = {.lex_state = 503, .external_lex_state = 21}, - [1515] = {.lex_state = 497, .external_lex_state = 10}, - [1516] = {.lex_state = 215, .external_lex_state = 21}, - [1517] = {.lex_state = 503, .external_lex_state = 21}, - [1518] = {.lex_state = 503, .external_lex_state = 21}, - [1519] = {.lex_state = 503, .external_lex_state = 21}, - [1520] = {.lex_state = 503, .external_lex_state = 21}, - [1521] = {.lex_state = 199, .external_lex_state = 4}, - [1522] = {.lex_state = 215, .external_lex_state = 21}, - [1523] = {.lex_state = 279, .external_lex_state = 14}, - [1524] = {.lex_state = 189, .external_lex_state = 11}, - [1525] = {.lex_state = 503, .external_lex_state = 21}, - [1526] = {.lex_state = 503, .external_lex_state = 21}, - [1527] = {.lex_state = 208, .external_lex_state = 15}, - [1528] = {.lex_state = 504, .external_lex_state = 21}, - [1529] = {.lex_state = 503, .external_lex_state = 21}, - [1530] = {.lex_state = 496, .external_lex_state = 10}, - [1531] = {.lex_state = 243, .external_lex_state = 26}, - [1532] = {.lex_state = 174, .external_lex_state = 11}, - [1533] = {.lex_state = 503, .external_lex_state = 21}, - [1534] = {.lex_state = 177, .external_lex_state = 10}, - [1535] = {.lex_state = 215, .external_lex_state = 21}, - [1536] = {.lex_state = 279, .external_lex_state = 14}, - [1537] = {.lex_state = 503, .external_lex_state = 21}, - [1538] = {.lex_state = 504, .external_lex_state = 21}, - [1539] = {.lex_state = 185, .external_lex_state = 10}, - [1540] = {.lex_state = 503, .external_lex_state = 21}, - [1541] = {.lex_state = 497, .external_lex_state = 10}, - [1542] = {.lex_state = 496, .external_lex_state = 10}, - [1543] = {.lex_state = 503, .external_lex_state = 21}, - [1544] = {.lex_state = 503, .external_lex_state = 21}, - [1545] = {.lex_state = 496, .external_lex_state = 10}, - [1546] = {.lex_state = 185, .external_lex_state = 10}, - [1547] = {.lex_state = 497, .external_lex_state = 10}, - [1548] = {.lex_state = 177, .external_lex_state = 10}, - [1549] = {.lex_state = 497, .external_lex_state = 10}, - [1550] = {.lex_state = 243, .external_lex_state = 26}, - [1551] = {.lex_state = 503, .external_lex_state = 21}, - [1552] = {.lex_state = 189, .external_lex_state = 11}, - [1553] = {.lex_state = 215, .external_lex_state = 21}, - [1554] = {.lex_state = 503, .external_lex_state = 21}, - [1555] = {.lex_state = 503, .external_lex_state = 21}, - [1556] = {.lex_state = 215, .external_lex_state = 21}, - [1557] = {.lex_state = 281, .external_lex_state = 27}, - [1558] = {.lex_state = 497, .external_lex_state = 10}, - [1559] = {.lex_state = 497, .external_lex_state = 10}, - [1560] = {.lex_state = 497, .external_lex_state = 10}, - [1561] = {.lex_state = 504, .external_lex_state = 21}, - [1562] = {.lex_state = 497, .external_lex_state = 10}, - [1563] = {.lex_state = 281, .external_lex_state = 27}, - [1564] = {.lex_state = 497, .external_lex_state = 10}, - [1565] = {.lex_state = 243, .external_lex_state = 25}, - [1566] = {.lex_state = 497, .external_lex_state = 10}, - [1567] = {.lex_state = 189, .external_lex_state = 11}, - [1568] = {.lex_state = 497, .external_lex_state = 10}, - [1569] = {.lex_state = 281, .external_lex_state = 27}, - [1570] = {.lex_state = 504, .external_lex_state = 21}, - [1571] = {.lex_state = 497, .external_lex_state = 10}, - [1572] = {.lex_state = 504, .external_lex_state = 21}, - [1573] = {.lex_state = 243, .external_lex_state = 25}, - [1574] = {.lex_state = 243, .external_lex_state = 25}, - [1575] = {.lex_state = 243, .external_lex_state = 25}, - [1576] = {.lex_state = 497, .external_lex_state = 10}, - [1577] = {.lex_state = 496, .external_lex_state = 11}, - [1578] = {.lex_state = 243, .external_lex_state = 25}, - [1579] = {.lex_state = 504, .external_lex_state = 21}, - [1580] = {.lex_state = 497, .external_lex_state = 10}, - [1581] = {.lex_state = 504, .external_lex_state = 21}, - [1582] = {.lex_state = 497, .external_lex_state = 10}, - [1583] = {.lex_state = 504, .external_lex_state = 21}, - [1584] = {.lex_state = 497, .external_lex_state = 10}, - [1585] = {.lex_state = 281, .external_lex_state = 27}, - [1586] = {.lex_state = 497, .external_lex_state = 10}, - [1587] = {.lex_state = 497, .external_lex_state = 10}, - [1588] = {.lex_state = 504, .external_lex_state = 21}, - [1589] = {.lex_state = 243, .external_lex_state = 25}, - [1590] = {.lex_state = 497, .external_lex_state = 10}, - [1591] = {.lex_state = 496, .external_lex_state = 11}, - [1592] = {.lex_state = 497, .external_lex_state = 10}, - [1593] = {.lex_state = 504, .external_lex_state = 21}, - [1594] = {.lex_state = 496, .external_lex_state = 10}, - [1595] = {.lex_state = 497, .external_lex_state = 10}, - [1596] = {.lex_state = 504, .external_lex_state = 21}, - [1597] = {.lex_state = 281, .external_lex_state = 27}, - [1598] = {.lex_state = 243, .external_lex_state = 25}, - [1599] = {.lex_state = 243, .external_lex_state = 25}, - [1600] = {.lex_state = 243, .external_lex_state = 25}, - [1601] = {.lex_state = 243, .external_lex_state = 25}, - [1602] = {.lex_state = 243, .external_lex_state = 25}, - [1603] = {.lex_state = 497, .external_lex_state = 10}, - [1604] = {.lex_state = 243, .external_lex_state = 25}, - [1605] = {.lex_state = 497, .external_lex_state = 10}, - [1606] = {.lex_state = 504, .external_lex_state = 21}, - [1607] = {.lex_state = 497, .external_lex_state = 10}, - [1608] = {.lex_state = 497, .external_lex_state = 10}, - [1609] = {.lex_state = 243, .external_lex_state = 25}, - [1610] = {.lex_state = 504, .external_lex_state = 21}, - [1611] = {.lex_state = 243, .external_lex_state = 25}, - [1612] = {.lex_state = 497, .external_lex_state = 10}, - [1613] = {.lex_state = 496, .external_lex_state = 10}, - [1614] = {.lex_state = 243, .external_lex_state = 25}, - [1615] = {.lex_state = 504, .external_lex_state = 21}, - [1616] = {.lex_state = 497, .external_lex_state = 10}, - [1617] = {.lex_state = 277, .external_lex_state = 2}, - [1618] = {.lex_state = 243, .external_lex_state = 25}, - [1619] = {.lex_state = 243, .external_lex_state = 25}, - [1620] = {.lex_state = 497, .external_lex_state = 10}, - [1621] = {.lex_state = 497, .external_lex_state = 10}, - [1622] = {.lex_state = 281, .external_lex_state = 27}, - [1623] = {.lex_state = 243, .external_lex_state = 25}, - [1624] = {.lex_state = 497, .external_lex_state = 10}, - [1625] = {.lex_state = 243, .external_lex_state = 25}, - [1626] = {.lex_state = 497, .external_lex_state = 10}, - [1627] = {.lex_state = 497, .external_lex_state = 10}, - [1628] = {.lex_state = 243, .external_lex_state = 25}, - [1629] = {.lex_state = 496, .external_lex_state = 11}, - [1630] = {.lex_state = 497, .external_lex_state = 10}, - [1631] = {.lex_state = 497, .external_lex_state = 10}, - [1632] = {.lex_state = 243, .external_lex_state = 25}, - [1633] = {.lex_state = 243, .external_lex_state = 25}, - [1634] = {.lex_state = 243, .external_lex_state = 25}, - [1635] = {.lex_state = 243, .external_lex_state = 25}, - [1636] = {.lex_state = 243, .external_lex_state = 25}, - [1637] = {.lex_state = 497, .external_lex_state = 10}, - [1638] = {.lex_state = 243, .external_lex_state = 25}, - [1639] = {.lex_state = 277, .external_lex_state = 2}, - [1640] = {.lex_state = 497, .external_lex_state = 10}, - [1641] = {.lex_state = 504, .external_lex_state = 21}, - [1642] = {.lex_state = 497, .external_lex_state = 10}, - [1643] = {.lex_state = 243, .external_lex_state = 25}, - [1644] = {.lex_state = 497, .external_lex_state = 10}, - [1645] = {.lex_state = 243, .external_lex_state = 25}, - [1646] = {.lex_state = 496, .external_lex_state = 10}, - [1647] = {.lex_state = 497, .external_lex_state = 10}, - [1648] = {.lex_state = 243, .external_lex_state = 25}, - [1649] = {.lex_state = 496, .external_lex_state = 10}, - [1650] = {.lex_state = 497, .external_lex_state = 10}, - [1651] = {.lex_state = 497, .external_lex_state = 10}, - [1652] = {.lex_state = 243, .external_lex_state = 25}, - [1653] = {.lex_state = 496, .external_lex_state = 10}, - [1654] = {.lex_state = 243, .external_lex_state = 25}, - [1655] = {.lex_state = 497, .external_lex_state = 10}, - [1656] = {.lex_state = 281, .external_lex_state = 27}, - [1657] = {.lex_state = 497, .external_lex_state = 10}, - [1658] = {.lex_state = 177, .external_lex_state = 11}, - [1659] = {.lex_state = 497, .external_lex_state = 10}, - [1660] = {.lex_state = 504, .external_lex_state = 21}, - [1661] = {.lex_state = 243, .external_lex_state = 25}, - [1662] = {.lex_state = 243, .external_lex_state = 25}, - [1663] = {.lex_state = 243, .external_lex_state = 25}, - [1664] = {.lex_state = 243, .external_lex_state = 25}, - [1665] = {.lex_state = 243, .external_lex_state = 25}, - [1666] = {.lex_state = 243, .external_lex_state = 25}, - [1667] = {.lex_state = 504, .external_lex_state = 21}, - [1668] = {.lex_state = 243, .external_lex_state = 25}, - [1669] = {.lex_state = 243, .external_lex_state = 25}, - [1670] = {.lex_state = 243, .external_lex_state = 25}, - [1671] = {.lex_state = 243, .external_lex_state = 25}, - [1672] = {.lex_state = 243, .external_lex_state = 25}, - [1673] = {.lex_state = 243, .external_lex_state = 25}, - [1674] = {.lex_state = 243, .external_lex_state = 25}, - [1675] = {.lex_state = 243, .external_lex_state = 25}, - [1676] = {.lex_state = 243, .external_lex_state = 25}, - [1677] = {.lex_state = 243, .external_lex_state = 25}, - [1678] = {.lex_state = 243, .external_lex_state = 25}, - [1679] = {.lex_state = 243, .external_lex_state = 25}, - [1680] = {.lex_state = 243, .external_lex_state = 25}, - [1681] = {.lex_state = 504, .external_lex_state = 21}, - [1682] = {.lex_state = 243, .external_lex_state = 25}, - [1683] = {.lex_state = 497, .external_lex_state = 10}, - [1684] = {.lex_state = 243, .external_lex_state = 25}, - [1685] = {.lex_state = 243, .external_lex_state = 25}, - [1686] = {.lex_state = 243, .external_lex_state = 25}, - [1687] = {.lex_state = 504, .external_lex_state = 21}, - [1688] = {.lex_state = 504, .external_lex_state = 21}, - [1689] = {.lex_state = 243, .external_lex_state = 25}, - [1690] = {.lex_state = 191, .external_lex_state = 11}, - [1691] = {.lex_state = 504, .external_lex_state = 21}, - [1692] = {.lex_state = 497, .external_lex_state = 10}, - [1693] = {.lex_state = 243, .external_lex_state = 25}, - [1694] = {.lex_state = 497, .external_lex_state = 10}, - [1695] = {.lex_state = 243, .external_lex_state = 25}, - [1696] = {.lex_state = 497, .external_lex_state = 10}, - [1697] = {.lex_state = 497, .external_lex_state = 10}, - [1698] = {.lex_state = 504, .external_lex_state = 21}, - [1699] = {.lex_state = 243, .external_lex_state = 25}, - [1700] = {.lex_state = 281, .external_lex_state = 27}, - [1701] = {.lex_state = 281, .external_lex_state = 27}, - [1702] = {.lex_state = 496, .external_lex_state = 10}, - [1703] = {.lex_state = 281, .external_lex_state = 27}, - [1704] = {.lex_state = 281, .external_lex_state = 27}, - [1705] = {.lex_state = 281, .external_lex_state = 27}, - [1706] = {.lex_state = 281, .external_lex_state = 27}, - [1707] = {.lex_state = 496, .external_lex_state = 11}, - [1708] = {.lex_state = 243, .external_lex_state = 25}, - [1709] = {.lex_state = 497, .external_lex_state = 10}, - [1710] = {.lex_state = 504, .external_lex_state = 21}, - [1711] = {.lex_state = 504, .external_lex_state = 21}, - [1712] = {.lex_state = 497, .external_lex_state = 10}, - [1713] = {.lex_state = 281, .external_lex_state = 27}, - [1714] = {.lex_state = 496, .external_lex_state = 10}, - [1715] = {.lex_state = 497, .external_lex_state = 10}, - [1716] = {.lex_state = 281, .external_lex_state = 27}, - [1717] = {.lex_state = 243, .external_lex_state = 25}, - [1718] = {.lex_state = 281, .external_lex_state = 27}, - [1719] = {.lex_state = 243, .external_lex_state = 25}, - [1720] = {.lex_state = 504, .external_lex_state = 21}, - [1721] = {.lex_state = 504, .external_lex_state = 21}, - [1722] = {.lex_state = 504, .external_lex_state = 21}, - [1723] = {.lex_state = 243, .external_lex_state = 25}, - [1724] = {.lex_state = 497, .external_lex_state = 10}, - [1725] = {.lex_state = 497, .external_lex_state = 10}, - [1726] = {.lex_state = 504, .external_lex_state = 21}, - [1727] = {.lex_state = 281, .external_lex_state = 27}, - [1728] = {.lex_state = 496, .external_lex_state = 10}, - [1729] = {.lex_state = 243, .external_lex_state = 25}, - [1730] = {.lex_state = 504, .external_lex_state = 21}, - [1731] = {.lex_state = 243, .external_lex_state = 25}, - [1732] = {.lex_state = 243, .external_lex_state = 25}, - [1733] = {.lex_state = 497, .external_lex_state = 10}, - [1734] = {.lex_state = 504, .external_lex_state = 21}, - [1735] = {.lex_state = 243, .external_lex_state = 25}, - [1736] = {.lex_state = 243, .external_lex_state = 25}, - [1737] = {.lex_state = 243, .external_lex_state = 25}, - [1738] = {.lex_state = 281, .external_lex_state = 27}, - [1739] = {.lex_state = 497, .external_lex_state = 10}, - [1740] = {.lex_state = 243, .external_lex_state = 25}, - [1741] = {.lex_state = 243, .external_lex_state = 25}, - [1742] = {.lex_state = 497, .external_lex_state = 10}, - [1743] = {.lex_state = 497, .external_lex_state = 10}, - [1744] = {.lex_state = 243, .external_lex_state = 25}, - [1745] = {.lex_state = 504, .external_lex_state = 21}, - [1746] = {.lex_state = 243, .external_lex_state = 25}, - [1747] = {.lex_state = 497, .external_lex_state = 10}, - [1748] = {.lex_state = 497, .external_lex_state = 10}, - [1749] = {.lex_state = 281, .external_lex_state = 27}, - [1750] = {.lex_state = 243, .external_lex_state = 25}, - [1751] = {.lex_state = 497, .external_lex_state = 10}, - [1752] = {.lex_state = 497, .external_lex_state = 10}, - [1753] = {.lex_state = 497, .external_lex_state = 10}, - [1754] = {.lex_state = 243, .external_lex_state = 25}, - [1755] = {.lex_state = 497, .external_lex_state = 10}, - [1756] = {.lex_state = 504, .external_lex_state = 21}, - [1757] = {.lex_state = 497, .external_lex_state = 10}, - [1758] = {.lex_state = 504, .external_lex_state = 21}, - [1759] = {.lex_state = 497, .external_lex_state = 10}, - [1760] = {.lex_state = 504, .external_lex_state = 21}, - [1761] = {.lex_state = 497, .external_lex_state = 10}, - [1762] = {.lex_state = 497, .external_lex_state = 10}, - [1763] = {.lex_state = 243, .external_lex_state = 25}, - [1764] = {.lex_state = 497, .external_lex_state = 10}, - [1765] = {.lex_state = 281, .external_lex_state = 27}, - [1766] = {.lex_state = 243, .external_lex_state = 25}, - [1767] = {.lex_state = 281, .external_lex_state = 27}, - [1768] = {.lex_state = 243, .external_lex_state = 25}, - [1769] = {.lex_state = 191, .external_lex_state = 11}, - [1770] = {.lex_state = 243, .external_lex_state = 25}, - [1771] = {.lex_state = 243, .external_lex_state = 25}, - [1772] = {.lex_state = 281, .external_lex_state = 27}, - [1773] = {.lex_state = 281, .external_lex_state = 27}, - [1774] = {.lex_state = 243, .external_lex_state = 25}, - [1775] = {.lex_state = 281, .external_lex_state = 27}, - [1776] = {.lex_state = 281, .external_lex_state = 27}, - [1777] = {.lex_state = 243, .external_lex_state = 25}, - [1778] = {.lex_state = 229, .external_lex_state = 2}, - [1779] = {.lex_state = 497, .external_lex_state = 10}, - [1780] = {.lex_state = 497, .external_lex_state = 10}, - [1781] = {.lex_state = 497, .external_lex_state = 10}, - [1782] = {.lex_state = 281, .external_lex_state = 27}, - [1783] = {.lex_state = 243, .external_lex_state = 25}, - [1784] = {.lex_state = 243, .external_lex_state = 25}, - [1785] = {.lex_state = 229, .external_lex_state = 2}, - [1786] = {.lex_state = 243, .external_lex_state = 25}, - [1787] = {.lex_state = 497, .external_lex_state = 10}, - [1788] = {.lex_state = 243, .external_lex_state = 25}, - [1789] = {.lex_state = 497, .external_lex_state = 10}, - [1790] = {.lex_state = 497, .external_lex_state = 10}, - [1791] = {.lex_state = 243, .external_lex_state = 25}, - [1792] = {.lex_state = 497, .external_lex_state = 10}, - [1793] = {.lex_state = 243, .external_lex_state = 25}, - [1794] = {.lex_state = 243, .external_lex_state = 25}, - [1795] = {.lex_state = 281, .external_lex_state = 27}, - [1796] = {.lex_state = 281, .external_lex_state = 27}, - [1797] = {.lex_state = 497, .external_lex_state = 10}, - [1798] = {.lex_state = 497, .external_lex_state = 10}, - [1799] = {.lex_state = 243, .external_lex_state = 25}, - [1800] = {.lex_state = 243, .external_lex_state = 25}, - [1801] = {.lex_state = 497, .external_lex_state = 10}, - [1802] = {.lex_state = 281, .external_lex_state = 27}, - [1803] = {.lex_state = 243, .external_lex_state = 25}, - [1804] = {.lex_state = 504, .external_lex_state = 21}, - [1805] = {.lex_state = 281, .external_lex_state = 27}, - [1806] = {.lex_state = 497, .external_lex_state = 10}, - [1807] = {.lex_state = 497, .external_lex_state = 10}, - [1808] = {.lex_state = 243, .external_lex_state = 25}, - [1809] = {.lex_state = 243, .external_lex_state = 25}, - [1810] = {.lex_state = 497, .external_lex_state = 10}, - [1811] = {.lex_state = 243, .external_lex_state = 25}, - [1812] = {.lex_state = 243, .external_lex_state = 25}, - [1813] = {.lex_state = 281, .external_lex_state = 27}, - [1814] = {.lex_state = 243, .external_lex_state = 25}, - [1815] = {.lex_state = 504, .external_lex_state = 21}, - [1816] = {.lex_state = 243, .external_lex_state = 25}, - [1817] = {.lex_state = 243, .external_lex_state = 25}, - [1818] = {.lex_state = 243, .external_lex_state = 25}, - [1819] = {.lex_state = 243, .external_lex_state = 25}, - [1820] = {.lex_state = 243, .external_lex_state = 25}, - [1821] = {.lex_state = 504, .external_lex_state = 21}, - [1822] = {.lex_state = 497, .external_lex_state = 10}, - [1823] = {.lex_state = 243, .external_lex_state = 25}, - [1824] = {.lex_state = 243, .external_lex_state = 25}, - [1825] = {.lex_state = 497, .external_lex_state = 10}, - [1826] = {.lex_state = 243, .external_lex_state = 25}, - [1827] = {.lex_state = 243, .external_lex_state = 25}, - [1828] = {.lex_state = 497, .external_lex_state = 10}, - [1829] = {.lex_state = 243, .external_lex_state = 25}, - [1830] = {.lex_state = 243, .external_lex_state = 25}, - [1831] = {.lex_state = 243, .external_lex_state = 25}, - [1832] = {.lex_state = 504, .external_lex_state = 21}, - [1833] = {.lex_state = 504, .external_lex_state = 21}, - [1834] = {.lex_state = 497, .external_lex_state = 10}, - [1835] = {.lex_state = 243, .external_lex_state = 25}, - [1836] = {.lex_state = 243, .external_lex_state = 25}, - [1837] = {.lex_state = 504, .external_lex_state = 21}, - [1838] = {.lex_state = 243, .external_lex_state = 25}, - [1839] = {.lex_state = 243, .external_lex_state = 25}, - [1840] = {.lex_state = 243, .external_lex_state = 25}, - [1841] = {.lex_state = 504, .external_lex_state = 21}, - [1842] = {.lex_state = 497, .external_lex_state = 10}, - [1843] = {.lex_state = 243, .external_lex_state = 25}, - [1844] = {.lex_state = 243, .external_lex_state = 25}, - [1845] = {.lex_state = 504, .external_lex_state = 21}, - [1846] = {.lex_state = 243, .external_lex_state = 25}, - [1847] = {.lex_state = 243, .external_lex_state = 25}, - [1848] = {.lex_state = 243, .external_lex_state = 25}, - [1849] = {.lex_state = 243, .external_lex_state = 25}, - [1850] = {.lex_state = 243, .external_lex_state = 25}, - [1851] = {.lex_state = 243, .external_lex_state = 25}, - [1852] = {.lex_state = 243, .external_lex_state = 25}, - [1853] = {.lex_state = 243, .external_lex_state = 25}, - [1854] = {.lex_state = 243, .external_lex_state = 25}, - [1855] = {.lex_state = 243, .external_lex_state = 25}, - [1856] = {.lex_state = 243, .external_lex_state = 25}, - [1857] = {.lex_state = 243, .external_lex_state = 25}, - [1858] = {.lex_state = 243, .external_lex_state = 25}, - [1859] = {.lex_state = 243, .external_lex_state = 25}, - [1860] = {.lex_state = 243, .external_lex_state = 25}, - [1861] = {.lex_state = 504, .external_lex_state = 21}, - [1862] = {.lex_state = 243, .external_lex_state = 25}, - [1863] = {.lex_state = 243, .external_lex_state = 25}, - [1864] = {.lex_state = 243, .external_lex_state = 25}, - [1865] = {.lex_state = 497, .external_lex_state = 10}, - [1866] = {.lex_state = 504, .external_lex_state = 21}, - [1867] = {.lex_state = 504, .external_lex_state = 21}, - [1868] = {.lex_state = 243, .external_lex_state = 25}, - [1869] = {.lex_state = 243, .external_lex_state = 25}, - [1870] = {.lex_state = 497, .external_lex_state = 10}, - [1871] = {.lex_state = 243, .external_lex_state = 25}, - [1872] = {.lex_state = 243, .external_lex_state = 25}, - [1873] = {.lex_state = 243, .external_lex_state = 25}, - [1874] = {.lex_state = 243, .external_lex_state = 25}, - [1875] = {.lex_state = 207, .external_lex_state = 19}, - [1876] = {.lex_state = 207, .external_lex_state = 19}, - [1877] = {.lex_state = 262, .external_lex_state = 28}, - [1878] = {.lex_state = 207, .external_lex_state = 19}, - [1879] = {.lex_state = 209, .external_lex_state = 19}, - [1880] = {.lex_state = 284, .external_lex_state = 29}, - [1881] = {.lex_state = 209, .external_lex_state = 19}, - [1882] = {.lex_state = 191, .external_lex_state = 11}, - [1883] = {.lex_state = 209, .external_lex_state = 19}, - [1884] = {.lex_state = 209, .external_lex_state = 19}, - [1885] = {.lex_state = 262, .external_lex_state = 28}, - [1886] = {.lex_state = 207, .external_lex_state = 19}, - [1887] = {.lex_state = 496, .external_lex_state = 11}, - [1888] = {.lex_state = 209, .external_lex_state = 19}, - [1889] = {.lex_state = 207, .external_lex_state = 19}, - [1890] = {.lex_state = 497, .external_lex_state = 10}, - [1891] = {.lex_state = 496, .external_lex_state = 11}, - [1892] = {.lex_state = 262, .external_lex_state = 28}, - [1893] = {.lex_state = 284, .external_lex_state = 29}, - [1894] = {.lex_state = 262, .external_lex_state = 28}, - [1895] = {.lex_state = 499, .external_lex_state = 11}, - [1896] = {.lex_state = 284, .external_lex_state = 29}, - [1897] = {.lex_state = 209, .external_lex_state = 19}, - [1898] = {.lex_state = 207, .external_lex_state = 19}, - [1899] = {.lex_state = 209, .external_lex_state = 19}, - [1900] = {.lex_state = 497, .external_lex_state = 10}, - [1901] = {.lex_state = 262, .external_lex_state = 28}, - [1902] = {.lex_state = 209, .external_lex_state = 19}, - [1903] = {.lex_state = 262, .external_lex_state = 28}, - [1904] = {.lex_state = 262, .external_lex_state = 28}, - [1905] = {.lex_state = 207, .external_lex_state = 19}, - [1906] = {.lex_state = 262, .external_lex_state = 28}, - [1907] = {.lex_state = 284, .external_lex_state = 29}, - [1908] = {.lex_state = 262, .external_lex_state = 28}, - [1909] = {.lex_state = 262, .external_lex_state = 28}, - [1910] = {.lex_state = 499, .external_lex_state = 11}, - [1911] = {.lex_state = 262, .external_lex_state = 28}, - [1912] = {.lex_state = 284, .external_lex_state = 29}, - [1913] = {.lex_state = 262, .external_lex_state = 28}, - [1914] = {.lex_state = 262, .external_lex_state = 28}, - [1915] = {.lex_state = 284, .external_lex_state = 29}, - [1916] = {.lex_state = 284, .external_lex_state = 29}, - [1917] = {.lex_state = 280, .external_lex_state = 12}, - [1918] = {.lex_state = 209, .external_lex_state = 19}, - [1919] = {.lex_state = 209, .external_lex_state = 19}, - [1920] = {.lex_state = 209, .external_lex_state = 19}, - [1921] = {.lex_state = 284, .external_lex_state = 29}, - [1922] = {.lex_state = 209, .external_lex_state = 19}, - [1923] = {.lex_state = 499, .external_lex_state = 11}, - [1924] = {.lex_state = 284, .external_lex_state = 29}, - [1925] = {.lex_state = 209, .external_lex_state = 19}, - [1926] = {.lex_state = 284, .external_lex_state = 29}, - [1927] = {.lex_state = 284, .external_lex_state = 29}, - [1928] = {.lex_state = 280, .external_lex_state = 12}, - [1929] = {.lex_state = 499, .external_lex_state = 11}, - [1930] = {.lex_state = 284, .external_lex_state = 29}, - [1931] = {.lex_state = 262, .external_lex_state = 28}, - [1932] = {.lex_state = 262, .external_lex_state = 28}, - [1933] = {.lex_state = 282, .external_lex_state = 30}, - [1934] = {.lex_state = 280, .external_lex_state = 12}, - [1935] = {.lex_state = 217, .external_lex_state = 31}, - [1936] = {.lex_state = 260, .external_lex_state = 20}, - [1937] = {.lex_state = 284, .external_lex_state = 29}, - [1938] = {.lex_state = 282, .external_lex_state = 30}, - [1939] = {.lex_state = 217, .external_lex_state = 31}, - [1940] = {.lex_state = 282, .external_lex_state = 30}, - [1941] = {.lex_state = 284, .external_lex_state = 29}, - [1942] = {.lex_state = 284, .external_lex_state = 29}, - [1943] = {.lex_state = 499, .external_lex_state = 11}, - [1944] = {.lex_state = 217, .external_lex_state = 31}, - [1945] = {.lex_state = 280, .external_lex_state = 12}, - [1946] = {.lex_state = 282, .external_lex_state = 30}, - [1947] = {.lex_state = 282, .external_lex_state = 30}, - [1948] = {.lex_state = 284, .external_lex_state = 29}, - [1949] = {.lex_state = 217, .external_lex_state = 31}, - [1950] = {.lex_state = 282, .external_lex_state = 30}, - [1951] = {.lex_state = 282, .external_lex_state = 30}, - [1952] = {.lex_state = 282, .external_lex_state = 30}, - [1953] = {.lex_state = 282, .external_lex_state = 30}, - [1954] = {.lex_state = 284, .external_lex_state = 29}, - [1955] = {.lex_state = 280, .external_lex_state = 12}, - [1956] = {.lex_state = 207, .external_lex_state = 21}, - [1957] = {.lex_state = 260, .external_lex_state = 20}, - [1958] = {.lex_state = 262, .external_lex_state = 28}, - [1959] = {.lex_state = 217, .external_lex_state = 31}, - [1960] = {.lex_state = 262, .external_lex_state = 28}, - [1961] = {.lex_state = 207, .external_lex_state = 21}, - [1962] = {.lex_state = 217, .external_lex_state = 31}, - [1963] = {.lex_state = 284, .external_lex_state = 29}, - [1964] = {.lex_state = 284, .external_lex_state = 29}, - [1965] = {.lex_state = 282, .external_lex_state = 30}, - [1966] = {.lex_state = 217, .external_lex_state = 31}, - [1967] = {.lex_state = 262, .external_lex_state = 28}, - [1968] = {.lex_state = 290, .external_lex_state = 30}, - [1969] = {.lex_state = 258, .external_lex_state = 28}, - [1970] = {.lex_state = 262, .external_lex_state = 28}, - [1971] = {.lex_state = 280, .external_lex_state = 12}, - [1972] = {.lex_state = 217, .external_lex_state = 31}, - [1973] = {.lex_state = 290, .external_lex_state = 30}, - [1974] = {.lex_state = 284, .external_lex_state = 29}, - [1975] = {.lex_state = 258, .external_lex_state = 28}, - [1976] = {.lex_state = 290, .external_lex_state = 30}, - [1977] = {.lex_state = 282, .external_lex_state = 30}, - [1978] = {.lex_state = 264, .external_lex_state = 28}, - [1979] = {.lex_state = 282, .external_lex_state = 30}, - [1980] = {.lex_state = 262, .external_lex_state = 28}, - [1981] = {.lex_state = 284, .external_lex_state = 29}, - [1982] = {.lex_state = 284, .external_lex_state = 29}, - [1983] = {.lex_state = 284, .external_lex_state = 29}, - [1984] = {.lex_state = 284, .external_lex_state = 29}, - [1985] = {.lex_state = 280, .external_lex_state = 12}, - [1986] = {.lex_state = 290, .external_lex_state = 30}, - [1987] = {.lex_state = 262, .external_lex_state = 28}, - [1988] = {.lex_state = 284, .external_lex_state = 29}, - [1989] = {.lex_state = 499, .external_lex_state = 11}, - [1990] = {.lex_state = 284, .external_lex_state = 29}, - [1991] = {.lex_state = 282, .external_lex_state = 30}, - [1992] = {.lex_state = 284, .external_lex_state = 29}, - [1993] = {.lex_state = 290, .external_lex_state = 30}, - [1994] = {.lex_state = 262, .external_lex_state = 28}, - [1995] = {.lex_state = 284, .external_lex_state = 29}, - [1996] = {.lex_state = 290, .external_lex_state = 30}, - [1997] = {.lex_state = 282, .external_lex_state = 30}, - [1998] = {.lex_state = 280, .external_lex_state = 12}, - [1999] = {.lex_state = 217, .external_lex_state = 31}, - [2000] = {.lex_state = 290, .external_lex_state = 30}, - [2001] = {.lex_state = 217, .external_lex_state = 31}, - [2002] = {.lex_state = 217, .external_lex_state = 31}, - [2003] = {.lex_state = 284, .external_lex_state = 29}, - [2004] = {.lex_state = 290, .external_lex_state = 30}, - [2005] = {.lex_state = 284, .external_lex_state = 29}, - [2006] = {.lex_state = 207, .external_lex_state = 21}, - [2007] = {.lex_state = 207, .external_lex_state = 21}, - [2008] = {.lex_state = 217, .external_lex_state = 31}, - [2009] = {.lex_state = 207, .external_lex_state = 21}, - [2010] = {.lex_state = 262, .external_lex_state = 28}, - [2011] = {.lex_state = 284, .external_lex_state = 29}, - [2012] = {.lex_state = 255, .external_lex_state = 20}, - [2013] = {.lex_state = 282, .external_lex_state = 30}, - [2014] = {.lex_state = 253, .external_lex_state = 32}, - [2015] = {.lex_state = 260, .external_lex_state = 20}, - [2016] = {.lex_state = 282, .external_lex_state = 30}, - [2017] = {.lex_state = 290, .external_lex_state = 30}, - [2018] = {.lex_state = 285, .external_lex_state = 33}, - [2019] = {.lex_state = 290, .external_lex_state = 34}, - [2020] = {.lex_state = 285, .external_lex_state = 33}, - [2021] = {.lex_state = 290, .external_lex_state = 34}, - [2022] = {.lex_state = 290, .external_lex_state = 30}, - [2023] = {.lex_state = 285, .external_lex_state = 33}, - [2024] = {.lex_state = 215, .external_lex_state = 21}, - [2025] = {.lex_state = 282, .external_lex_state = 30}, - [2026] = {.lex_state = 285, .external_lex_state = 33}, - [2027] = {.lex_state = 280, .external_lex_state = 12}, - [2028] = {.lex_state = 260, .external_lex_state = 20}, - [2029] = {.lex_state = 282, .external_lex_state = 30}, - [2030] = {.lex_state = 262, .external_lex_state = 28}, - [2031] = {.lex_state = 290, .external_lex_state = 30}, - [2032] = {.lex_state = 260, .external_lex_state = 20}, - [2033] = {.lex_state = 290, .external_lex_state = 34}, - [2034] = {.lex_state = 264, .external_lex_state = 22}, - [2035] = {.lex_state = 280, .external_lex_state = 12}, - [2036] = {.lex_state = 285, .external_lex_state = 33}, - [2037] = {.lex_state = 290, .external_lex_state = 30}, - [2038] = {.lex_state = 262, .external_lex_state = 28}, - [2039] = {.lex_state = 253, .external_lex_state = 32}, - [2040] = {.lex_state = 253, .external_lex_state = 32}, - [2041] = {.lex_state = 283, .external_lex_state = 16}, - [2042] = {.lex_state = 290, .external_lex_state = 30}, - [2043] = {.lex_state = 262, .external_lex_state = 28}, - [2044] = {.lex_state = 290, .external_lex_state = 30}, - [2045] = {.lex_state = 285, .external_lex_state = 33}, - [2046] = {.lex_state = 282, .external_lex_state = 30}, - [2047] = {.lex_state = 255, .external_lex_state = 20}, - [2048] = {.lex_state = 282, .external_lex_state = 30}, - [2049] = {.lex_state = 260, .external_lex_state = 20}, - [2050] = {.lex_state = 280, .external_lex_state = 12}, - [2051] = {.lex_state = 283, .external_lex_state = 16}, - [2052] = {.lex_state = 255, .external_lex_state = 20}, - [2053] = {.lex_state = 260, .external_lex_state = 20}, - [2054] = {.lex_state = 282, .external_lex_state = 30}, - [2055] = {.lex_state = 283, .external_lex_state = 16}, - [2056] = {.lex_state = 260, .external_lex_state = 28}, - [2057] = {.lex_state = 290, .external_lex_state = 30}, - [2058] = {.lex_state = 290, .external_lex_state = 30}, - [2059] = {.lex_state = 215, .external_lex_state = 21}, - [2060] = {.lex_state = 282, .external_lex_state = 30}, - [2061] = {.lex_state = 282, .external_lex_state = 30}, - [2062] = {.lex_state = 262, .external_lex_state = 28}, - [2063] = {.lex_state = 253, .external_lex_state = 32}, - [2064] = {.lex_state = 282, .external_lex_state = 30}, - [2065] = {.lex_state = 290, .external_lex_state = 30}, - [2066] = {.lex_state = 290, .external_lex_state = 30}, - [2067] = {.lex_state = 260, .external_lex_state = 20}, - [2068] = {.lex_state = 290, .external_lex_state = 34}, - [2069] = {.lex_state = 290, .external_lex_state = 30}, - [2070] = {.lex_state = 290, .external_lex_state = 34}, - [2071] = {.lex_state = 260, .external_lex_state = 28}, - [2072] = {.lex_state = 282, .external_lex_state = 30}, - [2073] = {.lex_state = 280, .external_lex_state = 12}, - [2074] = {.lex_state = 290, .external_lex_state = 34}, - [2075] = {.lex_state = 290, .external_lex_state = 30}, - [2076] = {.lex_state = 260, .external_lex_state = 20}, - [2077] = {.lex_state = 282, .external_lex_state = 30}, - [2078] = {.lex_state = 260, .external_lex_state = 20}, - [2079] = {.lex_state = 255, .external_lex_state = 20}, - [2080] = {.lex_state = 262, .external_lex_state = 28}, - [2081] = {.lex_state = 253, .external_lex_state = 32}, - [2082] = {.lex_state = 258, .external_lex_state = 28}, - [2083] = {.lex_state = 280, .external_lex_state = 12}, - [2084] = {.lex_state = 253, .external_lex_state = 32}, - [2085] = {.lex_state = 253, .external_lex_state = 32}, - [2086] = {.lex_state = 260, .external_lex_state = 20}, - [2087] = {.lex_state = 253, .external_lex_state = 32}, - [2088] = {.lex_state = 282, .external_lex_state = 30}, - [2089] = {.lex_state = 283, .external_lex_state = 16}, - [2090] = {.lex_state = 255, .external_lex_state = 20}, - [2091] = {.lex_state = 290, .external_lex_state = 30}, - [2092] = {.lex_state = 260, .external_lex_state = 28}, - [2093] = {.lex_state = 283, .external_lex_state = 16}, - [2094] = {.lex_state = 253, .external_lex_state = 32}, - [2095] = {.lex_state = 282, .external_lex_state = 30}, - [2096] = {.lex_state = 255, .external_lex_state = 20}, - [2097] = {.lex_state = 290, .external_lex_state = 30}, - [2098] = {.lex_state = 290, .external_lex_state = 30}, - [2099] = {.lex_state = 264, .external_lex_state = 22}, - [2100] = {.lex_state = 260, .external_lex_state = 20}, - [2101] = {.lex_state = 215, .external_lex_state = 21}, - [2102] = {.lex_state = 260, .external_lex_state = 20}, - [2103] = {.lex_state = 290, .external_lex_state = 30}, - [2104] = {.lex_state = 283, .external_lex_state = 16}, - [2105] = {.lex_state = 290, .external_lex_state = 30}, - [2106] = {.lex_state = 290, .external_lex_state = 30}, - [2107] = {.lex_state = 282, .external_lex_state = 30}, - [2108] = {.lex_state = 282, .external_lex_state = 30}, - [2109] = {.lex_state = 262, .external_lex_state = 28}, - [2110] = {.lex_state = 260, .external_lex_state = 20}, - [2111] = {.lex_state = 262, .external_lex_state = 28}, - [2112] = {.lex_state = 260, .external_lex_state = 28}, - [2113] = {.lex_state = 215, .external_lex_state = 21}, - [2114] = {.lex_state = 260, .external_lex_state = 28}, - [2115] = {.lex_state = 255, .external_lex_state = 20}, - [2116] = {.lex_state = 260, .external_lex_state = 20}, - [2117] = {.lex_state = 262, .external_lex_state = 28}, - [2118] = {.lex_state = 255, .external_lex_state = 20}, - [2119] = {.lex_state = 260, .external_lex_state = 28}, - [2120] = {.lex_state = 262, .external_lex_state = 28}, - [2121] = {.lex_state = 290, .external_lex_state = 30}, - [2122] = {.lex_state = 282, .external_lex_state = 30}, - [2123] = {.lex_state = 282, .external_lex_state = 30}, - [2124] = {.lex_state = 282, .external_lex_state = 30}, - [2125] = {.lex_state = 215, .external_lex_state = 21}, - [2126] = {.lex_state = 290, .external_lex_state = 34}, - [2127] = {.lex_state = 260, .external_lex_state = 20}, - [2128] = {.lex_state = 289, .external_lex_state = 14}, - [2129] = {.lex_state = 253, .external_lex_state = 35}, - [2130] = {.lex_state = 290, .external_lex_state = 34}, - [2131] = {.lex_state = 253, .external_lex_state = 35}, - [2132] = {.lex_state = 290, .external_lex_state = 34}, - [2133] = {.lex_state = 255, .external_lex_state = 36}, - [2134] = {.lex_state = 290, .external_lex_state = 34}, - [2135] = {.lex_state = 290, .external_lex_state = 34}, - [2136] = {.lex_state = 290, .external_lex_state = 34}, - [2137] = {.lex_state = 283, .external_lex_state = 16}, - [2138] = {.lex_state = 283, .external_lex_state = 16}, - [2139] = {.lex_state = 279, .external_lex_state = 14}, - [2140] = {.lex_state = 258, .external_lex_state = 22}, - [2141] = {.lex_state = 283, .external_lex_state = 16}, - [2142] = {.lex_state = 253, .external_lex_state = 22}, - [2143] = {.lex_state = 289, .external_lex_state = 14}, - [2144] = {.lex_state = 279, .external_lex_state = 14}, - [2145] = {.lex_state = 290, .external_lex_state = 34}, - [2146] = {.lex_state = 253, .external_lex_state = 35}, - [2147] = {.lex_state = 253, .external_lex_state = 35}, - [2148] = {.lex_state = 255, .external_lex_state = 36}, - [2149] = {.lex_state = 255, .external_lex_state = 36}, - [2150] = {.lex_state = 279, .external_lex_state = 14}, - [2151] = {.lex_state = 261, .external_lex_state = 37}, - [2152] = {.lex_state = 255, .external_lex_state = 36}, - [2153] = {.lex_state = 253, .external_lex_state = 22}, - [2154] = {.lex_state = 255, .external_lex_state = 23}, - [2155] = {.lex_state = 264, .external_lex_state = 22}, - [2156] = {.lex_state = 262, .external_lex_state = 28}, - [2157] = {.lex_state = 255, .external_lex_state = 36}, - [2158] = {.lex_state = 260, .external_lex_state = 28}, - [2159] = {.lex_state = 260, .external_lex_state = 20}, - [2160] = {.lex_state = 260, .external_lex_state = 28}, - [2161] = {.lex_state = 260, .external_lex_state = 28}, - [2162] = {.lex_state = 288, .external_lex_state = 34}, - [2163] = {.lex_state = 285, .external_lex_state = 33}, - [2164] = {.lex_state = 285, .external_lex_state = 33}, - [2165] = {.lex_state = 285, .external_lex_state = 33}, - [2166] = {.lex_state = 288, .external_lex_state = 34}, - [2167] = {.lex_state = 288, .external_lex_state = 34}, - [2168] = {.lex_state = 288, .external_lex_state = 34}, - [2169] = {.lex_state = 260, .external_lex_state = 28}, - [2170] = {.lex_state = 285, .external_lex_state = 33}, - [2171] = {.lex_state = 253, .external_lex_state = 22}, - [2172] = {.lex_state = 255, .external_lex_state = 23}, - [2173] = {.lex_state = 285, .external_lex_state = 33}, - [2174] = {.lex_state = 283, .external_lex_state = 16}, - [2175] = {.lex_state = 285, .external_lex_state = 33}, - [2176] = {.lex_state = 260, .external_lex_state = 28}, - [2177] = {.lex_state = 285, .external_lex_state = 33}, - [2178] = {.lex_state = 283, .external_lex_state = 16}, - [2179] = {.lex_state = 260, .external_lex_state = 20}, - [2180] = {.lex_state = 260, .external_lex_state = 20}, - [2181] = {.lex_state = 285, .external_lex_state = 33}, - [2182] = {.lex_state = 253, .external_lex_state = 22}, - [2183] = {.lex_state = 262, .external_lex_state = 28}, - [2184] = {.lex_state = 262, .external_lex_state = 28}, - [2185] = {.lex_state = 255, .external_lex_state = 36}, - [2186] = {.lex_state = 260, .external_lex_state = 28}, - [2187] = {.lex_state = 260, .external_lex_state = 28}, - [2188] = {.lex_state = 255, .external_lex_state = 36}, - [2189] = {.lex_state = 255, .external_lex_state = 36}, - [2190] = {.lex_state = 285, .external_lex_state = 33}, - [2191] = {.lex_state = 260, .external_lex_state = 20}, - [2192] = {.lex_state = 285, .external_lex_state = 33}, - [2193] = {.lex_state = 285, .external_lex_state = 33}, - [2194] = {.lex_state = 283, .external_lex_state = 16}, - [2195] = {.lex_state = 283, .external_lex_state = 16}, - [2196] = {.lex_state = 285, .external_lex_state = 33}, - [2197] = {.lex_state = 260, .external_lex_state = 28}, - [2198] = {.lex_state = 260, .external_lex_state = 20}, - [2199] = {.lex_state = 260, .external_lex_state = 20}, - [2200] = {.lex_state = 260, .external_lex_state = 20}, - [2201] = {.lex_state = 260, .external_lex_state = 20}, - [2202] = {.lex_state = 260, .external_lex_state = 28}, - [2203] = {.lex_state = 285, .external_lex_state = 33}, - [2204] = {.lex_state = 260, .external_lex_state = 28}, - [2205] = {.lex_state = 260, .external_lex_state = 28}, - [2206] = {.lex_state = 253, .external_lex_state = 22}, - [2207] = {.lex_state = 279, .external_lex_state = 14}, - [2208] = {.lex_state = 253, .external_lex_state = 22}, - [2209] = {.lex_state = 290, .external_lex_state = 34}, - [2210] = {.lex_state = 285, .external_lex_state = 33}, - [2211] = {.lex_state = 260, .external_lex_state = 28}, - [2212] = {.lex_state = 255, .external_lex_state = 36}, - [2213] = {.lex_state = 285, .external_lex_state = 33}, - [2214] = {.lex_state = 279, .external_lex_state = 14}, - [2215] = {.lex_state = 285, .external_lex_state = 33}, - [2216] = {.lex_state = 253, .external_lex_state = 22}, - [2217] = {.lex_state = 260, .external_lex_state = 28}, - [2218] = {.lex_state = 285, .external_lex_state = 33}, - [2219] = {.lex_state = 290, .external_lex_state = 34}, - [2220] = {.lex_state = 290, .external_lex_state = 34}, - [2221] = {.lex_state = 290, .external_lex_state = 34}, - [2222] = {.lex_state = 255, .external_lex_state = 20}, - [2223] = {.lex_state = 260, .external_lex_state = 20}, - [2224] = {.lex_state = 290, .external_lex_state = 34}, - [2225] = {.lex_state = 290, .external_lex_state = 34}, - [2226] = {.lex_state = 260, .external_lex_state = 20}, - [2227] = {.lex_state = 260, .external_lex_state = 20}, - [2228] = {.lex_state = 260, .external_lex_state = 20}, - [2229] = {.lex_state = 288, .external_lex_state = 34}, - [2230] = {.lex_state = 288, .external_lex_state = 34}, - [2231] = {.lex_state = 279, .external_lex_state = 14}, - [2232] = {.lex_state = 260, .external_lex_state = 20}, - [2233] = {.lex_state = 260, .external_lex_state = 28}, - [2234] = {.lex_state = 290, .external_lex_state = 34}, - [2235] = {.lex_state = 260, .external_lex_state = 20}, - [2236] = {.lex_state = 260, .external_lex_state = 28}, - [2237] = {.lex_state = 260, .external_lex_state = 28}, - [2238] = {.lex_state = 290, .external_lex_state = 34}, - [2239] = {.lex_state = 260, .external_lex_state = 28}, - [2240] = {.lex_state = 260, .external_lex_state = 20}, - [2241] = {.lex_state = 253, .external_lex_state = 22}, - [2242] = {.lex_state = 290, .external_lex_state = 34}, - [2243] = {.lex_state = 258, .external_lex_state = 22}, - [2244] = {.lex_state = 290, .external_lex_state = 34}, - [2245] = {.lex_state = 260, .external_lex_state = 20}, - [2246] = {.lex_state = 260, .external_lex_state = 20}, - [2247] = {.lex_state = 290, .external_lex_state = 34}, - [2248] = {.lex_state = 260, .external_lex_state = 28}, - [2249] = {.lex_state = 290, .external_lex_state = 34}, - [2250] = {.lex_state = 285, .external_lex_state = 33}, - [2251] = {.lex_state = 260, .external_lex_state = 20}, - [2252] = {.lex_state = 289, .external_lex_state = 14}, - [2253] = {.lex_state = 285, .external_lex_state = 33}, - [2254] = {.lex_state = 279, .external_lex_state = 14}, - [2255] = {.lex_state = 260, .external_lex_state = 28}, - [2256] = {.lex_state = 253, .external_lex_state = 22}, - [2257] = {.lex_state = 253, .external_lex_state = 37}, - [2258] = {.lex_state = 253, .external_lex_state = 37}, - [2259] = {.lex_state = 255, .external_lex_state = 38}, - [2260] = {.lex_state = 255, .external_lex_state = 38}, - [2261] = {.lex_state = 255, .external_lex_state = 38}, - [2262] = {.lex_state = 253, .external_lex_state = 37}, - [2263] = {.lex_state = 255, .external_lex_state = 32}, - [2264] = {.lex_state = 289, .external_lex_state = 14}, - [2265] = {.lex_state = 279, .external_lex_state = 14}, - [2266] = {.lex_state = 289, .external_lex_state = 14}, - [2267] = {.lex_state = 255, .external_lex_state = 38}, - [2268] = {.lex_state = 288, .external_lex_state = 34}, - [2269] = {.lex_state = 288, .external_lex_state = 34}, - [2270] = {.lex_state = 253, .external_lex_state = 37}, - [2271] = {.lex_state = 288, .external_lex_state = 34}, - [2272] = {.lex_state = 253, .external_lex_state = 37}, - [2273] = {.lex_state = 253, .external_lex_state = 37}, - [2274] = {.lex_state = 253, .external_lex_state = 37}, - [2275] = {.lex_state = 253, .external_lex_state = 37}, - [2276] = {.lex_state = 255, .external_lex_state = 20}, - [2277] = {.lex_state = 253, .external_lex_state = 37}, - [2278] = {.lex_state = 253, .external_lex_state = 37}, - [2279] = {.lex_state = 288, .external_lex_state = 34}, - [2280] = {.lex_state = 258, .external_lex_state = 22}, - [2281] = {.lex_state = 253, .external_lex_state = 37}, - [2282] = {.lex_state = 253, .external_lex_state = 37}, - [2283] = {.lex_state = 253, .external_lex_state = 37}, - [2284] = {.lex_state = 255, .external_lex_state = 38}, - [2285] = {.lex_state = 253, .external_lex_state = 37}, - [2286] = {.lex_state = 253, .external_lex_state = 37}, - [2287] = {.lex_state = 255, .external_lex_state = 38}, - [2288] = {.lex_state = 253, .external_lex_state = 37}, - [2289] = {.lex_state = 255, .external_lex_state = 38}, - [2290] = {.lex_state = 253, .external_lex_state = 37}, - [2291] = {.lex_state = 253, .external_lex_state = 37}, - [2292] = {.lex_state = 141, .external_lex_state = 39}, - [2293] = {.lex_state = 253, .external_lex_state = 37}, - [2294] = {.lex_state = 141, .external_lex_state = 39}, - [2295] = {.lex_state = 279, .external_lex_state = 14}, - [2296] = {.lex_state = 253, .external_lex_state = 37}, - [2297] = {.lex_state = 253, .external_lex_state = 37}, - [2298] = {.lex_state = 279, .external_lex_state = 14}, - [2299] = {.lex_state = 253, .external_lex_state = 22}, - [2300] = {.lex_state = 253, .external_lex_state = 37}, - [2301] = {.lex_state = 253, .external_lex_state = 37}, - [2302] = {.lex_state = 255, .external_lex_state = 20}, - [2303] = {.lex_state = 253, .external_lex_state = 37}, - [2304] = {.lex_state = 279, .external_lex_state = 14}, - [2305] = {.lex_state = 253, .external_lex_state = 37}, - [2306] = {.lex_state = 253, .external_lex_state = 37}, - [2307] = {.lex_state = 253, .external_lex_state = 37}, - [2308] = {.lex_state = 289, .external_lex_state = 17}, - [2309] = {.lex_state = 253, .external_lex_state = 37}, - [2310] = {.lex_state = 253, .external_lex_state = 37}, - [2311] = {.lex_state = 253, .external_lex_state = 37}, - [2312] = {.lex_state = 286, .external_lex_state = 18}, - [2313] = {.lex_state = 286, .external_lex_state = 18}, - [2314] = {.lex_state = 253, .external_lex_state = 37}, - [2315] = {.lex_state = 253, .external_lex_state = 37}, - [2316] = {.lex_state = 255, .external_lex_state = 38}, - [2317] = {.lex_state = 253, .external_lex_state = 37}, - [2318] = {.lex_state = 253, .external_lex_state = 37}, - [2319] = {.lex_state = 64, .external_lex_state = 40}, - [2320] = {.lex_state = 253, .external_lex_state = 37}, - [2321] = {.lex_state = 279, .external_lex_state = 14}, - [2322] = {.lex_state = 279, .external_lex_state = 14}, - [2323] = {.lex_state = 255, .external_lex_state = 20}, - [2324] = {.lex_state = 255, .external_lex_state = 20}, - [2325] = {.lex_state = 253, .external_lex_state = 37}, - [2326] = {.lex_state = 255, .external_lex_state = 20}, - [2327] = {.lex_state = 255, .external_lex_state = 20}, - [2328] = {.lex_state = 253, .external_lex_state = 37}, - [2329] = {.lex_state = 253, .external_lex_state = 37}, - [2330] = {.lex_state = 255, .external_lex_state = 20}, - [2331] = {.lex_state = 253, .external_lex_state = 37}, - [2332] = {.lex_state = 255, .external_lex_state = 20}, - [2333] = {.lex_state = 253, .external_lex_state = 37}, - [2334] = {.lex_state = 255, .external_lex_state = 20}, - [2335] = {.lex_state = 253, .external_lex_state = 37}, - [2336] = {.lex_state = 253, .external_lex_state = 37}, - [2337] = {.lex_state = 253, .external_lex_state = 37}, - [2338] = {.lex_state = 253, .external_lex_state = 37}, - [2339] = {.lex_state = 253, .external_lex_state = 37}, - [2340] = {.lex_state = 253, .external_lex_state = 37}, - [2341] = {.lex_state = 253, .external_lex_state = 37}, - [2342] = {.lex_state = 255, .external_lex_state = 23}, - [2343] = {.lex_state = 255, .external_lex_state = 20}, - [2344] = {.lex_state = 288, .external_lex_state = 34}, - [2345] = {.lex_state = 279, .external_lex_state = 14}, - [2346] = {.lex_state = 255, .external_lex_state = 32}, - [2347] = {.lex_state = 253, .external_lex_state = 37}, - [2348] = {.lex_state = 253, .external_lex_state = 37}, - [2349] = {.lex_state = 288, .external_lex_state = 34}, - [2350] = {.lex_state = 253, .external_lex_state = 37}, - [2351] = {.lex_state = 253, .external_lex_state = 37}, - [2352] = {.lex_state = 279, .external_lex_state = 14}, - [2353] = {.lex_state = 253, .external_lex_state = 37}, - [2354] = {.lex_state = 253, .external_lex_state = 37}, - [2355] = {.lex_state = 255, .external_lex_state = 20}, - [2356] = {.lex_state = 255, .external_lex_state = 20}, - [2357] = {.lex_state = 253, .external_lex_state = 37}, - [2358] = {.lex_state = 255, .external_lex_state = 20}, - [2359] = {.lex_state = 253, .external_lex_state = 37}, - [2360] = {.lex_state = 253, .external_lex_state = 37}, - [2361] = {.lex_state = 253, .external_lex_state = 37}, - [2362] = {.lex_state = 253, .external_lex_state = 37}, - [2363] = {.lex_state = 253, .external_lex_state = 37}, - [2364] = {.lex_state = 253, .external_lex_state = 37}, - [2365] = {.lex_state = 288, .external_lex_state = 34}, - [2366] = {.lex_state = 253, .external_lex_state = 37}, - [2367] = {.lex_state = 288, .external_lex_state = 34}, - [2368] = {.lex_state = 255, .external_lex_state = 32}, - [2369] = {.lex_state = 279, .external_lex_state = 14}, - [2370] = {.lex_state = 255, .external_lex_state = 20}, - [2371] = {.lex_state = 253, .external_lex_state = 37}, - [2372] = {.lex_state = 255, .external_lex_state = 20}, - [2373] = {.lex_state = 279, .external_lex_state = 14}, - [2374] = {.lex_state = 288, .external_lex_state = 34}, - [2375] = {.lex_state = 255, .external_lex_state = 38}, - [2376] = {.lex_state = 255, .external_lex_state = 20}, - [2377] = {.lex_state = 288, .external_lex_state = 34}, - [2378] = {.lex_state = 288, .external_lex_state = 34}, - [2379] = {.lex_state = 253, .external_lex_state = 37}, - [2380] = {.lex_state = 253, .external_lex_state = 37}, - [2381] = {.lex_state = 255, .external_lex_state = 20}, - [2382] = {.lex_state = 255, .external_lex_state = 20}, - [2383] = {.lex_state = 255, .external_lex_state = 20}, - [2384] = {.lex_state = 255, .external_lex_state = 20}, - [2385] = {.lex_state = 253, .external_lex_state = 37}, - [2386] = {.lex_state = 253, .external_lex_state = 37}, - [2387] = {.lex_state = 255, .external_lex_state = 20}, - [2388] = {.lex_state = 253, .external_lex_state = 37}, - [2389] = {.lex_state = 255, .external_lex_state = 20}, - [2390] = {.lex_state = 255, .external_lex_state = 20}, - [2391] = {.lex_state = 255, .external_lex_state = 20}, - [2392] = {.lex_state = 255, .external_lex_state = 20}, - [2393] = {.lex_state = 255, .external_lex_state = 20}, - [2394] = {.lex_state = 255, .external_lex_state = 20}, - [2395] = {.lex_state = 255, .external_lex_state = 32}, - [2396] = {.lex_state = 255, .external_lex_state = 20}, - [2397] = {.lex_state = 255, .external_lex_state = 20}, - [2398] = {.lex_state = 288, .external_lex_state = 34}, - [2399] = {.lex_state = 288, .external_lex_state = 34}, - [2400] = {.lex_state = 288, .external_lex_state = 34}, - [2401] = {.lex_state = 288, .external_lex_state = 34}, - [2402] = {.lex_state = 255, .external_lex_state = 32}, - [2403] = {.lex_state = 255, .external_lex_state = 32}, - [2404] = {.lex_state = 255, .external_lex_state = 32}, - [2405] = {.lex_state = 288, .external_lex_state = 34}, - [2406] = {.lex_state = 288, .external_lex_state = 34}, - [2407] = {.lex_state = 255, .external_lex_state = 20}, - [2408] = {.lex_state = 253, .external_lex_state = 37}, - [2409] = {.lex_state = 289, .external_lex_state = 14}, - [2410] = {.lex_state = 253, .external_lex_state = 37}, - [2411] = {.lex_state = 288, .external_lex_state = 34}, - [2412] = {.lex_state = 288, .external_lex_state = 34}, - [2413] = {.lex_state = 253, .external_lex_state = 37}, - [2414] = {.lex_state = 253, .external_lex_state = 37}, - [2415] = {.lex_state = 253, .external_lex_state = 37}, - [2416] = {.lex_state = 289, .external_lex_state = 14}, - [2417] = {.lex_state = 253, .external_lex_state = 37}, - [2418] = {.lex_state = 253, .external_lex_state = 37}, - [2419] = {.lex_state = 253, .external_lex_state = 37}, - [2420] = {.lex_state = 253, .external_lex_state = 37}, - [2421] = {.lex_state = 253, .external_lex_state = 37}, - [2422] = {.lex_state = 253, .external_lex_state = 37}, - [2423] = {.lex_state = 253, .external_lex_state = 37}, - [2424] = {.lex_state = 253, .external_lex_state = 37}, - [2425] = {.lex_state = 255, .external_lex_state = 20}, - [2426] = {.lex_state = 255, .external_lex_state = 32}, - [2427] = {.lex_state = 255, .external_lex_state = 32}, - [2428] = {.lex_state = 279, .external_lex_state = 14}, - [2429] = {.lex_state = 253, .external_lex_state = 37}, - [2430] = {.lex_state = 289, .external_lex_state = 17}, - [2431] = {.lex_state = 253, .external_lex_state = 37}, - [2432] = {.lex_state = 253, .external_lex_state = 37}, - [2433] = {.lex_state = 253, .external_lex_state = 37}, - [2434] = {.lex_state = 253, .external_lex_state = 37}, - [2435] = {.lex_state = 253, .external_lex_state = 37}, - [2436] = {.lex_state = 253, .external_lex_state = 37}, - [2437] = {.lex_state = 64, .external_lex_state = 40}, - [2438] = {.lex_state = 64, .external_lex_state = 40}, - [2439] = {.lex_state = 253, .external_lex_state = 22}, - [2440] = {.lex_state = 253, .external_lex_state = 22}, - [2441] = {.lex_state = 255, .external_lex_state = 22}, - [2442] = {.lex_state = 255, .external_lex_state = 22}, - [2443] = {.lex_state = 64, .external_lex_state = 40}, - [2444] = {.lex_state = 253, .external_lex_state = 22}, - [2445] = {.lex_state = 253, .external_lex_state = 22}, - [2446] = {.lex_state = 64, .external_lex_state = 40}, - [2447] = {.lex_state = 64, .external_lex_state = 40}, - [2448] = {.lex_state = 261, .external_lex_state = 41}, - [2449] = {.lex_state = 255, .external_lex_state = 23}, - [2450] = {.lex_state = 253, .external_lex_state = 22}, - [2451] = {.lex_state = 253, .external_lex_state = 22}, - [2452] = {.lex_state = 253, .external_lex_state = 22}, - [2453] = {.lex_state = 253, .external_lex_state = 22}, - [2454] = {.lex_state = 253, .external_lex_state = 22}, - [2455] = {.lex_state = 253, .external_lex_state = 22}, - [2456] = {.lex_state = 253, .external_lex_state = 22}, - [2457] = {.lex_state = 289, .external_lex_state = 17}, - [2458] = {.lex_state = 255, .external_lex_state = 22}, - [2459] = {.lex_state = 253, .external_lex_state = 22}, - [2460] = {.lex_state = 255, .external_lex_state = 22}, - [2461] = {.lex_state = 255, .external_lex_state = 23}, - [2462] = {.lex_state = 255, .external_lex_state = 22}, - [2463] = {.lex_state = 64, .external_lex_state = 40}, - [2464] = {.lex_state = 64, .external_lex_state = 40}, - [2465] = {.lex_state = 64, .external_lex_state = 40}, - [2466] = {.lex_state = 253, .external_lex_state = 22}, - [2467] = {.lex_state = 255, .external_lex_state = 22}, - [2468] = {.lex_state = 64, .external_lex_state = 40}, - [2469] = {.lex_state = 64, .external_lex_state = 40}, - [2470] = {.lex_state = 64, .external_lex_state = 40}, - [2471] = {.lex_state = 253, .external_lex_state = 22}, - [2472] = {.lex_state = 255, .external_lex_state = 22}, - [2473] = {.lex_state = 253, .external_lex_state = 22}, - [2474] = {.lex_state = 253, .external_lex_state = 22}, - [2475] = {.lex_state = 255, .external_lex_state = 23}, - [2476] = {.lex_state = 253, .external_lex_state = 22}, - [2477] = {.lex_state = 253, .external_lex_state = 22}, - [2478] = {.lex_state = 253, .external_lex_state = 22}, - [2479] = {.lex_state = 255, .external_lex_state = 23}, - [2480] = {.lex_state = 253, .external_lex_state = 22}, - [2481] = {.lex_state = 253, .external_lex_state = 22}, - [2482] = {.lex_state = 253, .external_lex_state = 22}, - [2483] = {.lex_state = 253, .external_lex_state = 22}, - [2484] = {.lex_state = 255, .external_lex_state = 22}, - [2485] = {.lex_state = 292, .external_lex_state = 24}, - [2486] = {.lex_state = 292, .external_lex_state = 24}, - [2487] = {.lex_state = 292, .external_lex_state = 24}, - [2488] = {.lex_state = 292, .external_lex_state = 24}, - [2489] = {.lex_state = 255, .external_lex_state = 42}, - [2490] = {.lex_state = 255, .external_lex_state = 42}, - [2491] = {.lex_state = 253, .external_lex_state = 22}, - [2492] = {.lex_state = 255, .external_lex_state = 22}, - [2493] = {.lex_state = 253, .external_lex_state = 22}, - [2494] = {.lex_state = 64, .external_lex_state = 40}, - [2495] = {.lex_state = 253, .external_lex_state = 22}, - [2496] = {.lex_state = 253, .external_lex_state = 37}, - [2497] = {.lex_state = 253, .external_lex_state = 22}, - [2498] = {.lex_state = 253, .external_lex_state = 22}, - [2499] = {.lex_state = 253, .external_lex_state = 22}, - [2500] = {.lex_state = 255, .external_lex_state = 35}, - [2501] = {.lex_state = 253, .external_lex_state = 22}, - [2502] = {.lex_state = 253, .external_lex_state = 22}, - [2503] = {.lex_state = 253, .external_lex_state = 22}, - [2504] = {.lex_state = 253, .external_lex_state = 22}, - [2505] = {.lex_state = 253, .external_lex_state = 22}, - [2506] = {.lex_state = 253, .external_lex_state = 22}, - [2507] = {.lex_state = 253, .external_lex_state = 22}, - [2508] = {.lex_state = 253, .external_lex_state = 22}, - [2509] = {.lex_state = 253, .external_lex_state = 22}, - [2510] = {.lex_state = 163, .external_lex_state = 39}, - [2511] = {.lex_state = 253, .external_lex_state = 22}, - [2512] = {.lex_state = 64, .external_lex_state = 40}, - [2513] = {.lex_state = 253, .external_lex_state = 22}, - [2514] = {.lex_state = 253, .external_lex_state = 22}, - [2515] = {.lex_state = 253, .external_lex_state = 22}, - [2516] = {.lex_state = 292, .external_lex_state = 24}, - [2517] = {.lex_state = 292, .external_lex_state = 24}, - [2518] = {.lex_state = 64, .external_lex_state = 40}, - [2519] = {.lex_state = 64, .external_lex_state = 40}, - [2520] = {.lex_state = 253, .external_lex_state = 22}, - [2521] = {.lex_state = 253, .external_lex_state = 22}, - [2522] = {.lex_state = 255, .external_lex_state = 42}, - [2523] = {.lex_state = 292, .external_lex_state = 24}, - [2524] = {.lex_state = 255, .external_lex_state = 42}, - [2525] = {.lex_state = 64, .external_lex_state = 40}, - [2526] = {.lex_state = 253, .external_lex_state = 22}, - [2527] = {.lex_state = 292, .external_lex_state = 24}, - [2528] = {.lex_state = 64, .external_lex_state = 40}, - [2529] = {.lex_state = 255, .external_lex_state = 22}, - [2530] = {.lex_state = 253, .external_lex_state = 22}, - [2531] = {.lex_state = 256, .external_lex_state = 37}, - [2532] = {.lex_state = 253, .external_lex_state = 22}, - [2533] = {.lex_state = 287, .external_lex_state = 17}, - [2534] = {.lex_state = 255, .external_lex_state = 23}, - [2535] = {.lex_state = 255, .external_lex_state = 23}, - [2536] = {.lex_state = 255, .external_lex_state = 23}, - [2537] = {.lex_state = 255, .external_lex_state = 23}, - [2538] = {.lex_state = 64, .external_lex_state = 40}, - [2539] = {.lex_state = 253, .external_lex_state = 22}, - [2540] = {.lex_state = 64, .external_lex_state = 40}, - [2541] = {.lex_state = 64, .external_lex_state = 40}, - [2542] = {.lex_state = 64, .external_lex_state = 40}, - [2543] = {.lex_state = 64, .external_lex_state = 40}, - [2544] = {.lex_state = 64, .external_lex_state = 40}, - [2545] = {.lex_state = 253, .external_lex_state = 22}, - [2546] = {.lex_state = 253, .external_lex_state = 22}, - [2547] = {.lex_state = 253, .external_lex_state = 22}, - [2548] = {.lex_state = 255, .external_lex_state = 23}, - [2549] = {.lex_state = 253, .external_lex_state = 22}, - [2550] = {.lex_state = 255, .external_lex_state = 23}, - [2551] = {.lex_state = 253, .external_lex_state = 22}, - [2552] = {.lex_state = 255, .external_lex_state = 22}, - [2553] = {.lex_state = 64, .external_lex_state = 40}, - [2554] = {.lex_state = 64, .external_lex_state = 40}, - [2555] = {.lex_state = 64, .external_lex_state = 40}, - [2556] = {.lex_state = 292, .external_lex_state = 24}, - [2557] = {.lex_state = 64, .external_lex_state = 40}, - [2558] = {.lex_state = 263, .external_lex_state = 37}, - [2559] = {.lex_state = 253, .external_lex_state = 22}, - [2560] = {.lex_state = 292, .external_lex_state = 24}, - [2561] = {.lex_state = 287, .external_lex_state = 17}, - [2562] = {.lex_state = 253, .external_lex_state = 22}, - [2563] = {.lex_state = 255, .external_lex_state = 22}, - [2564] = {.lex_state = 64, .external_lex_state = 40}, - [2565] = {.lex_state = 64, .external_lex_state = 40}, - [2566] = {.lex_state = 64, .external_lex_state = 40}, - [2567] = {.lex_state = 64, .external_lex_state = 40}, - [2568] = {.lex_state = 253, .external_lex_state = 22}, - [2569] = {.lex_state = 286, .external_lex_state = 18}, - [2570] = {.lex_state = 253, .external_lex_state = 22}, - [2571] = {.lex_state = 255, .external_lex_state = 23}, - [2572] = {.lex_state = 64, .external_lex_state = 40}, - [2573] = {.lex_state = 277, .external_lex_state = 2}, - [2574] = {.lex_state = 255, .external_lex_state = 23}, - [2575] = {.lex_state = 255, .external_lex_state = 23}, - [2576] = {.lex_state = 255, .external_lex_state = 23}, - [2577] = {.lex_state = 292, .external_lex_state = 24}, - [2578] = {.lex_state = 253, .external_lex_state = 22}, - [2579] = {.lex_state = 253, .external_lex_state = 22}, - [2580] = {.lex_state = 255, .external_lex_state = 23}, - [2581] = {.lex_state = 255, .external_lex_state = 23}, - [2582] = {.lex_state = 255, .external_lex_state = 22}, - [2583] = {.lex_state = 255, .external_lex_state = 23}, - [2584] = {.lex_state = 259, .external_lex_state = 37}, - [2585] = {.lex_state = 255, .external_lex_state = 23}, - [2586] = {.lex_state = 255, .external_lex_state = 23}, - [2587] = {.lex_state = 255, .external_lex_state = 23}, - [2588] = {.lex_state = 255, .external_lex_state = 23}, - [2589] = {.lex_state = 255, .external_lex_state = 23}, - [2590] = {.lex_state = 253, .external_lex_state = 22}, - [2591] = {.lex_state = 255, .external_lex_state = 35}, - [2592] = {.lex_state = 141, .external_lex_state = 43}, - [2593] = {.lex_state = 141, .external_lex_state = 43}, - [2594] = {.lex_state = 255, .external_lex_state = 23}, - [2595] = {.lex_state = 255, .external_lex_state = 23}, - [2596] = {.lex_state = 255, .external_lex_state = 23}, - [2597] = {.lex_state = 255, .external_lex_state = 22}, - [2598] = {.lex_state = 253, .external_lex_state = 22}, - [2599] = {.lex_state = 255, .external_lex_state = 35}, - [2600] = {.lex_state = 255, .external_lex_state = 22}, - [2601] = {.lex_state = 255, .external_lex_state = 23}, - [2602] = {.lex_state = 255, .external_lex_state = 23}, - [2603] = {.lex_state = 253, .external_lex_state = 22}, - [2604] = {.lex_state = 255, .external_lex_state = 22}, - [2605] = {.lex_state = 255, .external_lex_state = 22}, - [2606] = {.lex_state = 255, .external_lex_state = 22}, - [2607] = {.lex_state = 255, .external_lex_state = 22}, - [2608] = {.lex_state = 253, .external_lex_state = 22}, - [2609] = {.lex_state = 255, .external_lex_state = 22}, - [2610] = {.lex_state = 253, .external_lex_state = 22}, - [2611] = {.lex_state = 253, .external_lex_state = 22}, - [2612] = {.lex_state = 163, .external_lex_state = 39}, - [2613] = {.lex_state = 255, .external_lex_state = 23}, - [2614] = {.lex_state = 253, .external_lex_state = 22}, - [2615] = {.lex_state = 292, .external_lex_state = 24}, - [2616] = {.lex_state = 255, .external_lex_state = 22}, - [2617] = {.lex_state = 255, .external_lex_state = 22}, - [2618] = {.lex_state = 255, .external_lex_state = 22}, - [2619] = {.lex_state = 255, .external_lex_state = 22}, - [2620] = {.lex_state = 255, .external_lex_state = 22}, - [2621] = {.lex_state = 255, .external_lex_state = 22}, - [2622] = {.lex_state = 255, .external_lex_state = 22}, - [2623] = {.lex_state = 255, .external_lex_state = 22}, - [2624] = {.lex_state = 255, .external_lex_state = 22}, - [2625] = {.lex_state = 255, .external_lex_state = 22}, - [2626] = {.lex_state = 255, .external_lex_state = 35}, - [2627] = {.lex_state = 253, .external_lex_state = 22}, - [2628] = {.lex_state = 255, .external_lex_state = 41}, - [2629] = {.lex_state = 253, .external_lex_state = 22}, - [2630] = {.lex_state = 255, .external_lex_state = 37}, - [2631] = {.lex_state = 255, .external_lex_state = 37}, - [2632] = {.lex_state = 255, .external_lex_state = 37}, - [2633] = {.lex_state = 253, .external_lex_state = 37}, - [2634] = {.lex_state = 255, .external_lex_state = 41}, - [2635] = {.lex_state = 255, .external_lex_state = 41}, - [2636] = {.lex_state = 263, .external_lex_state = 37}, - [2637] = {.lex_state = 263, .external_lex_state = 37}, - [2638] = {.lex_state = 263, .external_lex_state = 37}, - [2639] = {.lex_state = 253, .external_lex_state = 37}, - [2640] = {.lex_state = 255, .external_lex_state = 37}, - [2641] = {.lex_state = 263, .external_lex_state = 37}, - [2642] = {.lex_state = 263, .external_lex_state = 37}, - [2643] = {.lex_state = 263, .external_lex_state = 37}, - [2644] = {.lex_state = 263, .external_lex_state = 37}, - [2645] = {.lex_state = 255, .external_lex_state = 37}, - [2646] = {.lex_state = 263, .external_lex_state = 37}, - [2647] = {.lex_state = 263, .external_lex_state = 37}, - [2648] = {.lex_state = 253, .external_lex_state = 22}, - [2649] = {.lex_state = 255, .external_lex_state = 37}, - [2650] = {.lex_state = 255, .external_lex_state = 37}, - [2651] = {.lex_state = 253, .external_lex_state = 22}, - [2652] = {.lex_state = 255, .external_lex_state = 37}, - [2653] = {.lex_state = 253, .external_lex_state = 22}, - [2654] = {.lex_state = 255, .external_lex_state = 37}, - [2655] = {.lex_state = 263, .external_lex_state = 37}, - [2656] = {.lex_state = 263, .external_lex_state = 37}, - [2657] = {.lex_state = 263, .external_lex_state = 37}, - [2658] = {.lex_state = 255, .external_lex_state = 37}, - [2659] = {.lex_state = 255, .external_lex_state = 37}, - [2660] = {.lex_state = 263, .external_lex_state = 37}, - [2661] = {.lex_state = 263, .external_lex_state = 37}, - [2662] = {.lex_state = 255, .external_lex_state = 37}, - [2663] = {.lex_state = 255, .external_lex_state = 41}, - [2664] = {.lex_state = 255, .external_lex_state = 41}, - [2665] = {.lex_state = 255, .external_lex_state = 37}, - [2666] = {.lex_state = 255, .external_lex_state = 37}, - [2667] = {.lex_state = 263, .external_lex_state = 37}, - [2668] = {.lex_state = 263, .external_lex_state = 37}, - [2669] = {.lex_state = 255, .external_lex_state = 41}, - [2670] = {.lex_state = 263, .external_lex_state = 37}, - [2671] = {.lex_state = 255, .external_lex_state = 41}, - [2672] = {.lex_state = 255, .external_lex_state = 41}, - [2673] = {.lex_state = 255, .external_lex_state = 41}, - [2674] = {.lex_state = 263, .external_lex_state = 37}, - [2675] = {.lex_state = 255, .external_lex_state = 37}, - [2676] = {.lex_state = 279, .external_lex_state = 24}, - [2677] = {.lex_state = 255, .external_lex_state = 41}, - [2678] = {.lex_state = 253, .external_lex_state = 22}, - [2679] = {.lex_state = 279, .external_lex_state = 24}, - [2680] = {.lex_state = 255, .external_lex_state = 41}, - [2681] = {.lex_state = 263, .external_lex_state = 37}, - [2682] = {.lex_state = 263, .external_lex_state = 37}, - [2683] = {.lex_state = 255, .external_lex_state = 37}, - [2684] = {.lex_state = 255, .external_lex_state = 41}, - [2685] = {.lex_state = 255, .external_lex_state = 41}, - [2686] = {.lex_state = 255, .external_lex_state = 41}, - [2687] = {.lex_state = 255, .external_lex_state = 41}, - [2688] = {.lex_state = 163, .external_lex_state = 43}, - [2689] = {.lex_state = 163, .external_lex_state = 43}, - [2690] = {.lex_state = 255, .external_lex_state = 41}, - [2691] = {.lex_state = 255, .external_lex_state = 41}, - [2692] = {.lex_state = 255, .external_lex_state = 41}, - [2693] = {.lex_state = 279, .external_lex_state = 24}, - [2694] = {.lex_state = 287, .external_lex_state = 17}, - [2695] = {.lex_state = 279, .external_lex_state = 24}, - [2696] = {.lex_state = 279, .external_lex_state = 24}, - [2697] = {.lex_state = 255, .external_lex_state = 41}, - [2698] = {.lex_state = 263, .external_lex_state = 37}, - [2699] = {.lex_state = 255, .external_lex_state = 41}, - [2700] = {.lex_state = 255, .external_lex_state = 37}, - [2701] = {.lex_state = 255, .external_lex_state = 41}, - [2702] = {.lex_state = 255, .external_lex_state = 41}, - [2703] = {.lex_state = 218, .external_lex_state = 44}, - [2704] = {.lex_state = 263, .external_lex_state = 37}, - [2705] = {.lex_state = 255, .external_lex_state = 37}, - [2706] = {.lex_state = 253, .external_lex_state = 37}, - [2707] = {.lex_state = 253, .external_lex_state = 22}, - [2708] = {.lex_state = 279, .external_lex_state = 24}, - [2709] = {.lex_state = 255, .external_lex_state = 37}, - [2710] = {.lex_state = 253, .external_lex_state = 22}, - [2711] = {.lex_state = 255, .external_lex_state = 37}, - [2712] = {.lex_state = 253, .external_lex_state = 22}, - [2713] = {.lex_state = 253, .external_lex_state = 22}, - [2714] = {.lex_state = 255, .external_lex_state = 37}, - [2715] = {.lex_state = 263, .external_lex_state = 37}, - [2716] = {.lex_state = 253, .external_lex_state = 22}, - [2717] = {.lex_state = 263, .external_lex_state = 37}, - [2718] = {.lex_state = 255, .external_lex_state = 41}, - [2719] = {.lex_state = 279, .external_lex_state = 24}, - [2720] = {.lex_state = 263, .external_lex_state = 37}, - [2721] = {.lex_state = 253, .external_lex_state = 22}, - [2722] = {.lex_state = 263, .external_lex_state = 37}, - [2723] = {.lex_state = 253, .external_lex_state = 22}, - [2724] = {.lex_state = 253, .external_lex_state = 22}, - [2725] = {.lex_state = 279, .external_lex_state = 24}, - [2726] = {.lex_state = 253, .external_lex_state = 22}, - [2727] = {.lex_state = 253, .external_lex_state = 22}, - [2728] = {.lex_state = 255, .external_lex_state = 41}, - [2729] = {.lex_state = 218, .external_lex_state = 44}, - [2730] = {.lex_state = 218, .external_lex_state = 44}, - [2731] = {.lex_state = 263, .external_lex_state = 37}, - [2732] = {.lex_state = 253, .external_lex_state = 22}, - [2733] = {.lex_state = 255, .external_lex_state = 41}, - [2734] = {.lex_state = 263, .external_lex_state = 37}, - [2735] = {.lex_state = 255, .external_lex_state = 41}, - [2736] = {.lex_state = 253, .external_lex_state = 22}, - [2737] = {.lex_state = 255, .external_lex_state = 37}, - [2738] = {.lex_state = 253, .external_lex_state = 22}, - [2739] = {.lex_state = 255, .external_lex_state = 41}, - [2740] = {.lex_state = 255, .external_lex_state = 41}, - [2741] = {.lex_state = 255, .external_lex_state = 41}, - [2742] = {.lex_state = 255, .external_lex_state = 37}, - [2743] = {.lex_state = 263, .external_lex_state = 37}, - [2744] = {.lex_state = 255, .external_lex_state = 37}, - [2745] = {.lex_state = 255, .external_lex_state = 41}, - [2746] = {.lex_state = 255, .external_lex_state = 41}, - [2747] = {.lex_state = 253, .external_lex_state = 22}, - [2748] = {.lex_state = 255, .external_lex_state = 41}, - [2749] = {.lex_state = 255, .external_lex_state = 41}, - [2750] = {.lex_state = 255, .external_lex_state = 41}, - [2751] = {.lex_state = 255, .external_lex_state = 41}, - [2752] = {.lex_state = 255, .external_lex_state = 37}, - [2753] = {.lex_state = 255, .external_lex_state = 37}, - [2754] = {.lex_state = 279, .external_lex_state = 24}, - [2755] = {.lex_state = 255, .external_lex_state = 41}, - [2756] = {.lex_state = 255, .external_lex_state = 41}, - [2757] = {.lex_state = 279, .external_lex_state = 24}, - [2758] = {.lex_state = 255, .external_lex_state = 41}, - [2759] = {.lex_state = 263, .external_lex_state = 37}, - [2760] = {.lex_state = 255, .external_lex_state = 41}, - [2761] = {.lex_state = 263, .external_lex_state = 37}, - [2762] = {.lex_state = 255, .external_lex_state = 37}, - [2763] = {.lex_state = 255, .external_lex_state = 41}, - [2764] = {.lex_state = 218, .external_lex_state = 44}, - [2765] = {.lex_state = 263, .external_lex_state = 37}, - [2766] = {.lex_state = 255, .external_lex_state = 41}, - [2767] = {.lex_state = 255, .external_lex_state = 41}, - [2768] = {.lex_state = 255, .external_lex_state = 37}, - [2769] = {.lex_state = 255, .external_lex_state = 37}, - [2770] = {.lex_state = 255, .external_lex_state = 41}, - [2771] = {.lex_state = 218, .external_lex_state = 44}, - [2772] = {.lex_state = 255, .external_lex_state = 41}, - [2773] = {.lex_state = 218, .external_lex_state = 44}, - [2774] = {.lex_state = 255, .external_lex_state = 37}, - [2775] = {.lex_state = 255, .external_lex_state = 41}, - [2776] = {.lex_state = 255, .external_lex_state = 41}, - [2777] = {.lex_state = 255, .external_lex_state = 41}, - [2778] = {.lex_state = 255, .external_lex_state = 37}, - [2779] = {.lex_state = 279, .external_lex_state = 24}, - [2780] = {.lex_state = 279, .external_lex_state = 24}, - [2781] = {.lex_state = 255, .external_lex_state = 37}, - [2782] = {.lex_state = 255, .external_lex_state = 41}, - [2783] = {.lex_state = 255, .external_lex_state = 37}, - [2784] = {.lex_state = 255, .external_lex_state = 37}, - [2785] = {.lex_state = 255, .external_lex_state = 37}, - [2786] = {.lex_state = 255, .external_lex_state = 41}, - [2787] = {.lex_state = 166, .external_lex_state = 39}, - [2788] = {.lex_state = 255, .external_lex_state = 41}, - [2789] = {.lex_state = 166, .external_lex_state = 39}, - [2790] = {.lex_state = 255, .external_lex_state = 41}, - [2791] = {.lex_state = 256, .external_lex_state = 37}, - [2792] = {.lex_state = 255, .external_lex_state = 41}, - [2793] = {.lex_state = 256, .external_lex_state = 37}, - [2794] = {.lex_state = 256, .external_lex_state = 37}, - [2795] = {.lex_state = 255, .external_lex_state = 41}, - [2796] = {.lex_state = 256, .external_lex_state = 37}, - [2797] = {.lex_state = 255, .external_lex_state = 41}, - [2798] = {.lex_state = 256, .external_lex_state = 37}, - [2799] = {.lex_state = 256, .external_lex_state = 37}, - [2800] = {.lex_state = 256, .external_lex_state = 37}, - [2801] = {.lex_state = 256, .external_lex_state = 37}, - [2802] = {.lex_state = 256, .external_lex_state = 37}, - [2803] = {.lex_state = 256, .external_lex_state = 37}, - [2804] = {.lex_state = 256, .external_lex_state = 37}, - [2805] = {.lex_state = 256, .external_lex_state = 37}, - [2806] = {.lex_state = 256, .external_lex_state = 37}, - [2807] = {.lex_state = 255, .external_lex_state = 41}, - [2808] = {.lex_state = 256, .external_lex_state = 37}, - [2809] = {.lex_state = 255, .external_lex_state = 41}, - [2810] = {.lex_state = 256, .external_lex_state = 37}, - [2811] = {.lex_state = 255, .external_lex_state = 41}, - [2812] = {.lex_state = 255, .external_lex_state = 41}, - [2813] = {.lex_state = 256, .external_lex_state = 37}, - [2814] = {.lex_state = 255, .external_lex_state = 37}, - [2815] = {.lex_state = 255, .external_lex_state = 37}, - [2816] = {.lex_state = 255, .external_lex_state = 37}, - [2817] = {.lex_state = 255, .external_lex_state = 41}, - [2818] = {.lex_state = 255, .external_lex_state = 41}, - [2819] = {.lex_state = 256, .external_lex_state = 37}, - [2820] = {.lex_state = 255, .external_lex_state = 41}, - [2821] = {.lex_state = 255, .external_lex_state = 41}, - [2822] = {.lex_state = 255, .external_lex_state = 41}, - [2823] = {.lex_state = 255, .external_lex_state = 41}, - [2824] = {.lex_state = 255, .external_lex_state = 41}, - [2825] = {.lex_state = 255, .external_lex_state = 41}, - [2826] = {.lex_state = 256, .external_lex_state = 37}, - [2827] = {.lex_state = 256, .external_lex_state = 37}, - [2828] = {.lex_state = 256, .external_lex_state = 37}, - [2829] = {.lex_state = 256, .external_lex_state = 37}, - [2830] = {.lex_state = 255, .external_lex_state = 41}, - [2831] = {.lex_state = 255, .external_lex_state = 41}, - [2832] = {.lex_state = 255, .external_lex_state = 41}, - [2833] = {.lex_state = 255, .external_lex_state = 41}, - [2834] = {.lex_state = 255, .external_lex_state = 41}, - [2835] = {.lex_state = 255, .external_lex_state = 37}, - [2836] = {.lex_state = 255, .external_lex_state = 41}, - [2837] = {.lex_state = 169, .external_lex_state = 39}, - [2838] = {.lex_state = 255, .external_lex_state = 41}, - [2839] = {.lex_state = 255, .external_lex_state = 41}, - [2840] = {.lex_state = 255, .external_lex_state = 41}, - [2841] = {.lex_state = 169, .external_lex_state = 39}, - [2842] = {.lex_state = 256, .external_lex_state = 37}, - [2843] = {.lex_state = 255, .external_lex_state = 41}, - [2844] = {.lex_state = 255, .external_lex_state = 37}, - [2845] = {.lex_state = 279, .external_lex_state = 24}, - [2846] = {.lex_state = 255, .external_lex_state = 41}, - [2847] = {.lex_state = 279, .external_lex_state = 24}, - [2848] = {.lex_state = 255, .external_lex_state = 41}, - [2849] = {.lex_state = 279, .external_lex_state = 24}, - [2850] = {.lex_state = 255, .external_lex_state = 41}, - [2851] = {.lex_state = 279, .external_lex_state = 24}, - [2852] = {.lex_state = 494, .external_lex_state = 39}, - [2853] = {.lex_state = 256, .external_lex_state = 37}, - [2854] = {.lex_state = 255, .external_lex_state = 37}, - [2855] = {.lex_state = 255, .external_lex_state = 41}, - [2856] = {.lex_state = 255, .external_lex_state = 37}, - [2857] = {.lex_state = 256, .external_lex_state = 37}, - [2858] = {.lex_state = 256, .external_lex_state = 37}, - [2859] = {.lex_state = 255, .external_lex_state = 41}, - [2860] = {.lex_state = 256, .external_lex_state = 37}, - [2861] = {.lex_state = 256, .external_lex_state = 37}, - [2862] = {.lex_state = 256, .external_lex_state = 37}, - [2863] = {.lex_state = 256, .external_lex_state = 37}, - [2864] = {.lex_state = 255, .external_lex_state = 41}, - [2865] = {.lex_state = 494, .external_lex_state = 39}, - [2866] = {.lex_state = 256, .external_lex_state = 37}, - [2867] = {.lex_state = 279, .external_lex_state = 24}, - [2868] = {.lex_state = 255, .external_lex_state = 41}, - [2869] = {.lex_state = 256, .external_lex_state = 37}, - [2870] = {.lex_state = 256, .external_lex_state = 37}, - [2871] = {.lex_state = 279, .external_lex_state = 24}, - [2872] = {.lex_state = 255, .external_lex_state = 41}, - [2873] = {.lex_state = 255, .external_lex_state = 41}, - [2874] = {.lex_state = 255, .external_lex_state = 41}, - [2875] = {.lex_state = 255, .external_lex_state = 41}, - [2876] = {.lex_state = 278, .external_lex_state = 45}, - [2877] = {.lex_state = 278, .external_lex_state = 45}, - [2878] = {.lex_state = 169, .external_lex_state = 43}, - [2879] = {.lex_state = 169, .external_lex_state = 43}, - [2880] = {.lex_state = 278, .external_lex_state = 45}, - [2881] = {.lex_state = 219, .external_lex_state = 46}, - [2882] = {.lex_state = 278, .external_lex_state = 45}, - [2883] = {.lex_state = 278, .external_lex_state = 45}, - [2884] = {.lex_state = 278, .external_lex_state = 45}, - [2885] = {.lex_state = 278, .external_lex_state = 45}, - [2886] = {.lex_state = 278, .external_lex_state = 45}, - [2887] = {.lex_state = 219, .external_lex_state = 46}, - [2888] = {.lex_state = 218, .external_lex_state = 44}, - [2889] = {.lex_state = 218, .external_lex_state = 44}, - [2890] = {.lex_state = 218, .external_lex_state = 44}, - [2891] = {.lex_state = 218, .external_lex_state = 44}, - [2892] = {.lex_state = 218, .external_lex_state = 44}, - [2893] = {.lex_state = 218, .external_lex_state = 44}, - [2894] = {.lex_state = 218, .external_lex_state = 44}, - [2895] = {.lex_state = 219, .external_lex_state = 46}, - [2896] = {.lex_state = 291, .external_lex_state = 47}, - [2897] = {.lex_state = 218, .external_lex_state = 44}, - [2898] = {.lex_state = 218, .external_lex_state = 44}, - [2899] = {.lex_state = 218, .external_lex_state = 44}, - [2900] = {.lex_state = 218, .external_lex_state = 44}, - [2901] = {.lex_state = 218, .external_lex_state = 44}, - [2902] = {.lex_state = 218, .external_lex_state = 44}, - [2903] = {.lex_state = 494, .external_lex_state = 43}, - [2904] = {.lex_state = 278, .external_lex_state = 45}, - [2905] = {.lex_state = 494, .external_lex_state = 39}, - [2906] = {.lex_state = 278, .external_lex_state = 45}, - [2907] = {.lex_state = 218, .external_lex_state = 44}, - [2908] = {.lex_state = 219, .external_lex_state = 46}, - [2909] = {.lex_state = 218, .external_lex_state = 44}, - [2910] = {.lex_state = 278, .external_lex_state = 45}, - [2911] = {.lex_state = 218, .external_lex_state = 44}, - [2912] = {.lex_state = 218, .external_lex_state = 44}, - [2913] = {.lex_state = 279, .external_lex_state = 24}, - [2914] = {.lex_state = 218, .external_lex_state = 44}, - [2915] = {.lex_state = 494, .external_lex_state = 39}, - [2916] = {.lex_state = 278, .external_lex_state = 45}, - [2917] = {.lex_state = 218, .external_lex_state = 44}, - [2918] = {.lex_state = 494, .external_lex_state = 43}, - [2919] = {.lex_state = 291, .external_lex_state = 47}, - [2920] = {.lex_state = 291, .external_lex_state = 47}, - [2921] = {.lex_state = 166, .external_lex_state = 43}, - [2922] = {.lex_state = 278, .external_lex_state = 45}, - [2923] = {.lex_state = 166, .external_lex_state = 43}, - [2924] = {.lex_state = 278, .external_lex_state = 45}, - [2925] = {.lex_state = 296, .external_lex_state = 48}, - [2926] = {.lex_state = 296, .external_lex_state = 48}, - [2927] = {.lex_state = 210, .external_lex_state = 46}, - [2928] = {.lex_state = 278, .external_lex_state = 45}, - [2929] = {.lex_state = 210, .external_lex_state = 46}, - [2930] = {.lex_state = 278, .external_lex_state = 45}, - [2931] = {.lex_state = 299, .external_lex_state = 49}, - [2932] = {.lex_state = 296, .external_lex_state = 48}, - [2933] = {.lex_state = 494, .external_lex_state = 43}, - [2934] = {.lex_state = 278, .external_lex_state = 45}, - [2935] = {.lex_state = 296, .external_lex_state = 48}, - [2936] = {.lex_state = 296, .external_lex_state = 48}, - [2937] = {.lex_state = 296, .external_lex_state = 48}, - [2938] = {.lex_state = 296, .external_lex_state = 48}, - [2939] = {.lex_state = 494, .external_lex_state = 43}, - [2940] = {.lex_state = 296, .external_lex_state = 48}, - [2941] = {.lex_state = 296, .external_lex_state = 48}, - [2942] = {.lex_state = 296, .external_lex_state = 48}, - [2943] = {.lex_state = 296, .external_lex_state = 48}, - [2944] = {.lex_state = 278, .external_lex_state = 45}, - [2945] = {.lex_state = 278, .external_lex_state = 45}, - [2946] = {.lex_state = 296, .external_lex_state = 48}, - [2947] = {.lex_state = 296, .external_lex_state = 48}, - [2948] = {.lex_state = 278, .external_lex_state = 45}, - [2949] = {.lex_state = 278, .external_lex_state = 45}, - [2950] = {.lex_state = 278, .external_lex_state = 45}, - [2951] = {.lex_state = 278, .external_lex_state = 45}, - [2952] = {.lex_state = 278, .external_lex_state = 45}, - [2953] = {.lex_state = 278, .external_lex_state = 45}, - [2954] = {.lex_state = 195, .external_lex_state = 15}, - [2955] = {.lex_state = 296, .external_lex_state = 48}, - [2956] = {.lex_state = 296, .external_lex_state = 48}, - [2957] = {.lex_state = 278, .external_lex_state = 45}, - [2958] = {.lex_state = 296, .external_lex_state = 48}, - [2959] = {.lex_state = 195, .external_lex_state = 15}, - [2960] = {.lex_state = 278, .external_lex_state = 45}, - [2961] = {.lex_state = 296, .external_lex_state = 48}, - [2962] = {.lex_state = 278, .external_lex_state = 45}, - [2963] = {.lex_state = 278, .external_lex_state = 45}, - [2964] = {.lex_state = 278, .external_lex_state = 45}, - [2965] = {.lex_state = 296, .external_lex_state = 48}, - [2966] = {.lex_state = 278, .external_lex_state = 45}, - [2967] = {.lex_state = 296, .external_lex_state = 48}, - [2968] = {.lex_state = 296, .external_lex_state = 48}, - [2969] = {.lex_state = 296, .external_lex_state = 48}, - [2970] = {.lex_state = 278, .external_lex_state = 45}, - [2971] = {.lex_state = 296, .external_lex_state = 48}, - [2972] = {.lex_state = 296, .external_lex_state = 48}, - [2973] = {.lex_state = 278, .external_lex_state = 45}, - [2974] = {.lex_state = 277, .external_lex_state = 2}, - [2975] = {.lex_state = 277, .external_lex_state = 2}, - [2976] = {.lex_state = 277, .external_lex_state = 2}, - [2977] = {.lex_state = 299, .external_lex_state = 49}, - [2978] = {.lex_state = 299, .external_lex_state = 49}, - [2979] = {.lex_state = 277, .external_lex_state = 2}, - [2980] = {.lex_state = 277, .external_lex_state = 2}, - [2981] = {.lex_state = 299, .external_lex_state = 49}, - [2982] = {.lex_state = 195, .external_lex_state = 15}, - [2983] = {.lex_state = 277, .external_lex_state = 2}, - [2984] = {.lex_state = 277, .external_lex_state = 2}, - [2985] = {.lex_state = 299, .external_lex_state = 49}, - [2986] = {.lex_state = 185, .external_lex_state = 46}, - [2987] = {.lex_state = 279, .external_lex_state = 25}, - [2988] = {.lex_state = 279, .external_lex_state = 24}, - [2989] = {.lex_state = 185, .external_lex_state = 46}, - [2990] = {.lex_state = 175, .external_lex_state = 39}, - [2991] = {.lex_state = 277, .external_lex_state = 2}, - [2992] = {.lex_state = 185, .external_lex_state = 46}, - [2993] = {.lex_state = 185, .external_lex_state = 46}, - [2994] = {.lex_state = 279, .external_lex_state = 25}, - [2995] = {.lex_state = 279, .external_lex_state = 25}, - [2996] = {.lex_state = 277, .external_lex_state = 2}, - [2997] = {.lex_state = 279, .external_lex_state = 25}, - [2998] = {.lex_state = 279, .external_lex_state = 24}, - [2999] = {.lex_state = 279, .external_lex_state = 25}, - [3000] = {.lex_state = 277, .external_lex_state = 2}, - [3001] = {.lex_state = 279, .external_lex_state = 25}, - [3002] = {.lex_state = 279, .external_lex_state = 25}, - [3003] = {.lex_state = 277, .external_lex_state = 2}, - [3004] = {.lex_state = 279, .external_lex_state = 25}, - [3005] = {.lex_state = 279, .external_lex_state = 25}, - [3006] = {.lex_state = 185, .external_lex_state = 46}, - [3007] = {.lex_state = 277, .external_lex_state = 2}, - [3008] = {.lex_state = 279, .external_lex_state = 25}, - [3009] = {.lex_state = 279, .external_lex_state = 25}, - [3010] = {.lex_state = 279, .external_lex_state = 25}, - [3011] = {.lex_state = 279, .external_lex_state = 25}, - [3012] = {.lex_state = 279, .external_lex_state = 25}, - [3013] = {.lex_state = 277, .external_lex_state = 2}, - [3014] = {.lex_state = 279, .external_lex_state = 25}, - [3015] = {.lex_state = 279, .external_lex_state = 25}, - [3016] = {.lex_state = 279, .external_lex_state = 25}, - [3017] = {.lex_state = 279, .external_lex_state = 25}, - [3018] = {.lex_state = 279, .external_lex_state = 25}, - [3019] = {.lex_state = 279, .external_lex_state = 25}, - [3020] = {.lex_state = 185, .external_lex_state = 46}, - [3021] = {.lex_state = 279, .external_lex_state = 24}, - [3022] = {.lex_state = 279, .external_lex_state = 25}, - [3023] = {.lex_state = 279, .external_lex_state = 25}, - [3024] = {.lex_state = 279, .external_lex_state = 25}, - [3025] = {.lex_state = 279, .external_lex_state = 25}, - [3026] = {.lex_state = 279, .external_lex_state = 25}, - [3027] = {.lex_state = 185, .external_lex_state = 46}, - [3028] = {.lex_state = 279, .external_lex_state = 25}, - [3029] = {.lex_state = 279, .external_lex_state = 25}, - [3030] = {.lex_state = 279, .external_lex_state = 25}, - [3031] = {.lex_state = 279, .external_lex_state = 25}, - [3032] = {.lex_state = 185, .external_lex_state = 46}, - [3033] = {.lex_state = 279, .external_lex_state = 25}, - [3034] = {.lex_state = 279, .external_lex_state = 25}, - [3035] = {.lex_state = 175, .external_lex_state = 39}, - [3036] = {.lex_state = 277, .external_lex_state = 2}, - [3037] = {.lex_state = 277, .external_lex_state = 2}, - [3038] = {.lex_state = 185, .external_lex_state = 46}, - [3039] = {.lex_state = 277, .external_lex_state = 2}, - [3040] = {.lex_state = 279, .external_lex_state = 25}, - [3041] = {.lex_state = 175, .external_lex_state = 43}, - [3042] = {.lex_state = 279, .external_lex_state = 25}, - [3043] = {.lex_state = 279, .external_lex_state = 25}, - [3044] = {.lex_state = 279, .external_lex_state = 25}, - [3045] = {.lex_state = 297, .external_lex_state = 50}, - [3046] = {.lex_state = 297, .external_lex_state = 50}, - [3047] = {.lex_state = 299, .external_lex_state = 51}, - [3048] = {.lex_state = 279, .external_lex_state = 25}, - [3049] = {.lex_state = 279, .external_lex_state = 25}, - [3050] = {.lex_state = 236, .external_lex_state = 25}, - [3051] = {.lex_state = 279, .external_lex_state = 25}, - [3052] = {.lex_state = 279, .external_lex_state = 25}, - [3053] = {.lex_state = 175, .external_lex_state = 43}, - [3054] = {.lex_state = 236, .external_lex_state = 25}, - [3055] = {.lex_state = 279, .external_lex_state = 25}, - [3056] = {.lex_state = 279, .external_lex_state = 25}, - [3057] = {.lex_state = 279, .external_lex_state = 25}, - [3058] = {.lex_state = 279, .external_lex_state = 25}, - [3059] = {.lex_state = 279, .external_lex_state = 25}, - [3060] = {.lex_state = 279, .external_lex_state = 25}, - [3061] = {.lex_state = 279, .external_lex_state = 25}, - [3062] = {.lex_state = 279, .external_lex_state = 25}, - [3063] = {.lex_state = 279, .external_lex_state = 25}, - [3064] = {.lex_state = 279, .external_lex_state = 25}, - [3065] = {.lex_state = 297, .external_lex_state = 50}, - [3066] = {.lex_state = 212, .external_lex_state = 46}, - [3067] = {.lex_state = 279, .external_lex_state = 52}, - [3068] = {.lex_state = 279, .external_lex_state = 25}, - [3069] = {.lex_state = 297, .external_lex_state = 50}, - [3070] = {.lex_state = 279, .external_lex_state = 25}, - [3071] = {.lex_state = 279, .external_lex_state = 52}, - [3072] = {.lex_state = 212, .external_lex_state = 46}, - [3073] = {.lex_state = 279, .external_lex_state = 52}, - [3074] = {.lex_state = 279, .external_lex_state = 25}, - [3075] = {.lex_state = 279, .external_lex_state = 25}, - [3076] = {.lex_state = 297, .external_lex_state = 50}, - [3077] = {.lex_state = 279, .external_lex_state = 52}, - [3078] = {.lex_state = 297, .external_lex_state = 50}, - [3079] = {.lex_state = 279, .external_lex_state = 25}, - [3080] = {.lex_state = 279, .external_lex_state = 25}, - [3081] = {.lex_state = 279, .external_lex_state = 25}, - [3082] = {.lex_state = 279, .external_lex_state = 25}, - [3083] = {.lex_state = 279, .external_lex_state = 25}, - [3084] = {.lex_state = 279, .external_lex_state = 25}, - [3085] = {.lex_state = 279, .external_lex_state = 25}, - [3086] = {.lex_state = 279, .external_lex_state = 25}, - [3087] = {.lex_state = 279, .external_lex_state = 25}, - [3088] = {.lex_state = 265, .external_lex_state = 53}, - [3089] = {.lex_state = 279, .external_lex_state = 25}, - [3090] = {.lex_state = 279, .external_lex_state = 52}, - [3091] = {.lex_state = 265, .external_lex_state = 53}, - [3092] = {.lex_state = 279, .external_lex_state = 25}, - [3093] = {.lex_state = 279, .external_lex_state = 25}, - [3094] = {.lex_state = 279, .external_lex_state = 52}, - [3095] = {.lex_state = 297, .external_lex_state = 50}, - [3096] = {.lex_state = 297, .external_lex_state = 50}, - [3097] = {.lex_state = 266, .external_lex_state = 54}, - [3098] = {.lex_state = 279, .external_lex_state = 25}, - [3099] = {.lex_state = 279, .external_lex_state = 25}, - [3100] = {.lex_state = 266, .external_lex_state = 54}, - [3101] = {.lex_state = 297, .external_lex_state = 50}, - [3102] = {.lex_state = 279, .external_lex_state = 25}, - [3103] = {.lex_state = 279, .external_lex_state = 25}, - [3104] = {.lex_state = 297, .external_lex_state = 50}, - [3105] = {.lex_state = 297, .external_lex_state = 50}, - [3106] = {.lex_state = 279, .external_lex_state = 25}, - [3107] = {.lex_state = 279, .external_lex_state = 25}, - [3108] = {.lex_state = 297, .external_lex_state = 50}, - [3109] = {.lex_state = 279, .external_lex_state = 25}, - [3110] = {.lex_state = 279, .external_lex_state = 52}, - [3111] = {.lex_state = 296, .external_lex_state = 55}, - [3112] = {.lex_state = 296, .external_lex_state = 55}, - [3113] = {.lex_state = 270, .external_lex_state = 56}, - [3114] = {.lex_state = 296, .external_lex_state = 55}, - [3115] = {.lex_state = 296, .external_lex_state = 55}, - [3116] = {.lex_state = 296, .external_lex_state = 55}, - [3117] = {.lex_state = 296, .external_lex_state = 55}, - [3118] = {.lex_state = 296, .external_lex_state = 55}, - [3119] = {.lex_state = 296, .external_lex_state = 55}, - [3120] = {.lex_state = 296, .external_lex_state = 55}, - [3121] = {.lex_state = 279, .external_lex_state = 25}, - [3122] = {.lex_state = 296, .external_lex_state = 55}, - [3123] = {.lex_state = 296, .external_lex_state = 55}, - [3124] = {.lex_state = 296, .external_lex_state = 55}, - [3125] = {.lex_state = 279, .external_lex_state = 25}, - [3126] = {.lex_state = 296, .external_lex_state = 55}, - [3127] = {.lex_state = 296, .external_lex_state = 55}, - [3128] = {.lex_state = 296, .external_lex_state = 55}, - [3129] = {.lex_state = 270, .external_lex_state = 56}, - [3130] = {.lex_state = 296, .external_lex_state = 55}, - [3131] = {.lex_state = 296, .external_lex_state = 55}, - [3132] = {.lex_state = 270, .external_lex_state = 56}, - [3133] = {.lex_state = 270, .external_lex_state = 56}, - [3134] = {.lex_state = 296, .external_lex_state = 55}, - [3135] = {.lex_state = 270, .external_lex_state = 56}, - [3136] = {.lex_state = 296, .external_lex_state = 55}, - [3137] = {.lex_state = 296, .external_lex_state = 55}, - [3138] = {.lex_state = 270, .external_lex_state = 56}, - [3139] = {.lex_state = 296, .external_lex_state = 55}, - [3140] = {.lex_state = 296, .external_lex_state = 55}, - [3141] = {.lex_state = 270, .external_lex_state = 56}, - [3142] = {.lex_state = 270, .external_lex_state = 56}, - [3143] = {.lex_state = 270, .external_lex_state = 56}, - [3144] = {.lex_state = 296, .external_lex_state = 55}, - [3145] = {.lex_state = 296, .external_lex_state = 55}, - [3146] = {.lex_state = 296, .external_lex_state = 55}, - [3147] = {.lex_state = 296, .external_lex_state = 55}, - [3148] = {.lex_state = 296, .external_lex_state = 55}, - [3149] = {.lex_state = 296, .external_lex_state = 55}, - [3150] = {.lex_state = 296, .external_lex_state = 55}, - [3151] = {.lex_state = 296, .external_lex_state = 55}, - [3152] = {.lex_state = 296, .external_lex_state = 55}, - [3153] = {.lex_state = 296, .external_lex_state = 55}, - [3154] = {.lex_state = 296, .external_lex_state = 55}, - [3155] = {.lex_state = 296, .external_lex_state = 55}, - [3156] = {.lex_state = 296, .external_lex_state = 55}, - [3157] = {.lex_state = 270, .external_lex_state = 56}, - [3158] = {.lex_state = 270, .external_lex_state = 56}, - [3159] = {.lex_state = 296, .external_lex_state = 55}, - [3160] = {.lex_state = 296, .external_lex_state = 55}, - [3161] = {.lex_state = 296, .external_lex_state = 55}, - [3162] = {.lex_state = 270, .external_lex_state = 56}, - [3163] = {.lex_state = 279, .external_lex_state = 25}, - [3164] = {.lex_state = 270, .external_lex_state = 56}, - [3165] = {.lex_state = 270, .external_lex_state = 56}, - [3166] = {.lex_state = 296, .external_lex_state = 55}, - [3167] = {.lex_state = 279, .external_lex_state = 25}, - [3168] = {.lex_state = 296, .external_lex_state = 55}, - [3169] = {.lex_state = 296, .external_lex_state = 55}, - [3170] = {.lex_state = 270, .external_lex_state = 56}, - [3171] = {.lex_state = 270, .external_lex_state = 56}, - [3172] = {.lex_state = 279, .external_lex_state = 25}, - [3173] = {.lex_state = 270, .external_lex_state = 56}, - [3174] = {.lex_state = 270, .external_lex_state = 56}, - [3175] = {.lex_state = 270, .external_lex_state = 56}, - [3176] = {.lex_state = 270, .external_lex_state = 56}, - [3177] = {.lex_state = 296, .external_lex_state = 55}, - [3178] = {.lex_state = 270, .external_lex_state = 56}, - [3179] = {.lex_state = 270, .external_lex_state = 56}, - [3180] = {.lex_state = 296, .external_lex_state = 55}, - [3181] = {.lex_state = 296, .external_lex_state = 55}, - [3182] = {.lex_state = 270, .external_lex_state = 56}, - [3183] = {.lex_state = 279, .external_lex_state = 25}, - [3184] = {.lex_state = 296, .external_lex_state = 55}, - [3185] = {.lex_state = 296, .external_lex_state = 55}, - [3186] = {.lex_state = 296, .external_lex_state = 55}, - [3187] = {.lex_state = 279, .external_lex_state = 25}, - [3188] = {.lex_state = 296, .external_lex_state = 55}, - [3189] = {.lex_state = 296, .external_lex_state = 55}, - [3190] = {.lex_state = 296, .external_lex_state = 55}, - [3191] = {.lex_state = 270, .external_lex_state = 56}, - [3192] = {.lex_state = 279, .external_lex_state = 25}, - [3193] = {.lex_state = 279, .external_lex_state = 25}, - [3194] = {.lex_state = 270, .external_lex_state = 56}, - [3195] = {.lex_state = 296, .external_lex_state = 55}, - [3196] = {.lex_state = 296, .external_lex_state = 55}, - [3197] = {.lex_state = 296, .external_lex_state = 55}, - [3198] = {.lex_state = 270, .external_lex_state = 56}, - [3199] = {.lex_state = 296, .external_lex_state = 55}, - [3200] = {.lex_state = 296, .external_lex_state = 55}, - [3201] = {.lex_state = 296, .external_lex_state = 55}, - [3202] = {.lex_state = 296, .external_lex_state = 55}, - [3203] = {.lex_state = 296, .external_lex_state = 55}, - [3204] = {.lex_state = 296, .external_lex_state = 55}, - [3205] = {.lex_state = 296, .external_lex_state = 55}, - [3206] = {.lex_state = 270, .external_lex_state = 56}, - [3207] = {.lex_state = 296, .external_lex_state = 55}, - [3208] = {.lex_state = 296, .external_lex_state = 55}, - [3209] = {.lex_state = 296, .external_lex_state = 55}, - [3210] = {.lex_state = 270, .external_lex_state = 56}, - [3211] = {.lex_state = 270, .external_lex_state = 56}, - [3212] = {.lex_state = 270, .external_lex_state = 56}, - [3213] = {.lex_state = 296, .external_lex_state = 55}, - [3214] = {.lex_state = 296, .external_lex_state = 55}, - [3215] = {.lex_state = 296, .external_lex_state = 55}, - [3216] = {.lex_state = 270, .external_lex_state = 56}, - [3217] = {.lex_state = 270, .external_lex_state = 56}, - [3218] = {.lex_state = 296, .external_lex_state = 55}, - [3219] = {.lex_state = 270, .external_lex_state = 56}, - [3220] = {.lex_state = 296, .external_lex_state = 55}, - [3221] = {.lex_state = 296, .external_lex_state = 55}, - [3222] = {.lex_state = 296, .external_lex_state = 55}, - [3223] = {.lex_state = 270, .external_lex_state = 56}, - [3224] = {.lex_state = 296, .external_lex_state = 55}, - [3225] = {.lex_state = 270, .external_lex_state = 56}, - [3226] = {.lex_state = 296, .external_lex_state = 55}, - [3227] = {.lex_state = 296, .external_lex_state = 55}, - [3228] = {.lex_state = 296, .external_lex_state = 55}, - [3229] = {.lex_state = 296, .external_lex_state = 55}, - [3230] = {.lex_state = 296, .external_lex_state = 55}, - [3231] = {.lex_state = 296, .external_lex_state = 55}, - [3232] = {.lex_state = 296, .external_lex_state = 55}, - [3233] = {.lex_state = 296, .external_lex_state = 55}, - [3234] = {.lex_state = 270, .external_lex_state = 56}, - [3235] = {.lex_state = 296, .external_lex_state = 55}, - [3236] = {.lex_state = 270, .external_lex_state = 56}, - [3237] = {.lex_state = 296, .external_lex_state = 55}, - [3238] = {.lex_state = 279, .external_lex_state = 25}, - [3239] = {.lex_state = 296, .external_lex_state = 55}, - [3240] = {.lex_state = 279, .external_lex_state = 25}, - [3241] = {.lex_state = 279, .external_lex_state = 25}, - [3242] = {.lex_state = 296, .external_lex_state = 55}, - [3243] = {.lex_state = 296, .external_lex_state = 55}, - [3244] = {.lex_state = 270, .external_lex_state = 56}, - [3245] = {.lex_state = 279, .external_lex_state = 25}, - [3246] = {.lex_state = 279, .external_lex_state = 25}, - [3247] = {.lex_state = 296, .external_lex_state = 55}, - [3248] = {.lex_state = 270, .external_lex_state = 56}, - [3249] = {.lex_state = 296, .external_lex_state = 55}, - [3250] = {.lex_state = 270, .external_lex_state = 56}, - [3251] = {.lex_state = 270, .external_lex_state = 56}, - [3252] = {.lex_state = 270, .external_lex_state = 56}, - [3253] = {.lex_state = 270, .external_lex_state = 56}, - [3254] = {.lex_state = 270, .external_lex_state = 56}, - [3255] = {.lex_state = 279, .external_lex_state = 25}, - [3256] = {.lex_state = 270, .external_lex_state = 56}, - [3257] = {.lex_state = 279, .external_lex_state = 25}, - [3258] = {.lex_state = 270, .external_lex_state = 56}, - [3259] = {.lex_state = 270, .external_lex_state = 56}, - [3260] = {.lex_state = 296, .external_lex_state = 55}, - [3261] = {.lex_state = 279, .external_lex_state = 25}, - [3262] = {.lex_state = 296, .external_lex_state = 55}, - [3263] = {.lex_state = 270, .external_lex_state = 56}, - [3264] = {.lex_state = 296, .external_lex_state = 55}, - [3265] = {.lex_state = 279, .external_lex_state = 25}, - [3266] = {.lex_state = 296, .external_lex_state = 55}, - [3267] = {.lex_state = 279, .external_lex_state = 25}, - [3268] = {.lex_state = 270, .external_lex_state = 56}, - [3269] = {.lex_state = 270, .external_lex_state = 56}, - [3270] = {.lex_state = 296, .external_lex_state = 55}, - [3271] = {.lex_state = 270, .external_lex_state = 56}, - [3272] = {.lex_state = 296, .external_lex_state = 55}, - [3273] = {.lex_state = 270, .external_lex_state = 56}, - [3274] = {.lex_state = 270, .external_lex_state = 56}, - [3275] = {.lex_state = 296, .external_lex_state = 55}, - [3276] = {.lex_state = 296, .external_lex_state = 55}, - [3277] = {.lex_state = 296, .external_lex_state = 55}, - [3278] = {.lex_state = 296, .external_lex_state = 55}, - [3279] = {.lex_state = 296, .external_lex_state = 55}, - [3280] = {.lex_state = 296, .external_lex_state = 55}, - [3281] = {.lex_state = 270, .external_lex_state = 56}, - [3282] = {.lex_state = 279, .external_lex_state = 25}, - [3283] = {.lex_state = 296, .external_lex_state = 55}, - [3284] = {.lex_state = 296, .external_lex_state = 55}, - [3285] = {.lex_state = 279, .external_lex_state = 25}, - [3286] = {.lex_state = 279, .external_lex_state = 25}, - [3287] = {.lex_state = 270, .external_lex_state = 56}, - [3288] = {.lex_state = 296, .external_lex_state = 55}, - [3289] = {.lex_state = 296, .external_lex_state = 55}, - [3290] = {.lex_state = 296, .external_lex_state = 55}, - [3291] = {.lex_state = 296, .external_lex_state = 55}, - [3292] = {.lex_state = 279, .external_lex_state = 25}, - [3293] = {.lex_state = 296, .external_lex_state = 55}, - [3294] = {.lex_state = 270, .external_lex_state = 56}, - [3295] = {.lex_state = 296, .external_lex_state = 55}, - [3296] = {.lex_state = 279, .external_lex_state = 25}, - [3297] = {.lex_state = 296, .external_lex_state = 55}, - [3298] = {.lex_state = 296, .external_lex_state = 55}, - [3299] = {.lex_state = 296, .external_lex_state = 55}, - [3300] = {.lex_state = 296, .external_lex_state = 55}, - [3301] = {.lex_state = 296, .external_lex_state = 55}, - [3302] = {.lex_state = 270, .external_lex_state = 56}, - [3303] = {.lex_state = 270, .external_lex_state = 56}, - [3304] = {.lex_state = 270, .external_lex_state = 56}, - [3305] = {.lex_state = 296, .external_lex_state = 55}, - [3306] = {.lex_state = 279, .external_lex_state = 25}, - [3307] = {.lex_state = 296, .external_lex_state = 55}, - [3308] = {.lex_state = 296, .external_lex_state = 55}, - [3309] = {.lex_state = 296, .external_lex_state = 55}, - [3310] = {.lex_state = 279, .external_lex_state = 25}, - [3311] = {.lex_state = 296, .external_lex_state = 55}, - [3312] = {.lex_state = 270, .external_lex_state = 56}, - [3313] = {.lex_state = 296, .external_lex_state = 55}, - [3314] = {.lex_state = 279, .external_lex_state = 25}, - [3315] = {.lex_state = 296, .external_lex_state = 55}, - [3316] = {.lex_state = 279, .external_lex_state = 25}, - [3317] = {.lex_state = 296, .external_lex_state = 55}, - [3318] = {.lex_state = 296, .external_lex_state = 55}, - [3319] = {.lex_state = 296, .external_lex_state = 55}, - [3320] = {.lex_state = 279, .external_lex_state = 25}, - [3321] = {.lex_state = 296, .external_lex_state = 55}, - [3322] = {.lex_state = 296, .external_lex_state = 55}, - [3323] = {.lex_state = 270, .external_lex_state = 56}, - [3324] = {.lex_state = 279, .external_lex_state = 25}, - [3325] = {.lex_state = 296, .external_lex_state = 55}, - [3326] = {.lex_state = 296, .external_lex_state = 55}, - [3327] = {.lex_state = 296, .external_lex_state = 55}, - [3328] = {.lex_state = 296, .external_lex_state = 55}, - [3329] = {.lex_state = 296, .external_lex_state = 55}, - [3330] = {.lex_state = 265, .external_lex_state = 57}, - [3331] = {.lex_state = 296, .external_lex_state = 55}, - [3332] = {.lex_state = 296, .external_lex_state = 55}, - [3333] = {.lex_state = 296, .external_lex_state = 55}, - [3334] = {.lex_state = 296, .external_lex_state = 55}, - [3335] = {.lex_state = 296, .external_lex_state = 55}, - [3336] = {.lex_state = 296, .external_lex_state = 55}, - [3337] = {.lex_state = 296, .external_lex_state = 55}, - [3338] = {.lex_state = 279, .external_lex_state = 25}, - [3339] = {.lex_state = 296, .external_lex_state = 55}, - [3340] = {.lex_state = 296, .external_lex_state = 55}, - [3341] = {.lex_state = 279, .external_lex_state = 25}, - [3342] = {.lex_state = 296, .external_lex_state = 55}, - [3343] = {.lex_state = 279, .external_lex_state = 25}, - [3344] = {.lex_state = 296, .external_lex_state = 55}, - [3345] = {.lex_state = 270, .external_lex_state = 56}, - [3346] = {.lex_state = 296, .external_lex_state = 55}, - [3347] = {.lex_state = 296, .external_lex_state = 55}, - [3348] = {.lex_state = 296, .external_lex_state = 55}, - [3349] = {.lex_state = 270, .external_lex_state = 56}, - [3350] = {.lex_state = 296, .external_lex_state = 55}, - [3351] = {.lex_state = 270, .external_lex_state = 56}, - [3352] = {.lex_state = 270, .external_lex_state = 56}, - [3353] = {.lex_state = 296, .external_lex_state = 55}, - [3354] = {.lex_state = 296, .external_lex_state = 55}, - [3355] = {.lex_state = 270, .external_lex_state = 56}, - [3356] = {.lex_state = 279, .external_lex_state = 25}, - [3357] = {.lex_state = 279, .external_lex_state = 25}, - [3358] = {.lex_state = 296, .external_lex_state = 55}, - [3359] = {.lex_state = 296, .external_lex_state = 55}, - [3360] = {.lex_state = 296, .external_lex_state = 55}, - [3361] = {.lex_state = 296, .external_lex_state = 55}, - [3362] = {.lex_state = 296, .external_lex_state = 55}, - [3363] = {.lex_state = 296, .external_lex_state = 55}, - [3364] = {.lex_state = 296, .external_lex_state = 55}, - [3365] = {.lex_state = 296, .external_lex_state = 55}, - [3366] = {.lex_state = 296, .external_lex_state = 55}, - [3367] = {.lex_state = 296, .external_lex_state = 55}, - [3368] = {.lex_state = 296, .external_lex_state = 55}, - [3369] = {.lex_state = 296, .external_lex_state = 55}, - [3370] = {.lex_state = 270, .external_lex_state = 56}, - [3371] = {.lex_state = 296, .external_lex_state = 55}, - [3372] = {.lex_state = 296, .external_lex_state = 55}, - [3373] = {.lex_state = 296, .external_lex_state = 55}, - [3374] = {.lex_state = 279, .external_lex_state = 25}, - [3375] = {.lex_state = 296, .external_lex_state = 55}, - [3376] = {.lex_state = 296, .external_lex_state = 55}, - [3377] = {.lex_state = 296, .external_lex_state = 55}, - [3378] = {.lex_state = 296, .external_lex_state = 55}, - [3379] = {.lex_state = 270, .external_lex_state = 56}, - [3380] = {.lex_state = 270, .external_lex_state = 56}, - [3381] = {.lex_state = 270, .external_lex_state = 56}, - [3382] = {.lex_state = 270, .external_lex_state = 56}, - [3383] = {.lex_state = 270, .external_lex_state = 56}, - [3384] = {.lex_state = 270, .external_lex_state = 56}, - [3385] = {.lex_state = 296, .external_lex_state = 55}, - [3386] = {.lex_state = 270, .external_lex_state = 56}, - [3387] = {.lex_state = 270, .external_lex_state = 56}, - [3388] = {.lex_state = 296, .external_lex_state = 55}, - [3389] = {.lex_state = 270, .external_lex_state = 56}, - [3390] = {.lex_state = 270, .external_lex_state = 56}, - [3391] = {.lex_state = 270, .external_lex_state = 56}, - [3392] = {.lex_state = 296, .external_lex_state = 55}, - [3393] = {.lex_state = 270, .external_lex_state = 56}, - [3394] = {.lex_state = 296, .external_lex_state = 55}, - [3395] = {.lex_state = 270, .external_lex_state = 56}, - [3396] = {.lex_state = 296, .external_lex_state = 55}, - [3397] = {.lex_state = 270, .external_lex_state = 56}, - [3398] = {.lex_state = 296, .external_lex_state = 55}, - [3399] = {.lex_state = 296, .external_lex_state = 55}, - [3400] = {.lex_state = 270, .external_lex_state = 56}, - [3401] = {.lex_state = 279, .external_lex_state = 25}, - [3402] = {.lex_state = 296, .external_lex_state = 55}, - [3403] = {.lex_state = 270, .external_lex_state = 56}, - [3404] = {.lex_state = 296, .external_lex_state = 55}, - [3405] = {.lex_state = 270, .external_lex_state = 56}, - [3406] = {.lex_state = 279, .external_lex_state = 25}, - [3407] = {.lex_state = 296, .external_lex_state = 55}, - [3408] = {.lex_state = 296, .external_lex_state = 55}, - [3409] = {.lex_state = 270, .external_lex_state = 56}, - [3410] = {.lex_state = 270, .external_lex_state = 56}, - [3411] = {.lex_state = 296, .external_lex_state = 55}, - [3412] = {.lex_state = 270, .external_lex_state = 56}, - [3413] = {.lex_state = 270, .external_lex_state = 56}, - [3414] = {.lex_state = 270, .external_lex_state = 56}, - [3415] = {.lex_state = 270, .external_lex_state = 56}, - [3416] = {.lex_state = 296, .external_lex_state = 55}, - [3417] = {.lex_state = 296, .external_lex_state = 55}, - [3418] = {.lex_state = 279, .external_lex_state = 25}, - [3419] = {.lex_state = 279, .external_lex_state = 25}, - [3420] = {.lex_state = 279, .external_lex_state = 25}, - [3421] = {.lex_state = 296, .external_lex_state = 55}, - [3422] = {.lex_state = 270, .external_lex_state = 56}, - [3423] = {.lex_state = 296, .external_lex_state = 55}, - [3424] = {.lex_state = 296, .external_lex_state = 55}, - [3425] = {.lex_state = 296, .external_lex_state = 55}, - [3426] = {.lex_state = 296, .external_lex_state = 55}, - [3427] = {.lex_state = 270, .external_lex_state = 56}, - [3428] = {.lex_state = 296, .external_lex_state = 55}, - [3429] = {.lex_state = 296, .external_lex_state = 55}, - [3430] = {.lex_state = 296, .external_lex_state = 55}, - [3431] = {.lex_state = 279, .external_lex_state = 25}, - [3432] = {.lex_state = 279, .external_lex_state = 25}, - [3433] = {.lex_state = 270, .external_lex_state = 56}, - [3434] = {.lex_state = 270, .external_lex_state = 56}, - [3435] = {.lex_state = 270, .external_lex_state = 56}, - [3436] = {.lex_state = 270, .external_lex_state = 56}, - [3437] = {.lex_state = 279, .external_lex_state = 25}, - [3438] = {.lex_state = 270, .external_lex_state = 56}, - [3439] = {.lex_state = 279, .external_lex_state = 25}, - [3440] = {.lex_state = 279, .external_lex_state = 25}, - [3441] = {.lex_state = 296, .external_lex_state = 55}, - [3442] = {.lex_state = 296, .external_lex_state = 55}, - [3443] = {.lex_state = 270, .external_lex_state = 56}, - [3444] = {.lex_state = 270, .external_lex_state = 56}, - [3445] = {.lex_state = 296, .external_lex_state = 55}, - [3446] = {.lex_state = 279, .external_lex_state = 25}, - [3447] = {.lex_state = 279, .external_lex_state = 25}, - [3448] = {.lex_state = 270, .external_lex_state = 56}, - [3449] = {.lex_state = 270, .external_lex_state = 56}, - [3450] = {.lex_state = 270, .external_lex_state = 56}, - [3451] = {.lex_state = 270, .external_lex_state = 56}, - [3452] = {.lex_state = 296, .external_lex_state = 55}, - [3453] = {.lex_state = 279, .external_lex_state = 25}, - [3454] = {.lex_state = 270, .external_lex_state = 56}, - [3455] = {.lex_state = 279, .external_lex_state = 25}, - [3456] = {.lex_state = 296, .external_lex_state = 55}, - [3457] = {.lex_state = 270, .external_lex_state = 56}, - [3458] = {.lex_state = 270, .external_lex_state = 56}, - [3459] = {.lex_state = 279, .external_lex_state = 25}, - [3460] = {.lex_state = 279, .external_lex_state = 25}, - [3461] = {.lex_state = 296, .external_lex_state = 55}, - [3462] = {.lex_state = 270, .external_lex_state = 56}, - [3463] = {.lex_state = 270, .external_lex_state = 56}, - [3464] = {.lex_state = 270, .external_lex_state = 56}, - [3465] = {.lex_state = 270, .external_lex_state = 56}, - [3466] = {.lex_state = 270, .external_lex_state = 56}, - [3467] = {.lex_state = 270, .external_lex_state = 56}, - [3468] = {.lex_state = 270, .external_lex_state = 56}, - [3469] = {.lex_state = 270, .external_lex_state = 56}, - [3470] = {.lex_state = 270, .external_lex_state = 56}, - [3471] = {.lex_state = 296, .external_lex_state = 55}, - [3472] = {.lex_state = 270, .external_lex_state = 56}, - [3473] = {.lex_state = 270, .external_lex_state = 56}, - [3474] = {.lex_state = 279, .external_lex_state = 25}, - [3475] = {.lex_state = 270, .external_lex_state = 56}, - [3476] = {.lex_state = 270, .external_lex_state = 56}, - [3477] = {.lex_state = 270, .external_lex_state = 56}, - [3478] = {.lex_state = 296, .external_lex_state = 55}, - [3479] = {.lex_state = 265, .external_lex_state = 57}, - [3480] = {.lex_state = 296, .external_lex_state = 55}, - [3481] = {.lex_state = 270, .external_lex_state = 56}, - [3482] = {.lex_state = 270, .external_lex_state = 56}, - [3483] = {.lex_state = 296, .external_lex_state = 55}, - [3484] = {.lex_state = 296, .external_lex_state = 55}, - [3485] = {.lex_state = 270, .external_lex_state = 56}, - [3486] = {.lex_state = 270, .external_lex_state = 56}, - [3487] = {.lex_state = 270, .external_lex_state = 56}, - [3488] = {.lex_state = 270, .external_lex_state = 56}, - [3489] = {.lex_state = 296, .external_lex_state = 55}, - [3490] = {.lex_state = 270, .external_lex_state = 56}, - [3491] = {.lex_state = 270, .external_lex_state = 56}, - [3492] = {.lex_state = 270, .external_lex_state = 56}, - [3493] = {.lex_state = 270, .external_lex_state = 56}, - [3494] = {.lex_state = 270, .external_lex_state = 56}, - [3495] = {.lex_state = 270, .external_lex_state = 56}, - [3496] = {.lex_state = 296, .external_lex_state = 55}, - [3497] = {.lex_state = 270, .external_lex_state = 56}, - [3498] = {.lex_state = 296, .external_lex_state = 55}, - [3499] = {.lex_state = 270, .external_lex_state = 56}, - [3500] = {.lex_state = 270, .external_lex_state = 56}, - [3501] = {.lex_state = 270, .external_lex_state = 56}, - [3502] = {.lex_state = 270, .external_lex_state = 56}, - [3503] = {.lex_state = 270, .external_lex_state = 56}, - [3504] = {.lex_state = 270, .external_lex_state = 56}, - [3505] = {.lex_state = 270, .external_lex_state = 56}, - [3506] = {.lex_state = 270, .external_lex_state = 56}, - [3507] = {.lex_state = 270, .external_lex_state = 56}, - [3508] = {.lex_state = 270, .external_lex_state = 56}, - [3509] = {.lex_state = 270, .external_lex_state = 56}, - [3510] = {.lex_state = 270, .external_lex_state = 56}, - [3511] = {.lex_state = 296, .external_lex_state = 55}, - [3512] = {.lex_state = 296, .external_lex_state = 55}, - [3513] = {.lex_state = 270, .external_lex_state = 56}, - [3514] = {.lex_state = 270, .external_lex_state = 56}, - [3515] = {.lex_state = 270, .external_lex_state = 56}, - [3516] = {.lex_state = 270, .external_lex_state = 56}, - [3517] = {.lex_state = 270, .external_lex_state = 56}, - [3518] = {.lex_state = 270, .external_lex_state = 56}, - [3519] = {.lex_state = 270, .external_lex_state = 56}, - [3520] = {.lex_state = 270, .external_lex_state = 56}, - [3521] = {.lex_state = 270, .external_lex_state = 56}, - [3522] = {.lex_state = 67, .external_lex_state = 43}, - [3523] = {.lex_state = 67, .external_lex_state = 43}, - [3524] = {.lex_state = 65, .external_lex_state = 58}, - [3525] = {.lex_state = 66, .external_lex_state = 59}, - [3526] = {.lex_state = 67, .external_lex_state = 43}, - [3527] = {.lex_state = 67, .external_lex_state = 43}, - [3528] = {.lex_state = 65, .external_lex_state = 58}, - [3529] = {.lex_state = 299, .external_lex_state = 60}, - [3530] = {.lex_state = 65, .external_lex_state = 58}, - [3531] = {.lex_state = 67, .external_lex_state = 43}, - [3532] = {.lex_state = 66, .external_lex_state = 59}, - [3533] = {.lex_state = 66, .external_lex_state = 61}, - [3534] = {.lex_state = 66, .external_lex_state = 59}, - [3535] = {.lex_state = 66, .external_lex_state = 59}, - [3536] = {.lex_state = 66, .external_lex_state = 59}, - [3537] = {.lex_state = 65, .external_lex_state = 58}, - [3538] = {.lex_state = 67, .external_lex_state = 43}, - [3539] = {.lex_state = 67, .external_lex_state = 43}, - [3540] = {.lex_state = 66, .external_lex_state = 39}, - [3541] = {.lex_state = 65, .external_lex_state = 58}, - [3542] = {.lex_state = 67, .external_lex_state = 43}, - [3543] = {.lex_state = 66, .external_lex_state = 59}, - [3544] = {.lex_state = 66, .external_lex_state = 59}, - [3545] = {.lex_state = 65, .external_lex_state = 58}, - [3546] = {.lex_state = 487, .external_lex_state = 59}, - [3547] = {.lex_state = 66, .external_lex_state = 39}, - [3548] = {.lex_state = 66, .external_lex_state = 61}, - [3549] = {.lex_state = 66, .external_lex_state = 39}, - [3550] = {.lex_state = 66, .external_lex_state = 59}, - [3551] = {.lex_state = 487, .external_lex_state = 59}, - [3552] = {.lex_state = 178, .external_lex_state = 62}, - [3553] = {.lex_state = 487, .external_lex_state = 59}, - [3554] = {.lex_state = 486, .external_lex_state = 43}, - [3555] = {.lex_state = 178, .external_lex_state = 62}, - [3556] = {.lex_state = 66, .external_lex_state = 59}, - [3557] = {.lex_state = 486, .external_lex_state = 43}, - [3558] = {.lex_state = 66, .external_lex_state = 59}, - [3559] = {.lex_state = 66, .external_lex_state = 59}, - [3560] = {.lex_state = 487, .external_lex_state = 59}, - [3561] = {.lex_state = 486, .external_lex_state = 43}, - [3562] = {.lex_state = 487, .external_lex_state = 59}, - [3563] = {.lex_state = 66, .external_lex_state = 59}, - [3564] = {.lex_state = 66, .external_lex_state = 43}, - [3565] = {.lex_state = 66, .external_lex_state = 43}, - [3566] = {.lex_state = 487, .external_lex_state = 59}, - [3567] = {.lex_state = 487, .external_lex_state = 59}, - [3568] = {.lex_state = 487, .external_lex_state = 59}, - [3569] = {.lex_state = 487, .external_lex_state = 59}, - [3570] = {.lex_state = 487, .external_lex_state = 59}, - [3571] = {.lex_state = 66, .external_lex_state = 59}, - [3572] = {.lex_state = 487, .external_lex_state = 59}, - [3573] = {.lex_state = 66, .external_lex_state = 59}, - [3574] = {.lex_state = 66, .external_lex_state = 43}, - [3575] = {.lex_state = 66, .external_lex_state = 43}, - [3576] = {.lex_state = 486, .external_lex_state = 43}, - [3577] = {.lex_state = 66, .external_lex_state = 43}, - [3578] = {.lex_state = 66, .external_lex_state = 43}, - [3579] = {.lex_state = 66, .external_lex_state = 59}, - [3580] = {.lex_state = 299, .external_lex_state = 63}, - [3581] = {.lex_state = 299, .external_lex_state = 63}, - [3582] = {.lex_state = 66, .external_lex_state = 59}, - [3583] = {.lex_state = 486, .external_lex_state = 43}, - [3584] = {.lex_state = 66, .external_lex_state = 59}, - [3585] = {.lex_state = 299, .external_lex_state = 63}, - [3586] = {.lex_state = 487, .external_lex_state = 59}, - [3587] = {.lex_state = 487, .external_lex_state = 59}, - [3588] = {.lex_state = 487, .external_lex_state = 59}, - [3589] = {.lex_state = 486, .external_lex_state = 43}, - [3590] = {.lex_state = 299, .external_lex_state = 63}, - [3591] = {.lex_state = 486, .external_lex_state = 43}, - [3592] = {.lex_state = 487, .external_lex_state = 59}, - [3593] = {.lex_state = 486, .external_lex_state = 43}, - [3594] = {.lex_state = 66, .external_lex_state = 61}, - [3595] = {.lex_state = 66, .external_lex_state = 39}, - [3596] = {.lex_state = 66, .external_lex_state = 61}, - [3597] = {.lex_state = 66, .external_lex_state = 61}, - [3598] = {.lex_state = 66, .external_lex_state = 59}, - [3599] = {.lex_state = 486, .external_lex_state = 43}, - [3600] = {.lex_state = 66, .external_lex_state = 61}, - [3601] = {.lex_state = 487, .external_lex_state = 59}, - [3602] = {.lex_state = 488, .external_lex_state = 39}, - [3603] = {.lex_state = 66, .external_lex_state = 61}, - [3604] = {.lex_state = 487, .external_lex_state = 59}, - [3605] = {.lex_state = 66, .external_lex_state = 59}, - [3606] = {.lex_state = 66, .external_lex_state = 59}, - [3607] = {.lex_state = 66, .external_lex_state = 59}, - [3608] = {.lex_state = 66, .external_lex_state = 59}, - [3609] = {.lex_state = 66, .external_lex_state = 61}, - [3610] = {.lex_state = 66, .external_lex_state = 61}, - [3611] = {.lex_state = 486, .external_lex_state = 43}, - [3612] = {.lex_state = 486, .external_lex_state = 43}, - [3613] = {.lex_state = 487, .external_lex_state = 59}, - [3614] = {.lex_state = 66, .external_lex_state = 61}, - [3615] = {.lex_state = 66, .external_lex_state = 61}, - [3616] = {.lex_state = 66, .external_lex_state = 59}, - [3617] = {.lex_state = 66, .external_lex_state = 59}, - [3618] = {.lex_state = 66, .external_lex_state = 59}, - [3619] = {.lex_state = 66, .external_lex_state = 39}, - [3620] = {.lex_state = 487, .external_lex_state = 59}, - [3621] = {.lex_state = 487, .external_lex_state = 59}, - [3622] = {.lex_state = 66, .external_lex_state = 59}, - [3623] = {.lex_state = 66, .external_lex_state = 59}, - [3624] = {.lex_state = 66, .external_lex_state = 61}, - [3625] = {.lex_state = 66, .external_lex_state = 61}, - [3626] = {.lex_state = 487, .external_lex_state = 59}, - [3627] = {.lex_state = 487, .external_lex_state = 59}, - [3628] = {.lex_state = 66, .external_lex_state = 59}, - [3629] = {.lex_state = 488, .external_lex_state = 39}, - [3630] = {.lex_state = 487, .external_lex_state = 59}, - [3631] = {.lex_state = 487, .external_lex_state = 61}, - [3632] = {.lex_state = 66, .external_lex_state = 59}, - [3633] = {.lex_state = 66, .external_lex_state = 59}, - [3634] = {.lex_state = 486, .external_lex_state = 43}, - [3635] = {.lex_state = 66, .external_lex_state = 39}, - [3636] = {.lex_state = 66, .external_lex_state = 39}, - [3637] = {.lex_state = 486, .external_lex_state = 43}, - [3638] = {.lex_state = 66, .external_lex_state = 43}, - [3639] = {.lex_state = 487, .external_lex_state = 61}, - [3640] = {.lex_state = 486, .external_lex_state = 43}, - [3641] = {.lex_state = 487, .external_lex_state = 39}, - [3642] = {.lex_state = 487, .external_lex_state = 59}, - [3643] = {.lex_state = 487, .external_lex_state = 59}, - [3644] = {.lex_state = 66, .external_lex_state = 61}, - [3645] = {.lex_state = 66, .external_lex_state = 61}, - [3646] = {.lex_state = 66, .external_lex_state = 61}, - [3647] = {.lex_state = 66, .external_lex_state = 61}, - [3648] = {.lex_state = 487, .external_lex_state = 59}, - [3649] = {.lex_state = 487, .external_lex_state = 61}, - [3650] = {.lex_state = 66, .external_lex_state = 61}, - [3651] = {.lex_state = 66, .external_lex_state = 61}, - [3652] = {.lex_state = 66, .external_lex_state = 61}, - [3653] = {.lex_state = 66, .external_lex_state = 61}, - [3654] = {.lex_state = 66, .external_lex_state = 61}, - [3655] = {.lex_state = 66, .external_lex_state = 61}, - [3656] = {.lex_state = 66, .external_lex_state = 61}, - [3657] = {.lex_state = 487, .external_lex_state = 59}, - [3658] = {.lex_state = 66, .external_lex_state = 61}, - [3659] = {.lex_state = 488, .external_lex_state = 43}, - [3660] = {.lex_state = 487, .external_lex_state = 59}, - [3661] = {.lex_state = 488, .external_lex_state = 43}, - [3662] = {.lex_state = 487, .external_lex_state = 61}, - [3663] = {.lex_state = 66, .external_lex_state = 61}, - [3664] = {.lex_state = 66, .external_lex_state = 43}, - [3665] = {.lex_state = 486, .external_lex_state = 43}, - [3666] = {.lex_state = 486, .external_lex_state = 43}, - [3667] = {.lex_state = 66, .external_lex_state = 43}, - [3668] = {.lex_state = 66, .external_lex_state = 43}, - [3669] = {.lex_state = 66, .external_lex_state = 61}, - [3670] = {.lex_state = 487, .external_lex_state = 59}, - [3671] = {.lex_state = 487, .external_lex_state = 61}, - [3672] = {.lex_state = 66, .external_lex_state = 43}, - [3673] = {.lex_state = 66, .external_lex_state = 61}, - [3674] = {.lex_state = 66, .external_lex_state = 61}, - [3675] = {.lex_state = 66, .external_lex_state = 61}, - [3676] = {.lex_state = 487, .external_lex_state = 59}, - [3677] = {.lex_state = 487, .external_lex_state = 59}, - [3678] = {.lex_state = 487, .external_lex_state = 61}, - [3679] = {.lex_state = 487, .external_lex_state = 61}, - [3680] = {.lex_state = 487, .external_lex_state = 61}, - [3681] = {.lex_state = 220, .external_lex_state = 64}, - [3682] = {.lex_state = 299, .external_lex_state = 49}, - [3683] = {.lex_state = 66, .external_lex_state = 61}, - [3684] = {.lex_state = 488, .external_lex_state = 43}, - [3685] = {.lex_state = 220, .external_lex_state = 64}, - [3686] = {.lex_state = 488, .external_lex_state = 43}, - [3687] = {.lex_state = 487, .external_lex_state = 61}, - [3688] = {.lex_state = 487, .external_lex_state = 39}, - [3689] = {.lex_state = 487, .external_lex_state = 61}, - [3690] = {.lex_state = 487, .external_lex_state = 61}, - [3691] = {.lex_state = 220, .external_lex_state = 64}, - [3692] = {.lex_state = 487, .external_lex_state = 39}, - [3693] = {.lex_state = 487, .external_lex_state = 61}, - [3694] = {.lex_state = 487, .external_lex_state = 39}, - [3695] = {.lex_state = 487, .external_lex_state = 61}, - [3696] = {.lex_state = 66, .external_lex_state = 43}, - [3697] = {.lex_state = 488, .external_lex_state = 43}, - [3698] = {.lex_state = 66, .external_lex_state = 43}, - [3699] = {.lex_state = 66, .external_lex_state = 61}, - [3700] = {.lex_state = 66, .external_lex_state = 43}, - [3701] = {.lex_state = 220, .external_lex_state = 64}, - [3702] = {.lex_state = 487, .external_lex_state = 61}, - [3703] = {.lex_state = 66, .external_lex_state = 43}, - [3704] = {.lex_state = 486, .external_lex_state = 43}, - [3705] = {.lex_state = 299, .external_lex_state = 49}, - [3706] = {.lex_state = 220, .external_lex_state = 64}, - [3707] = {.lex_state = 488, .external_lex_state = 39}, - [3708] = {.lex_state = 299, .external_lex_state = 49}, - [3709] = {.lex_state = 299, .external_lex_state = 49}, - [3710] = {.lex_state = 66, .external_lex_state = 43}, - [3711] = {.lex_state = 487, .external_lex_state = 61}, - [3712] = {.lex_state = 487, .external_lex_state = 61}, - [3713] = {.lex_state = 488, .external_lex_state = 39}, - [3714] = {.lex_state = 486, .external_lex_state = 43}, - [3715] = {.lex_state = 488, .external_lex_state = 39}, - [3716] = {.lex_state = 487, .external_lex_state = 59}, - [3717] = {.lex_state = 487, .external_lex_state = 61}, - [3718] = {.lex_state = 66, .external_lex_state = 61}, - [3719] = {.lex_state = 487, .external_lex_state = 59}, - [3720] = {.lex_state = 66, .external_lex_state = 61}, - [3721] = {.lex_state = 66, .external_lex_state = 61}, - [3722] = {.lex_state = 487, .external_lex_state = 59}, - [3723] = {.lex_state = 487, .external_lex_state = 61}, - [3724] = {.lex_state = 487, .external_lex_state = 61}, - [3725] = {.lex_state = 66, .external_lex_state = 61}, - [3726] = {.lex_state = 487, .external_lex_state = 61}, - [3727] = {.lex_state = 66, .external_lex_state = 61}, - [3728] = {.lex_state = 487, .external_lex_state = 61}, - [3729] = {.lex_state = 487, .external_lex_state = 61}, - [3730] = {.lex_state = 66, .external_lex_state = 43}, - [3731] = {.lex_state = 487, .external_lex_state = 59}, - [3732] = {.lex_state = 487, .external_lex_state = 59}, - [3733] = {.lex_state = 487, .external_lex_state = 61}, - [3734] = {.lex_state = 220, .external_lex_state = 64}, - [3735] = {.lex_state = 66, .external_lex_state = 61}, - [3736] = {.lex_state = 66, .external_lex_state = 61}, - [3737] = {.lex_state = 66, .external_lex_state = 61}, - [3738] = {.lex_state = 66, .external_lex_state = 61}, - [3739] = {.lex_state = 66, .external_lex_state = 61}, - [3740] = {.lex_state = 66, .external_lex_state = 43}, - [3741] = {.lex_state = 66, .external_lex_state = 43}, - [3742] = {.lex_state = 275, .external_lex_state = 65}, - [3743] = {.lex_state = 293}, - [3744] = {.lex_state = 220, .external_lex_state = 64}, - [3745] = {.lex_state = 487, .external_lex_state = 43}, - [3746] = {.lex_state = 275, .external_lex_state = 65}, - [3747] = {.lex_state = 275, .external_lex_state = 65}, - [3748] = {.lex_state = 487, .external_lex_state = 43}, - [3749] = {.lex_state = 220, .external_lex_state = 64}, - [3750] = {.lex_state = 220, .external_lex_state = 64}, - [3751] = {.lex_state = 275, .external_lex_state = 65}, - [3752] = {.lex_state = 487, .external_lex_state = 43}, - [3753] = {.lex_state = 487, .external_lex_state = 43}, - [3754] = {.lex_state = 275, .external_lex_state = 65}, - [3755] = {.lex_state = 293}, - [3756] = {.lex_state = 275, .external_lex_state = 65}, - [3757] = {.lex_state = 220, .external_lex_state = 64}, - [3758] = {.lex_state = 220, .external_lex_state = 64}, - [3759] = {.lex_state = 220, .external_lex_state = 64}, - [3760] = {.lex_state = 220, .external_lex_state = 64}, - [3761] = {.lex_state = 275, .external_lex_state = 65}, - [3762] = {.lex_state = 220, .external_lex_state = 64}, - [3763] = {.lex_state = 275, .external_lex_state = 65}, - [3764] = {.lex_state = 220, .external_lex_state = 64}, - [3765] = {.lex_state = 220, .external_lex_state = 64}, - [3766] = {.lex_state = 220, .external_lex_state = 64}, - [3767] = {.lex_state = 487, .external_lex_state = 61}, - [3768] = {.lex_state = 487, .external_lex_state = 61}, - [3769] = {.lex_state = 487, .external_lex_state = 61}, - [3770] = {.lex_state = 487, .external_lex_state = 61}, - [3771] = {.lex_state = 487, .external_lex_state = 61}, - [3772] = {.lex_state = 487, .external_lex_state = 61}, - [3773] = {.lex_state = 487, .external_lex_state = 61}, - [3774] = {.lex_state = 487, .external_lex_state = 61}, - [3775] = {.lex_state = 275, .external_lex_state = 65}, - [3776] = {.lex_state = 487, .external_lex_state = 61}, - [3777] = {.lex_state = 487, .external_lex_state = 61}, - [3778] = {.lex_state = 275, .external_lex_state = 65}, - [3779] = {.lex_state = 487, .external_lex_state = 61}, - [3780] = {.lex_state = 275, .external_lex_state = 65}, - [3781] = {.lex_state = 66, .external_lex_state = 43}, - [3782] = {.lex_state = 487, .external_lex_state = 61}, - [3783] = {.lex_state = 220, .external_lex_state = 64}, - [3784] = {.lex_state = 275, .external_lex_state = 65}, - [3785] = {.lex_state = 220, .external_lex_state = 64}, - [3786] = {.lex_state = 487, .external_lex_state = 59}, - [3787] = {.lex_state = 487, .external_lex_state = 59}, - [3788] = {.lex_state = 220, .external_lex_state = 64}, - [3789] = {.lex_state = 220, .external_lex_state = 64}, - [3790] = {.lex_state = 275, .external_lex_state = 65}, - [3791] = {.lex_state = 220, .external_lex_state = 64}, - [3792] = {.lex_state = 220, .external_lex_state = 64}, - [3793] = {.lex_state = 488, .external_lex_state = 43}, - [3794] = {.lex_state = 220, .external_lex_state = 64}, - [3795] = {.lex_state = 486, .external_lex_state = 43}, - [3796] = {.lex_state = 487, .external_lex_state = 59}, - [3797] = {.lex_state = 293}, - [3798] = {.lex_state = 293}, - [3799] = {.lex_state = 487, .external_lex_state = 61}, - [3800] = {.lex_state = 487, .external_lex_state = 59}, - [3801] = {.lex_state = 487, .external_lex_state = 61}, - [3802] = {.lex_state = 275, .external_lex_state = 65}, - [3803] = {.lex_state = 275, .external_lex_state = 65}, - [3804] = {.lex_state = 275, .external_lex_state = 65}, - [3805] = {.lex_state = 487, .external_lex_state = 61}, - [3806] = {.lex_state = 487, .external_lex_state = 43}, - [3807] = {.lex_state = 275, .external_lex_state = 65}, - [3808] = {.lex_state = 487, .external_lex_state = 61}, - [3809] = {.lex_state = 66, .external_lex_state = 39}, - [3810] = {.lex_state = 487, .external_lex_state = 43}, - [3811] = {.lex_state = 275, .external_lex_state = 65}, - [3812] = {.lex_state = 487, .external_lex_state = 43}, - [3813] = {.lex_state = 66, .external_lex_state = 43}, - [3814] = {.lex_state = 275, .external_lex_state = 65}, - [3815] = {.lex_state = 66, .external_lex_state = 39}, - [3816] = {.lex_state = 275, .external_lex_state = 65}, - [3817] = {.lex_state = 487, .external_lex_state = 43}, - [3818] = {.lex_state = 275, .external_lex_state = 65}, - [3819] = {.lex_state = 275, .external_lex_state = 65}, - [3820] = {.lex_state = 66, .external_lex_state = 39}, - [3821] = {.lex_state = 275, .external_lex_state = 65}, - [3822] = {.lex_state = 275, .external_lex_state = 65}, - [3823] = {.lex_state = 66, .external_lex_state = 43}, - [3824] = {.lex_state = 220, .external_lex_state = 64}, - [3825] = {.lex_state = 275, .external_lex_state = 65}, - [3826] = {.lex_state = 486, .external_lex_state = 43}, - [3827] = {.lex_state = 293}, - [3828] = {.lex_state = 66, .external_lex_state = 43}, - [3829] = {.lex_state = 487, .external_lex_state = 61}, - [3830] = {.lex_state = 293}, - [3831] = {.lex_state = 275, .external_lex_state = 65}, - [3832] = {.lex_state = 275, .external_lex_state = 65}, - [3833] = {.lex_state = 66, .external_lex_state = 43}, - [3834] = {.lex_state = 275, .external_lex_state = 65}, - [3835] = {.lex_state = 275, .external_lex_state = 65}, - [3836] = {.lex_state = 275, .external_lex_state = 65}, - [3837] = {.lex_state = 487, .external_lex_state = 61}, - [3838] = {.lex_state = 275, .external_lex_state = 65}, - [3839] = {.lex_state = 67, .external_lex_state = 43}, - [3840] = {.lex_state = 275, .external_lex_state = 65}, - [3841] = {.lex_state = 486, .external_lex_state = 43}, - [3842] = {.lex_state = 487, .external_lex_state = 61}, - [3843] = {.lex_state = 487, .external_lex_state = 61}, - [3844] = {.lex_state = 487, .external_lex_state = 61}, - [3845] = {.lex_state = 275, .external_lex_state = 65}, - [3846] = {.lex_state = 488, .external_lex_state = 39}, - [3847] = {.lex_state = 487, .external_lex_state = 61}, - [3848] = {.lex_state = 487, .external_lex_state = 39}, - [3849] = {.lex_state = 487, .external_lex_state = 39}, - [3850] = {.lex_state = 66, .external_lex_state = 43}, - [3851] = {.lex_state = 275, .external_lex_state = 65}, - [3852] = {.lex_state = 67, .external_lex_state = 43}, - [3853] = {.lex_state = 487, .external_lex_state = 61}, - [3854] = {.lex_state = 275, .external_lex_state = 65}, - [3855] = {.lex_state = 275, .external_lex_state = 65}, - [3856] = {.lex_state = 488, .external_lex_state = 39}, - [3857] = {.lex_state = 275, .external_lex_state = 65}, - [3858] = {.lex_state = 275, .external_lex_state = 65}, - [3859] = {.lex_state = 487, .external_lex_state = 43}, - [3860] = {.lex_state = 275, .external_lex_state = 65}, - [3861] = {.lex_state = 486, .external_lex_state = 43}, - [3862] = {.lex_state = 275, .external_lex_state = 65}, - [3863] = {.lex_state = 486, .external_lex_state = 43}, - [3864] = {.lex_state = 275, .external_lex_state = 65}, - [3865] = {.lex_state = 293}, - [3866] = {.lex_state = 293}, - [3867] = {.lex_state = 487, .external_lex_state = 61}, - [3868] = {.lex_state = 275, .external_lex_state = 65}, - [3869] = {.lex_state = 487, .external_lex_state = 61}, - [3870] = {.lex_state = 275, .external_lex_state = 65}, - [3871] = {.lex_state = 487, .external_lex_state = 61}, - [3872] = {.lex_state = 488, .external_lex_state = 43}, - [3873] = {.lex_state = 487, .external_lex_state = 61}, - [3874] = {.lex_state = 488, .external_lex_state = 39}, - [3875] = {.lex_state = 488, .external_lex_state = 43}, - [3876] = {.lex_state = 487, .external_lex_state = 61}, - [3877] = {.lex_state = 487, .external_lex_state = 61}, - [3878] = {.lex_state = 487, .external_lex_state = 61}, - [3879] = {.lex_state = 487, .external_lex_state = 61}, - [3880] = {.lex_state = 275, .external_lex_state = 65}, - [3881] = {.lex_state = 488, .external_lex_state = 43}, - [3882] = {.lex_state = 275, .external_lex_state = 65}, - [3883] = {.lex_state = 67, .external_lex_state = 43}, - [3884] = {.lex_state = 275, .external_lex_state = 65}, - [3885] = {.lex_state = 275, .external_lex_state = 65}, - [3886] = {.lex_state = 275, .external_lex_state = 65}, - [3887] = {.lex_state = 487, .external_lex_state = 43}, - [3888] = {.lex_state = 66, .external_lex_state = 43}, - [3889] = {.lex_state = 275, .external_lex_state = 65}, - [3890] = {.lex_state = 66, .external_lex_state = 43}, - [3891] = {.lex_state = 66, .external_lex_state = 43}, - [3892] = {.lex_state = 275, .external_lex_state = 65}, - [3893] = {.lex_state = 275, .external_lex_state = 65}, - [3894] = {.lex_state = 486, .external_lex_state = 43}, - [3895] = {.lex_state = 275, .external_lex_state = 65}, - [3896] = {.lex_state = 488, .external_lex_state = 43}, - [3897] = {.lex_state = 487, .external_lex_state = 43}, - [3898] = {.lex_state = 275, .external_lex_state = 65}, - [3899] = {.lex_state = 487, .external_lex_state = 43}, - [3900] = {.lex_state = 67, .external_lex_state = 43}, - [3901] = {.lex_state = 67, .external_lex_state = 43}, - [3902] = {.lex_state = 275, .external_lex_state = 65}, - [3903] = {.lex_state = 486, .external_lex_state = 43}, - [3904] = {.lex_state = 275, .external_lex_state = 65}, - [3905] = {.lex_state = 488, .external_lex_state = 43}, - [3906] = {.lex_state = 67, .external_lex_state = 43}, - [3907] = {.lex_state = 488, .external_lex_state = 43}, - [3908] = {.lex_state = 275, .external_lex_state = 65}, - [3909] = {.lex_state = 275, .external_lex_state = 65}, - [3910] = {.lex_state = 488, .external_lex_state = 43}, - [3911] = {.lex_state = 275, .external_lex_state = 65}, - [3912] = {.lex_state = 275, .external_lex_state = 65}, - [3913] = {.lex_state = 293}, - [3914] = {.lex_state = 275, .external_lex_state = 65}, - [3915] = {.lex_state = 66, .external_lex_state = 43}, - [3916] = {.lex_state = 66, .external_lex_state = 43}, - [3917] = {.lex_state = 67, .external_lex_state = 43}, - [3918] = {.lex_state = 275, .external_lex_state = 65}, - [3919] = {.lex_state = 487, .external_lex_state = 43}, - [3920] = {.lex_state = 66, .external_lex_state = 43}, - [3921] = {.lex_state = 66, .external_lex_state = 43}, - [3922] = {.lex_state = 487, .external_lex_state = 43}, - [3923] = {.lex_state = 488, .external_lex_state = 43}, - [3924] = {.lex_state = 293}, - [3925] = {.lex_state = 293}, - [3926] = {.lex_state = 488, .external_lex_state = 43}, - [3927] = {.lex_state = 66, .external_lex_state = 43}, - [3928] = {.lex_state = 66, .external_lex_state = 43}, - [3929] = {.lex_state = 66, .external_lex_state = 43}, - [3930] = {.lex_state = 66, .external_lex_state = 43}, - [3931] = {.lex_state = 66, .external_lex_state = 43}, - [3932] = {.lex_state = 66, .external_lex_state = 43}, - [3933] = {.lex_state = 293}, - [3934] = {.lex_state = 293}, - [3935] = {.lex_state = 488, .external_lex_state = 43}, - [3936] = {.lex_state = 293}, - [3937] = {.lex_state = 488, .external_lex_state = 43}, - [3938] = {.lex_state = 66, .external_lex_state = 43}, - [3939] = {.lex_state = 488, .external_lex_state = 43}, - [3940] = {.lex_state = 488, .external_lex_state = 43}, - [3941] = {.lex_state = 66, .external_lex_state = 43}, - [3942] = {.lex_state = 66, .external_lex_state = 43}, - [3943] = {.lex_state = 66, .external_lex_state = 43}, - [3944] = {.lex_state = 66, .external_lex_state = 43}, - [3945] = {.lex_state = 66, .external_lex_state = 43}, - [3946] = {.lex_state = 66, .external_lex_state = 43}, - [3947] = {.lex_state = 66, .external_lex_state = 43}, - [3948] = {.lex_state = 66, .external_lex_state = 43}, - [3949] = {.lex_state = 487, .external_lex_state = 43}, - [3950] = {.lex_state = 488, .external_lex_state = 43}, - [3951] = {.lex_state = 66, .external_lex_state = 43}, - [3952] = {.lex_state = 66, .external_lex_state = 43}, - [3953] = {.lex_state = 488, .external_lex_state = 43}, - [3954] = {.lex_state = 488, .external_lex_state = 43}, - [3955] = {.lex_state = 66, .external_lex_state = 43}, - [3956] = {.lex_state = 66, .external_lex_state = 43}, - [3957] = {.lex_state = 66, .external_lex_state = 43}, - [3958] = {.lex_state = 66, .external_lex_state = 43}, - [3959] = {.lex_state = 66, .external_lex_state = 43}, - [3960] = {.lex_state = 488, .external_lex_state = 43}, - [3961] = {.lex_state = 488, .external_lex_state = 43}, - [3962] = {.lex_state = 66, .external_lex_state = 43}, - [3963] = {.lex_state = 488, .external_lex_state = 43}, - [3964] = {.lex_state = 66, .external_lex_state = 43}, - [3965] = {.lex_state = 66, .external_lex_state = 43}, - [3966] = {.lex_state = 66, .external_lex_state = 43}, - [3967] = {.lex_state = 488, .external_lex_state = 43}, - [3968] = {.lex_state = 66, .external_lex_state = 43}, - [3969] = {.lex_state = 488, .external_lex_state = 43}, - [3970] = {.lex_state = 488, .external_lex_state = 43}, - [3971] = {.lex_state = 488, .external_lex_state = 43}, - [3972] = {.lex_state = 66, .external_lex_state = 43}, - [3973] = {.lex_state = 219, .external_lex_state = 46}, - [3974] = {.lex_state = 66, .external_lex_state = 43}, - [3975] = {.lex_state = 487, .external_lex_state = 43}, - [3976] = {.lex_state = 488, .external_lex_state = 43}, - [3977] = {.lex_state = 488, .external_lex_state = 43}, - [3978] = {.lex_state = 488, .external_lex_state = 43}, - [3979] = {.lex_state = 488, .external_lex_state = 43}, - [3980] = {.lex_state = 66, .external_lex_state = 43}, - [3981] = {.lex_state = 488, .external_lex_state = 43}, - [3982] = {.lex_state = 293}, - [3983] = {.lex_state = 66, .external_lex_state = 43}, - [3984] = {.lex_state = 487, .external_lex_state = 43}, - [3985] = {.lex_state = 487, .external_lex_state = 43}, - [3986] = {.lex_state = 487, .external_lex_state = 43}, - [3987] = {.lex_state = 488, .external_lex_state = 43}, - [3988] = {.lex_state = 66, .external_lex_state = 43}, - [3989] = {.lex_state = 488, .external_lex_state = 43}, - [3990] = {.lex_state = 66, .external_lex_state = 43}, - [3991] = {.lex_state = 66, .external_lex_state = 43}, - [3992] = {.lex_state = 293}, - [3993] = {.lex_state = 66, .external_lex_state = 43}, - [3994] = {.lex_state = 488, .external_lex_state = 43}, - [3995] = {.lex_state = 293}, - [3996] = {.lex_state = 293}, - [3997] = {.lex_state = 488, .external_lex_state = 43}, - [3998] = {.lex_state = 488, .external_lex_state = 43}, - [3999] = {.lex_state = 66, .external_lex_state = 43}, - [4000] = {.lex_state = 66, .external_lex_state = 43}, - [4001] = {.lex_state = 488, .external_lex_state = 43}, - [4002] = {.lex_state = 66, .external_lex_state = 43}, - [4003] = {.lex_state = 66, .external_lex_state = 43}, - [4004] = {.lex_state = 66, .external_lex_state = 43}, - [4005] = {.lex_state = 488, .external_lex_state = 43}, - [4006] = {.lex_state = 488, .external_lex_state = 43}, - [4007] = {.lex_state = 487, .external_lex_state = 43}, - [4008] = {.lex_state = 488, .external_lex_state = 43}, - [4009] = {.lex_state = 488, .external_lex_state = 43}, - [4010] = {.lex_state = 488, .external_lex_state = 43}, - [4011] = {.lex_state = 487, .external_lex_state = 43}, - [4012] = {.lex_state = 488, .external_lex_state = 43}, - [4013] = {.lex_state = 488, .external_lex_state = 43}, - [4014] = {.lex_state = 66, .external_lex_state = 43}, - [4015] = {.lex_state = 66, .external_lex_state = 43}, - [4016] = {.lex_state = 487, .external_lex_state = 61}, - [4017] = {.lex_state = 488, .external_lex_state = 43}, - [4018] = {.lex_state = 487, .external_lex_state = 61}, - [4019] = {.lex_state = 488, .external_lex_state = 43}, - [4020] = {.lex_state = 488, .external_lex_state = 43}, - [4021] = {.lex_state = 488, .external_lex_state = 43}, - [4022] = {.lex_state = 66, .external_lex_state = 43}, - [4023] = {.lex_state = 66, .external_lex_state = 43}, - [4024] = {.lex_state = 66, .external_lex_state = 43}, - [4025] = {.lex_state = 66, .external_lex_state = 43}, - [4026] = {.lex_state = 488, .external_lex_state = 43}, - [4027] = {.lex_state = 487, .external_lex_state = 61}, - [4028] = {.lex_state = 487, .external_lex_state = 61}, - [4029] = {.lex_state = 487, .external_lex_state = 61}, - [4030] = {.lex_state = 487, .external_lex_state = 61}, - [4031] = {.lex_state = 487, .external_lex_state = 61}, - [4032] = {.lex_state = 487, .external_lex_state = 61}, - [4033] = {.lex_state = 488, .external_lex_state = 43}, - [4034] = {.lex_state = 487, .external_lex_state = 61}, - [4035] = {.lex_state = 66, .external_lex_state = 43}, - [4036] = {.lex_state = 487, .external_lex_state = 61}, - [4037] = {.lex_state = 66, .external_lex_state = 43}, - [4038] = {.lex_state = 66, .external_lex_state = 43}, - [4039] = {.lex_state = 488, .external_lex_state = 43}, - [4040] = {.lex_state = 219, .external_lex_state = 46}, - [4041] = {.lex_state = 488, .external_lex_state = 43}, - [4042] = {.lex_state = 488, .external_lex_state = 43}, - [4043] = {.lex_state = 487, .external_lex_state = 43}, - [4044] = {.lex_state = 488, .external_lex_state = 43}, - [4045] = {.lex_state = 66, .external_lex_state = 43}, - [4046] = {.lex_state = 487, .external_lex_state = 43}, - [4047] = {.lex_state = 66, .external_lex_state = 43}, - [4048] = {.lex_state = 488, .external_lex_state = 43}, - [4049] = {.lex_state = 66, .external_lex_state = 43}, - [4050] = {.lex_state = 488, .external_lex_state = 43}, - [4051] = {.lex_state = 66, .external_lex_state = 43}, - [4052] = {.lex_state = 487, .external_lex_state = 43}, - [4053] = {.lex_state = 66, .external_lex_state = 43}, - [4054] = {.lex_state = 488, .external_lex_state = 43}, - [4055] = {.lex_state = 66, .external_lex_state = 43}, - [4056] = {.lex_state = 488, .external_lex_state = 43}, - [4057] = {.lex_state = 488, .external_lex_state = 43}, - [4058] = {.lex_state = 488, .external_lex_state = 43}, - [4059] = {.lex_state = 488, .external_lex_state = 43}, - [4060] = {.lex_state = 488, .external_lex_state = 43}, - [4061] = {.lex_state = 488, .external_lex_state = 43}, - [4062] = {.lex_state = 488, .external_lex_state = 43}, - [4063] = {.lex_state = 488, .external_lex_state = 43}, - [4064] = {.lex_state = 488, .external_lex_state = 43}, - [4065] = {.lex_state = 488, .external_lex_state = 43}, - [4066] = {.lex_state = 66, .external_lex_state = 43}, - [4067] = {.lex_state = 66, .external_lex_state = 43}, - [4068] = {.lex_state = 66, .external_lex_state = 43}, - [4069] = {.lex_state = 66, .external_lex_state = 43}, - [4070] = {.lex_state = 66, .external_lex_state = 43}, - [4071] = {.lex_state = 282, .external_lex_state = 66}, - [4072] = {.lex_state = 219, .external_lex_state = 46}, - [4073] = {.lex_state = 488, .external_lex_state = 43}, - [4074] = {.lex_state = 487, .external_lex_state = 43}, - [4075] = {.lex_state = 488, .external_lex_state = 43}, - [4076] = {.lex_state = 488, .external_lex_state = 43}, - [4077] = {.lex_state = 209, .external_lex_state = 64}, - [4078] = {.lex_state = 209, .external_lex_state = 64}, - [4079] = {.lex_state = 67, .external_lex_state = 43}, - [4080] = {.lex_state = 209, .external_lex_state = 64}, - [4081] = {.lex_state = 209, .external_lex_state = 64}, - [4082] = {.lex_state = 209, .external_lex_state = 64}, - [4083] = {.lex_state = 487, .external_lex_state = 43}, - [4084] = {.lex_state = 282, .external_lex_state = 66}, - [4085] = {.lex_state = 488, .external_lex_state = 43}, - [4086] = {.lex_state = 67, .external_lex_state = 43}, - [4087] = {.lex_state = 487, .external_lex_state = 43}, - [4088] = {.lex_state = 282, .external_lex_state = 66}, - [4089] = {.lex_state = 487, .external_lex_state = 43}, - [4090] = {.lex_state = 487, .external_lex_state = 43}, - [4091] = {.lex_state = 487, .external_lex_state = 43}, - [4092] = {.lex_state = 487, .external_lex_state = 43}, - [4093] = {.lex_state = 487, .external_lex_state = 43}, - [4094] = {.lex_state = 487, .external_lex_state = 43}, - [4095] = {.lex_state = 487, .external_lex_state = 43}, - [4096] = {.lex_state = 488, .external_lex_state = 43}, - [4097] = {.lex_state = 487, .external_lex_state = 43}, - [4098] = {.lex_state = 282, .external_lex_state = 66}, - [4099] = {.lex_state = 488, .external_lex_state = 43}, - [4100] = {.lex_state = 282, .external_lex_state = 66}, - [4101] = {.lex_state = 487, .external_lex_state = 43}, - [4102] = {.lex_state = 282, .external_lex_state = 66}, - [4103] = {.lex_state = 487, .external_lex_state = 43}, - [4104] = {.lex_state = 487, .external_lex_state = 43}, - [4105] = {.lex_state = 67, .external_lex_state = 43}, - [4106] = {.lex_state = 488, .external_lex_state = 43}, - [4107] = {.lex_state = 67, .external_lex_state = 43}, - [4108] = {.lex_state = 487, .external_lex_state = 43}, - [4109] = {.lex_state = 487, .external_lex_state = 43}, - [4110] = {.lex_state = 66, .external_lex_state = 59}, - [4111] = {.lex_state = 282, .external_lex_state = 66}, - [4112] = {.lex_state = 270, .external_lex_state = 57}, - [4113] = {.lex_state = 270, .external_lex_state = 57}, - [4114] = {.lex_state = 292, .external_lex_state = 24}, - [4115] = {.lex_state = 292, .external_lex_state = 24}, - [4116] = {.lex_state = 292, .external_lex_state = 24}, - [4117] = {.lex_state = 293}, - [4118] = {.lex_state = 292, .external_lex_state = 24}, - [4119] = {.lex_state = 292, .external_lex_state = 24}, - [4120] = {.lex_state = 293}, - [4121] = {.lex_state = 293}, - [4122] = {.lex_state = 292, .external_lex_state = 24}, - [4123] = {.lex_state = 293}, - [4124] = {.lex_state = 303, .external_lex_state = 67}, - [4125] = {.lex_state = 293}, - [4126] = {.lex_state = 293}, - [4127] = {.lex_state = 293}, - [4128] = {.lex_state = 293}, - [4129] = {.lex_state = 282, .external_lex_state = 66}, - [4130] = {.lex_state = 293}, - [4131] = {.lex_state = 293}, - [4132] = {.lex_state = 293}, - [4133] = {.lex_state = 282, .external_lex_state = 66}, - [4134] = {.lex_state = 282, .external_lex_state = 66}, - [4135] = {.lex_state = 301, .external_lex_state = 68}, - [4136] = {.lex_state = 293}, - [4137] = {.lex_state = 293}, - [4138] = {.lex_state = 292, .external_lex_state = 24}, - [4139] = {.lex_state = 293}, - [4140] = {.lex_state = 293}, - [4141] = {.lex_state = 293}, - [4142] = {.lex_state = 292, .external_lex_state = 24}, - [4143] = {.lex_state = 292, .external_lex_state = 24}, - [4144] = {.lex_state = 293}, - [4145] = {.lex_state = 292, .external_lex_state = 24}, - [4146] = {.lex_state = 487, .external_lex_state = 43}, - [4147] = {.lex_state = 292, .external_lex_state = 24}, - [4148] = {.lex_state = 293}, - [4149] = {.lex_state = 66, .external_lex_state = 59}, - [4150] = {.lex_state = 293}, - [4151] = {.lex_state = 293}, - [4152] = {.lex_state = 292, .external_lex_state = 24}, - [4153] = {.lex_state = 487, .external_lex_state = 43}, - [4154] = {.lex_state = 487, .external_lex_state = 43}, - [4155] = {.lex_state = 66, .external_lex_state = 59}, - [4156] = {.lex_state = 293}, - [4157] = {.lex_state = 66, .external_lex_state = 61}, - [4158] = {.lex_state = 282, .external_lex_state = 66}, - [4159] = {.lex_state = 293}, - [4160] = {.lex_state = 293}, - [4161] = {.lex_state = 293}, - [4162] = {.lex_state = 292, .external_lex_state = 24}, - [4163] = {.lex_state = 293}, - [4164] = {.lex_state = 282, .external_lex_state = 66}, - [4165] = {.lex_state = 282, .external_lex_state = 66}, - [4166] = {.lex_state = 282, .external_lex_state = 66}, - [4167] = {.lex_state = 292, .external_lex_state = 24}, - [4168] = {.lex_state = 282, .external_lex_state = 66}, - [4169] = {.lex_state = 487, .external_lex_state = 43}, - [4170] = {.lex_state = 487, .external_lex_state = 43}, - [4171] = {.lex_state = 282, .external_lex_state = 66}, - [4172] = {.lex_state = 487, .external_lex_state = 43}, - [4173] = {.lex_state = 293}, - [4174] = {.lex_state = 487, .external_lex_state = 43}, - [4175] = {.lex_state = 292, .external_lex_state = 24}, - [4176] = {.lex_state = 293}, - [4177] = {.lex_state = 282, .external_lex_state = 66}, - [4178] = {.lex_state = 282, .external_lex_state = 66}, - [4179] = {.lex_state = 282, .external_lex_state = 66}, - [4180] = {.lex_state = 293}, - [4181] = {.lex_state = 293}, - [4182] = {.lex_state = 282, .external_lex_state = 66}, - [4183] = {.lex_state = 293}, - [4184] = {.lex_state = 293}, - [4185] = {.lex_state = 293}, - [4186] = {.lex_state = 293}, - [4187] = {.lex_state = 293}, - [4188] = {.lex_state = 293}, - [4189] = {.lex_state = 293}, - [4190] = {.lex_state = 293}, - [4191] = {.lex_state = 66, .external_lex_state = 39}, - [4192] = {.lex_state = 66, .external_lex_state = 59}, - [4193] = {.lex_state = 293}, - [4194] = {.lex_state = 270, .external_lex_state = 57}, - [4195] = {.lex_state = 292, .external_lex_state = 24}, - [4196] = {.lex_state = 292, .external_lex_state = 24}, - [4197] = {.lex_state = 293}, - [4198] = {.lex_state = 282, .external_lex_state = 66}, - [4199] = {.lex_state = 66, .external_lex_state = 59}, - [4200] = {.lex_state = 282, .external_lex_state = 66}, - [4201] = {.lex_state = 66, .external_lex_state = 39}, - [4202] = {.lex_state = 292, .external_lex_state = 24}, - [4203] = {.lex_state = 292, .external_lex_state = 24}, - [4204] = {.lex_state = 292, .external_lex_state = 24}, - [4205] = {.lex_state = 292, .external_lex_state = 24}, - [4206] = {.lex_state = 487, .external_lex_state = 43}, - [4207] = {.lex_state = 292, .external_lex_state = 24}, - [4208] = {.lex_state = 282, .external_lex_state = 66}, - [4209] = {.lex_state = 292, .external_lex_state = 24}, - [4210] = {.lex_state = 282, .external_lex_state = 66}, - [4211] = {.lex_state = 282, .external_lex_state = 66}, - [4212] = {.lex_state = 292, .external_lex_state = 24}, - [4213] = {.lex_state = 487, .external_lex_state = 43}, - [4214] = {.lex_state = 279, .external_lex_state = 24}, - [4215] = {.lex_state = 279, .external_lex_state = 24}, - [4216] = {.lex_state = 293, .external_lex_state = 54}, - [4217] = {.lex_state = 185, .external_lex_state = 46}, - [4218] = {.lex_state = 279, .external_lex_state = 24}, - [4219] = {.lex_state = 279, .external_lex_state = 24}, - [4220] = {.lex_state = 66, .external_lex_state = 43}, - [4221] = {.lex_state = 279, .external_lex_state = 25}, - [4222] = {.lex_state = 66, .external_lex_state = 43}, - [4223] = {.lex_state = 279, .external_lex_state = 24}, - [4224] = {.lex_state = 66, .external_lex_state = 43}, - [4225] = {.lex_state = 279, .external_lex_state = 24}, - [4226] = {.lex_state = 279, .external_lex_state = 24}, - [4227] = {.lex_state = 66, .external_lex_state = 43}, - [4228] = {.lex_state = 66, .external_lex_state = 43}, - [4229] = {.lex_state = 303, .external_lex_state = 67}, - [4230] = {.lex_state = 279, .external_lex_state = 24}, - [4231] = {.lex_state = 279, .external_lex_state = 24}, - [4232] = {.lex_state = 279, .external_lex_state = 24}, - [4233] = {.lex_state = 279, .external_lex_state = 24}, - [4234] = {.lex_state = 303, .external_lex_state = 68}, - [4235] = {.lex_state = 279, .external_lex_state = 24}, - [4236] = {.lex_state = 279, .external_lex_state = 24}, - [4237] = {.lex_state = 279, .external_lex_state = 24}, - [4238] = {.lex_state = 303, .external_lex_state = 67}, - [4239] = {.lex_state = 279, .external_lex_state = 24}, - [4240] = {.lex_state = 293, .external_lex_state = 54}, - [4241] = {.lex_state = 279, .external_lex_state = 24}, - [4242] = {.lex_state = 279, .external_lex_state = 24}, - [4243] = {.lex_state = 279, .external_lex_state = 24}, - [4244] = {.lex_state = 279, .external_lex_state = 24}, - [4245] = {.lex_state = 279, .external_lex_state = 24}, - [4246] = {.lex_state = 66, .external_lex_state = 43}, - [4247] = {.lex_state = 279, .external_lex_state = 24}, - [4248] = {.lex_state = 279, .external_lex_state = 24}, - [4249] = {.lex_state = 303, .external_lex_state = 68}, - [4250] = {.lex_state = 279, .external_lex_state = 24}, - [4251] = {.lex_state = 279, .external_lex_state = 24}, - [4252] = {.lex_state = 293, .external_lex_state = 54}, - [4253] = {.lex_state = 279, .external_lex_state = 24}, - [4254] = {.lex_state = 279, .external_lex_state = 24}, - [4255] = {.lex_state = 279, .external_lex_state = 24}, - [4256] = {.lex_state = 279, .external_lex_state = 24}, - [4257] = {.lex_state = 279, .external_lex_state = 24}, - [4258] = {.lex_state = 279, .external_lex_state = 24}, - [4259] = {.lex_state = 279, .external_lex_state = 24}, - [4260] = {.lex_state = 279, .external_lex_state = 24}, - [4261] = {.lex_state = 293, .external_lex_state = 53}, - [4262] = {.lex_state = 303, .external_lex_state = 67}, - [4263] = {.lex_state = 303, .external_lex_state = 67}, - [4264] = {.lex_state = 279, .external_lex_state = 24}, - [4265] = {.lex_state = 66, .external_lex_state = 61}, - [4266] = {.lex_state = 303, .external_lex_state = 67}, - [4267] = {.lex_state = 293, .external_lex_state = 54}, - [4268] = {.lex_state = 303, .external_lex_state = 67}, - [4269] = {.lex_state = 66, .external_lex_state = 61}, - [4270] = {.lex_state = 279, .external_lex_state = 24}, - [4271] = {.lex_state = 279, .external_lex_state = 24}, - [4272] = {.lex_state = 279, .external_lex_state = 24}, - [4273] = {.lex_state = 279, .external_lex_state = 24}, - [4274] = {.lex_state = 303, .external_lex_state = 67}, - [4275] = {.lex_state = 279, .external_lex_state = 25}, - [4276] = {.lex_state = 279, .external_lex_state = 24}, - [4277] = {.lex_state = 66, .external_lex_state = 61}, - [4278] = {.lex_state = 279, .external_lex_state = 24}, - [4279] = {.lex_state = 279, .external_lex_state = 24}, - [4280] = {.lex_state = 66, .external_lex_state = 61}, - [4281] = {.lex_state = 279, .external_lex_state = 24}, - [4282] = {.lex_state = 279, .external_lex_state = 24}, - [4283] = {.lex_state = 279, .external_lex_state = 24}, - [4284] = {.lex_state = 279, .external_lex_state = 24}, - [4285] = {.lex_state = 293, .external_lex_state = 54}, - [4286] = {.lex_state = 293, .external_lex_state = 53}, - [4287] = {.lex_state = 303, .external_lex_state = 67}, - [4288] = {.lex_state = 303, .external_lex_state = 67}, - [4289] = {.lex_state = 301, .external_lex_state = 69}, - [4290] = {.lex_state = 279, .external_lex_state = 24}, - [4291] = {.lex_state = 279, .external_lex_state = 24}, - [4292] = {.lex_state = 303, .external_lex_state = 67}, - [4293] = {.lex_state = 279, .external_lex_state = 24}, - [4294] = {.lex_state = 279, .external_lex_state = 24}, - [4295] = {.lex_state = 279, .external_lex_state = 24}, - [4296] = {.lex_state = 279, .external_lex_state = 24}, - [4297] = {.lex_state = 279, .external_lex_state = 24}, - [4298] = {.lex_state = 279, .external_lex_state = 24}, - [4299] = {.lex_state = 303, .external_lex_state = 67}, - [4300] = {.lex_state = 486, .external_lex_state = 70}, - [4301] = {.lex_state = 279, .external_lex_state = 24}, - [4302] = {.lex_state = 279, .external_lex_state = 24}, - [4303] = {.lex_state = 66, .external_lex_state = 61}, - [4304] = {.lex_state = 303, .external_lex_state = 68}, - [4305] = {.lex_state = 66, .external_lex_state = 61}, - [4306] = {.lex_state = 66, .external_lex_state = 61}, - [4307] = {.lex_state = 279, .external_lex_state = 24}, - [4308] = {.lex_state = 279, .external_lex_state = 24}, - [4309] = {.lex_state = 279, .external_lex_state = 24}, - [4310] = {.lex_state = 303, .external_lex_state = 68}, - [4311] = {.lex_state = 66, .external_lex_state = 61}, - [4312] = {.lex_state = 303, .external_lex_state = 68}, - [4313] = {.lex_state = 279, .external_lex_state = 24}, - [4314] = {.lex_state = 279, .external_lex_state = 24}, - [4315] = {.lex_state = 279, .external_lex_state = 24}, - [4316] = {.lex_state = 66, .external_lex_state = 61}, - [4317] = {.lex_state = 279, .external_lex_state = 24}, - [4318] = {.lex_state = 279, .external_lex_state = 24}, - [4319] = {.lex_state = 279, .external_lex_state = 24}, - [4320] = {.lex_state = 279, .external_lex_state = 24}, - [4321] = {.lex_state = 66, .external_lex_state = 61}, - [4322] = {.lex_state = 303, .external_lex_state = 67}, - [4323] = {.lex_state = 303, .external_lex_state = 68}, - [4324] = {.lex_state = 303, .external_lex_state = 68}, - [4325] = {.lex_state = 303, .external_lex_state = 68}, - [4326] = {.lex_state = 293, .external_lex_state = 57}, - [4327] = {.lex_state = 486, .external_lex_state = 70}, - [4328] = {.lex_state = 293, .external_lex_state = 54}, - [4329] = {.lex_state = 303, .external_lex_state = 69}, - [4330] = {.lex_state = 303, .external_lex_state = 69}, - [4331] = {.lex_state = 303, .external_lex_state = 68}, - [4332] = {.lex_state = 303, .external_lex_state = 69}, - [4333] = {.lex_state = 303, .external_lex_state = 68}, - [4334] = {.lex_state = 303, .external_lex_state = 69}, - [4335] = {.lex_state = 303, .external_lex_state = 67}, - [4336] = {.lex_state = 303, .external_lex_state = 68}, - [4337] = {.lex_state = 303, .external_lex_state = 68}, - [4338] = {.lex_state = 303, .external_lex_state = 68}, - [4339] = {.lex_state = 486, .external_lex_state = 70}, - [4340] = {.lex_state = 303, .external_lex_state = 68}, - [4341] = {.lex_state = 293, .external_lex_state = 54}, - [4342] = {.lex_state = 301, .external_lex_state = 53}, - [4343] = {.lex_state = 303, .external_lex_state = 67}, - [4344] = {.lex_state = 303, .external_lex_state = 69}, - [4345] = {.lex_state = 303, .external_lex_state = 69}, - [4346] = {.lex_state = 303, .external_lex_state = 67}, - [4347] = {.lex_state = 303, .external_lex_state = 69}, - [4348] = {.lex_state = 303, .external_lex_state = 69}, - [4349] = {.lex_state = 279, .external_lex_state = 25}, - [4350] = {.lex_state = 303, .external_lex_state = 69}, - [4351] = {.lex_state = 303, .external_lex_state = 69}, - [4352] = {.lex_state = 303, .external_lex_state = 67}, - [4353] = {.lex_state = 303, .external_lex_state = 68}, - [4354] = {.lex_state = 303, .external_lex_state = 67}, - [4355] = {.lex_state = 185, .external_lex_state = 46}, - [4356] = {.lex_state = 303, .external_lex_state = 69}, - [4357] = {.lex_state = 293, .external_lex_state = 54}, - [4358] = {.lex_state = 66, .external_lex_state = 43}, - [4359] = {.lex_state = 303, .external_lex_state = 68}, - [4360] = {.lex_state = 303, .external_lex_state = 67}, - [4361] = {.lex_state = 303, .external_lex_state = 67}, - [4362] = {.lex_state = 303, .external_lex_state = 67}, - [4363] = {.lex_state = 303, .external_lex_state = 68}, - [4364] = {.lex_state = 293, .external_lex_state = 54}, - [4365] = {.lex_state = 303, .external_lex_state = 67}, - [4366] = {.lex_state = 303, .external_lex_state = 68}, - [4367] = {.lex_state = 293, .external_lex_state = 57}, - [4368] = {.lex_state = 301, .external_lex_state = 53}, - [4369] = {.lex_state = 303, .external_lex_state = 68}, - [4370] = {.lex_state = 303, .external_lex_state = 67}, - [4371] = {.lex_state = 303, .external_lex_state = 68}, - [4372] = {.lex_state = 293, .external_lex_state = 57}, - [4373] = {.lex_state = 293, .external_lex_state = 57}, - [4374] = {.lex_state = 303, .external_lex_state = 68}, - [4375] = {.lex_state = 293, .external_lex_state = 54}, - [4376] = {.lex_state = 303, .external_lex_state = 68}, - [4377] = {.lex_state = 66, .external_lex_state = 43}, - [4378] = {.lex_state = 303, .external_lex_state = 68}, - [4379] = {.lex_state = 293, .external_lex_state = 54}, - [4380] = {.lex_state = 303, .external_lex_state = 68}, - [4381] = {.lex_state = 303, .external_lex_state = 67}, - [4382] = {.lex_state = 303, .external_lex_state = 67}, - [4383] = {.lex_state = 303, .external_lex_state = 67}, - [4384] = {.lex_state = 303, .external_lex_state = 67}, - [4385] = {.lex_state = 293, .external_lex_state = 57}, - [4386] = {.lex_state = 303, .external_lex_state = 67}, - [4387] = {.lex_state = 486, .external_lex_state = 70}, - [4388] = {.lex_state = 303, .external_lex_state = 67}, - [4389] = {.lex_state = 303, .external_lex_state = 67}, - [4390] = {.lex_state = 303, .external_lex_state = 67}, - [4391] = {.lex_state = 293, .external_lex_state = 54}, - [4392] = {.lex_state = 303, .external_lex_state = 69}, - [4393] = {.lex_state = 301, .external_lex_state = 53}, - [4394] = {.lex_state = 303, .external_lex_state = 69}, - [4395] = {.lex_state = 303, .external_lex_state = 69}, - [4396] = {.lex_state = 303, .external_lex_state = 69}, - [4397] = {.lex_state = 66, .external_lex_state = 43}, - [4398] = {.lex_state = 303, .external_lex_state = 69}, - [4399] = {.lex_state = 303, .external_lex_state = 69}, - [4400] = {.lex_state = 66, .external_lex_state = 43}, - [4401] = {.lex_state = 293, .external_lex_state = 54}, - [4402] = {.lex_state = 303, .external_lex_state = 69}, - [4403] = {.lex_state = 303, .external_lex_state = 69}, - [4404] = {.lex_state = 66, .external_lex_state = 43}, - [4405] = {.lex_state = 303, .external_lex_state = 69}, - [4406] = {.lex_state = 303, .external_lex_state = 69}, - [4407] = {.lex_state = 303, .external_lex_state = 69}, - [4408] = {.lex_state = 303, .external_lex_state = 69}, - [4409] = {.lex_state = 66, .external_lex_state = 43}, - [4410] = {.lex_state = 303, .external_lex_state = 69}, - [4411] = {.lex_state = 301, .external_lex_state = 57}, - [4412] = {.lex_state = 303, .external_lex_state = 69}, - [4413] = {.lex_state = 301, .external_lex_state = 57}, - [4414] = {.lex_state = 293, .external_lex_state = 57}, - [4415] = {.lex_state = 66, .external_lex_state = 43}, - [4416] = {.lex_state = 303, .external_lex_state = 69}, - [4417] = {.lex_state = 293, .external_lex_state = 57}, - [4418] = {.lex_state = 294, .external_lex_state = 71}, - [4419] = {.lex_state = 303, .external_lex_state = 69}, - [4420] = {.lex_state = 303, .external_lex_state = 69}, - [4421] = {.lex_state = 301, .external_lex_state = 57}, - [4422] = {.lex_state = 301, .external_lex_state = 57}, - [4423] = {.lex_state = 303, .external_lex_state = 69}, - [4424] = {.lex_state = 301, .external_lex_state = 57}, - [4425] = {.lex_state = 66, .external_lex_state = 43}, - [4426] = {.lex_state = 303, .external_lex_state = 69}, - [4427] = {.lex_state = 66, .external_lex_state = 43}, - [4428] = {.lex_state = 293, .external_lex_state = 54}, - [4429] = {.lex_state = 293, .external_lex_state = 57}, - [4430] = {.lex_state = 293, .external_lex_state = 54}, - [4431] = {.lex_state = 293, .external_lex_state = 54}, - [4432] = {.lex_state = 293, .external_lex_state = 57}, - [4433] = {.lex_state = 181, .external_lex_state = 58}, - [4434] = {.lex_state = 293, .external_lex_state = 57}, - [4435] = {.lex_state = 293, .external_lex_state = 57}, - [4436] = {.lex_state = 293, .external_lex_state = 57}, - [4437] = {.lex_state = 181, .external_lex_state = 58}, - [4438] = {.lex_state = 293, .external_lex_state = 54}, - [4439] = {.lex_state = 293, .external_lex_state = 54}, - [4440] = {.lex_state = 293, .external_lex_state = 57}, - [4441] = {.lex_state = 293, .external_lex_state = 57}, - [4442] = {.lex_state = 293, .external_lex_state = 57}, - [4443] = {.lex_state = 293, .external_lex_state = 57}, - [4444] = {.lex_state = 293, .external_lex_state = 54}, - [4445] = {.lex_state = 270, .external_lex_state = 57}, - [4446] = {.lex_state = 293, .external_lex_state = 57}, - [4447] = {.lex_state = 293, .external_lex_state = 57}, - [4448] = {.lex_state = 293, .external_lex_state = 54}, - [4449] = {.lex_state = 293, .external_lex_state = 54}, - [4450] = {.lex_state = 293, .external_lex_state = 54}, - [4451] = {.lex_state = 293, .external_lex_state = 54}, - [4452] = {.lex_state = 293, .external_lex_state = 54}, - [4453] = {.lex_state = 68, .external_lex_state = 72}, - [4454] = {.lex_state = 293, .external_lex_state = 54}, - [4455] = {.lex_state = 293, .external_lex_state = 54}, - [4456] = {.lex_state = 270, .external_lex_state = 57}, - [4457] = {.lex_state = 293, .external_lex_state = 53}, - [4458] = {.lex_state = 293, .external_lex_state = 54}, - [4459] = {.lex_state = 293, .external_lex_state = 54}, - [4460] = {.lex_state = 270, .external_lex_state = 57}, - [4461] = {.lex_state = 270, .external_lex_state = 57}, - [4462] = {.lex_state = 270, .external_lex_state = 57}, - [4463] = {.lex_state = 293, .external_lex_state = 54}, - [4464] = {.lex_state = 293, .external_lex_state = 57}, - [4465] = {.lex_state = 293, .external_lex_state = 53}, - [4466] = {.lex_state = 293, .external_lex_state = 54}, - [4467] = {.lex_state = 293, .external_lex_state = 54}, - [4468] = {.lex_state = 293, .external_lex_state = 54}, - [4469] = {.lex_state = 293, .external_lex_state = 54}, - [4470] = {.lex_state = 293, .external_lex_state = 54}, - [4471] = {.lex_state = 293, .external_lex_state = 54}, - [4472] = {.lex_state = 301, .external_lex_state = 57}, - [4473] = {.lex_state = 293, .external_lex_state = 54}, - [4474] = {.lex_state = 293, .external_lex_state = 57}, - [4475] = {.lex_state = 293, .external_lex_state = 54}, - [4476] = {.lex_state = 270, .external_lex_state = 57}, - [4477] = {.lex_state = 293, .external_lex_state = 57}, - [4478] = {.lex_state = 293, .external_lex_state = 54}, - [4479] = {.lex_state = 293, .external_lex_state = 53}, - [4480] = {.lex_state = 293, .external_lex_state = 57}, - [4481] = {.lex_state = 270, .external_lex_state = 57}, - [4482] = {.lex_state = 293, .external_lex_state = 57}, - [4483] = {.lex_state = 293, .external_lex_state = 57}, - [4484] = {.lex_state = 68, .external_lex_state = 62}, - [4485] = {.lex_state = 293, .external_lex_state = 57}, - [4486] = {.lex_state = 293, .external_lex_state = 57}, - [4487] = {.lex_state = 293, .external_lex_state = 57}, - [4488] = {.lex_state = 68, .external_lex_state = 72}, - [4489] = {.lex_state = 68, .external_lex_state = 72}, - [4490] = {.lex_state = 293, .external_lex_state = 57}, - [4491] = {.lex_state = 293, .external_lex_state = 57}, - [4492] = {.lex_state = 68, .external_lex_state = 72}, - [4493] = {.lex_state = 68, .external_lex_state = 62}, - [4494] = {.lex_state = 293, .external_lex_state = 57}, - [4495] = {.lex_state = 293, .external_lex_state = 57}, - [4496] = {.lex_state = 68, .external_lex_state = 62}, - [4497] = {.lex_state = 293, .external_lex_state = 57}, - [4498] = {.lex_state = 293, .external_lex_state = 57}, - [4499] = {.lex_state = 68, .external_lex_state = 72}, - [4500] = {.lex_state = 68, .external_lex_state = 72}, - [4501] = {.lex_state = 293, .external_lex_state = 57}, - [4502] = {.lex_state = 293, .external_lex_state = 57}, - [4503] = {.lex_state = 68, .external_lex_state = 72}, - [4504] = {.lex_state = 293, .external_lex_state = 57}, - [4505] = {.lex_state = 68, .external_lex_state = 62}, - [4506] = {.lex_state = 293, .external_lex_state = 57}, - [4507] = {.lex_state = 293, .external_lex_state = 57}, - [4508] = {.lex_state = 293, .external_lex_state = 57}, - [4509] = {.lex_state = 293, .external_lex_state = 57}, - [4510] = {.lex_state = 293, .external_lex_state = 57}, - [4511] = {.lex_state = 293, .external_lex_state = 57}, - [4512] = {.lex_state = 293, .external_lex_state = 57}, - [4513] = {.lex_state = 293, .external_lex_state = 57}, - [4514] = {.lex_state = 293, .external_lex_state = 57}, - [4515] = {.lex_state = 293, .external_lex_state = 57}, - [4516] = {.lex_state = 293, .external_lex_state = 57}, - [4517] = {.lex_state = 293, .external_lex_state = 57}, - [4518] = {.lex_state = 293, .external_lex_state = 57}, - [4519] = {.lex_state = 293, .external_lex_state = 57}, - [4520] = {.lex_state = 293, .external_lex_state = 57}, - [4521] = {.lex_state = 293, .external_lex_state = 57}, - [4522] = {.lex_state = 293, .external_lex_state = 57}, - [4523] = {.lex_state = 293, .external_lex_state = 57}, - [4524] = {.lex_state = 293, .external_lex_state = 57}, - [4525] = {.lex_state = 68, .external_lex_state = 72}, - [4526] = {.lex_state = 68, .external_lex_state = 62}, - [4527] = {.lex_state = 293, .external_lex_state = 57}, - [4528] = {.lex_state = 293, .external_lex_state = 57}, - [4529] = {.lex_state = 293, .external_lex_state = 57}, - [4530] = {.lex_state = 293, .external_lex_state = 57}, - [4531] = {.lex_state = 293, .external_lex_state = 57}, - [4532] = {.lex_state = 293, .external_lex_state = 57}, - [4533] = {.lex_state = 293, .external_lex_state = 57}, - [4534] = {.lex_state = 293, .external_lex_state = 57}, - [4535] = {.lex_state = 293, .external_lex_state = 57}, - [4536] = {.lex_state = 293, .external_lex_state = 57}, - [4537] = {.lex_state = 293, .external_lex_state = 57}, - [4538] = {.lex_state = 293, .external_lex_state = 57}, - [4539] = {.lex_state = 293, .external_lex_state = 57}, - [4540] = {.lex_state = 293, .external_lex_state = 57}, - [4541] = {.lex_state = 293, .external_lex_state = 57}, - [4542] = {.lex_state = 293, .external_lex_state = 57}, - [4543] = {.lex_state = 293, .external_lex_state = 57}, - [4544] = {.lex_state = 68, .external_lex_state = 62}, - [4545] = {.lex_state = 293, .external_lex_state = 57}, - [4546] = {.lex_state = 293, .external_lex_state = 57}, - [4547] = {.lex_state = 293, .external_lex_state = 57}, - [4548] = {.lex_state = 293, .external_lex_state = 57}, - [4549] = {.lex_state = 294, .external_lex_state = 73}, - [4550] = {.lex_state = 68, .external_lex_state = 62}, - [4551] = {.lex_state = 293, .external_lex_state = 57}, - [4552] = {.lex_state = 68, .external_lex_state = 62}, - [4553] = {.lex_state = 68, .external_lex_state = 72}, - [4554] = {.lex_state = 68, .external_lex_state = 72}, - [4555] = {.lex_state = 68, .external_lex_state = 72}, - [4556] = {.lex_state = 68, .external_lex_state = 72}, - [4557] = {.lex_state = 68, .external_lex_state = 72}, - [4558] = {.lex_state = 68, .external_lex_state = 72}, - [4559] = {.lex_state = 68, .external_lex_state = 72}, - [4560] = {.lex_state = 68, .external_lex_state = 72}, - [4561] = {.lex_state = 68, .external_lex_state = 72}, - [4562] = {.lex_state = 68, .external_lex_state = 72}, - [4563] = {.lex_state = 68, .external_lex_state = 72}, - [4564] = {.lex_state = 68, .external_lex_state = 72}, - [4565] = {.lex_state = 68, .external_lex_state = 72}, - [4566] = {.lex_state = 68, .external_lex_state = 72}, - [4567] = {.lex_state = 68, .external_lex_state = 62}, - [4568] = {.lex_state = 68, .external_lex_state = 72}, - [4569] = {.lex_state = 68, .external_lex_state = 62}, - [4570] = {.lex_state = 274, .external_lex_state = 56}, - [4571] = {.lex_state = 68, .external_lex_state = 72}, - [4572] = {.lex_state = 274, .external_lex_state = 56}, - [4573] = {.lex_state = 68, .external_lex_state = 62}, - [4574] = {.lex_state = 68, .external_lex_state = 72}, - [4575] = {.lex_state = 68, .external_lex_state = 62}, - [4576] = {.lex_state = 68, .external_lex_state = 72}, - [4577] = {.lex_state = 68, .external_lex_state = 72}, - [4578] = {.lex_state = 298}, - [4579] = {.lex_state = 298}, - [4580] = {.lex_state = 298}, - [4581] = {.lex_state = 298}, - [4582] = {.lex_state = 298}, - [4583] = {.lex_state = 298}, - [4584] = {.lex_state = 298}, - [4585] = {.lex_state = 298}, - [4586] = {.lex_state = 298}, - [4587] = {.lex_state = 298}, - [4588] = {.lex_state = 298}, - [4589] = {.lex_state = 298}, - [4590] = {.lex_state = 298}, - [4591] = {.lex_state = 298}, - [4592] = {.lex_state = 298}, - [4593] = {.lex_state = 298}, - [4594] = {.lex_state = 298}, - [4595] = {.lex_state = 298}, - [4596] = {.lex_state = 298}, - [4597] = {.lex_state = 298}, - [4598] = {.lex_state = 298}, - [4599] = {.lex_state = 298}, - [4600] = {.lex_state = 298}, - [4601] = {.lex_state = 298}, - [4602] = {.lex_state = 298}, - [4603] = {.lex_state = 298}, - [4604] = {.lex_state = 298}, - [4605] = {.lex_state = 298}, - [4606] = {.lex_state = 298}, - [4607] = {.lex_state = 298}, - [4608] = {.lex_state = 298}, - [4609] = {.lex_state = 298}, - [4610] = {.lex_state = 298}, - [4611] = {.lex_state = 267}, - [4612] = {.lex_state = 298}, - [4613] = {.lex_state = 298}, - [4614] = {.lex_state = 267}, - [4615] = {.lex_state = 298}, - [4616] = {.lex_state = 298}, - [4617] = {.lex_state = 298}, - [4618] = {.lex_state = 298}, - [4619] = {.lex_state = 298}, - [4620] = {.lex_state = 298}, - [4621] = {.lex_state = 298}, - [4622] = {.lex_state = 298}, - [4623] = {.lex_state = 298}, - [4624] = {.lex_state = 298}, - [4625] = {.lex_state = 298}, - [4626] = {.lex_state = 298}, - [4627] = {.lex_state = 298}, - [4628] = {.lex_state = 298}, - [4629] = {.lex_state = 298}, - [4630] = {.lex_state = 298}, - [4631] = {.lex_state = 298}, - [4632] = {.lex_state = 298}, - [4633] = {.lex_state = 298}, - [4634] = {.lex_state = 298}, - [4635] = {.lex_state = 298}, - [4636] = {.lex_state = 298}, - [4637] = {.lex_state = 298}, - [4638] = {.lex_state = 298}, - [4639] = {.lex_state = 298}, - [4640] = {.lex_state = 298}, - [4641] = {.lex_state = 298}, - [4642] = {.lex_state = 298}, - [4643] = {.lex_state = 298}, - [4644] = {.lex_state = 298}, - [4645] = {.lex_state = 298}, - [4646] = {.lex_state = 298}, - [4647] = {.lex_state = 298}, - [4648] = {.lex_state = 298}, - [4649] = {.lex_state = 298}, - [4650] = {.lex_state = 298}, - [4651] = {.lex_state = 298}, - [4652] = {.lex_state = 298}, - [4653] = {.lex_state = 298}, - [4654] = {.lex_state = 298}, - [4655] = {.lex_state = 298}, - [4656] = {.lex_state = 298}, - [4657] = {.lex_state = 298}, - [4658] = {.lex_state = 298}, - [4659] = {.lex_state = 298}, - [4660] = {.lex_state = 298}, - [4661] = {.lex_state = 298}, - [4662] = {.lex_state = 298}, - [4663] = {.lex_state = 298}, - [4664] = {.lex_state = 298}, - [4665] = {.lex_state = 298}, - [4666] = {.lex_state = 298}, - [4667] = {.lex_state = 298}, - [4668] = {.lex_state = 298}, - [4669] = {.lex_state = 298}, - [4670] = {.lex_state = 68, .external_lex_state = 62}, - [4671] = {.lex_state = 298}, - [4672] = {.lex_state = 298}, - [4673] = {.lex_state = 298}, - [4674] = {.lex_state = 298}, - [4675] = {.lex_state = 298}, - [4676] = {.lex_state = 298}, - [4677] = {.lex_state = 298}, - [4678] = {.lex_state = 298}, - [4679] = {.lex_state = 298}, - [4680] = {.lex_state = 298}, - [4681] = {.lex_state = 298}, - [4682] = {.lex_state = 298}, - [4683] = {.lex_state = 298}, - [4684] = {.lex_state = 298}, - [4685] = {.lex_state = 298}, - [4686] = {.lex_state = 298}, - [4687] = {.lex_state = 298}, - [4688] = {.lex_state = 298}, - [4689] = {.lex_state = 298}, - [4690] = {.lex_state = 298}, - [4691] = {.lex_state = 298}, - [4692] = {.lex_state = 298}, - [4693] = {.lex_state = 298}, - [4694] = {.lex_state = 298}, - [4695] = {.lex_state = 298}, - [4696] = {.lex_state = 298}, - [4697] = {.lex_state = 298}, - [4698] = {.lex_state = 298}, - [4699] = {.lex_state = 298}, - [4700] = {.lex_state = 298}, - [4701] = {.lex_state = 298}, - [4702] = {.lex_state = 68, .external_lex_state = 62}, - [4703] = {.lex_state = 68, .external_lex_state = 62}, - [4704] = {.lex_state = 269}, - [4705] = {.lex_state = 268}, - [4706] = {.lex_state = 269}, - [4707] = {.lex_state = 268}, - [4708] = {.lex_state = 269}, - [4709] = {.lex_state = 268}, - [4710] = {.lex_state = 269}, - [4711] = {.lex_state = 268}, - [4712] = {.lex_state = 270, .external_lex_state = 74}, - [4713] = {.lex_state = 268}, - [4714] = {.lex_state = 268}, - [4715] = {.lex_state = 268}, - [4716] = {.lex_state = 268}, - [4717] = {.lex_state = 268}, - [4718] = {.lex_state = 268}, - [4719] = {.lex_state = 268}, - [4720] = {.lex_state = 268}, - [4721] = {.lex_state = 268}, - [4722] = {.lex_state = 268}, - [4723] = {.lex_state = 268}, - [4724] = {.lex_state = 268}, - [4725] = {.lex_state = 268}, - [4726] = {.lex_state = 268}, - [4727] = {.lex_state = 269}, - [4728] = {.lex_state = 269}, - [4729] = {.lex_state = 268}, - [4730] = {.lex_state = 268}, - [4731] = {.lex_state = 269}, - [4732] = {.lex_state = 268}, - [4733] = {.lex_state = 268}, - [4734] = {.lex_state = 268}, - [4735] = {.lex_state = 268}, - [4736] = {.lex_state = 268}, - [4737] = {.lex_state = 268}, - [4738] = {.lex_state = 270, .external_lex_state = 74}, - [4739] = {.lex_state = 269}, - [4740] = {.lex_state = 268}, - [4741] = {.lex_state = 268}, - [4742] = {.lex_state = 268}, - [4743] = {.lex_state = 268}, - [4744] = {.lex_state = 268}, - [4745] = {.lex_state = 268}, - [4746] = {.lex_state = 269}, - [4747] = {.lex_state = 268}, - [4748] = {.lex_state = 268}, - [4749] = {.lex_state = 268}, - [4750] = {.lex_state = 269}, - [4751] = {.lex_state = 268}, - [4752] = {.lex_state = 268}, - [4753] = {.lex_state = 268}, - [4754] = {.lex_state = 269}, - [4755] = {.lex_state = 268}, - [4756] = {.lex_state = 268}, - [4757] = {.lex_state = 268}, - [4758] = {.lex_state = 268}, - [4759] = {.lex_state = 268}, - [4760] = {.lex_state = 268}, - [4761] = {.lex_state = 268}, - [4762] = {.lex_state = 269}, - [4763] = {.lex_state = 269}, - [4764] = {.lex_state = 269}, - [4765] = {.lex_state = 269}, - [4766] = {.lex_state = 268}, - [4767] = {.lex_state = 268}, - [4768] = {.lex_state = 268}, - [4769] = {.lex_state = 268}, - [4770] = {.lex_state = 268}, - [4771] = {.lex_state = 269}, - [4772] = {.lex_state = 268}, - [4773] = {.lex_state = 268}, - [4774] = {.lex_state = 270, .external_lex_state = 74}, - [4775] = {.lex_state = 268}, - [4776] = {.lex_state = 268}, - [4777] = {.lex_state = 269}, - [4778] = {.lex_state = 268}, - [4779] = {.lex_state = 268}, - [4780] = {.lex_state = 268}, - [4781] = {.lex_state = 268}, - [4782] = {.lex_state = 269}, - [4783] = {.lex_state = 268}, - [4784] = {.lex_state = 269}, - [4785] = {.lex_state = 268}, - [4786] = {.lex_state = 268}, - [4787] = {.lex_state = 268}, - [4788] = {.lex_state = 268}, - [4789] = {.lex_state = 269}, - [4790] = {.lex_state = 269}, - [4791] = {.lex_state = 268}, - [4792] = {.lex_state = 268}, - [4793] = {.lex_state = 268}, - [4794] = {.lex_state = 269}, - [4795] = {.lex_state = 268}, - [4796] = {.lex_state = 269}, - [4797] = {.lex_state = 268}, - [4798] = {.lex_state = 268}, - [4799] = {.lex_state = 268}, - [4800] = {.lex_state = 269}, - [4801] = {.lex_state = 268}, - [4802] = {.lex_state = 270, .external_lex_state = 74}, - [4803] = {.lex_state = 268}, - [4804] = {.lex_state = 269}, - [4805] = {.lex_state = 268}, - [4806] = {.lex_state = 268}, - [4807] = {.lex_state = 268}, - [4808] = {.lex_state = 268}, - [4809] = {.lex_state = 268}, - [4810] = {.lex_state = 269}, - [4811] = {.lex_state = 268}, - [4812] = {.lex_state = 268}, - [4813] = {.lex_state = 268}, - [4814] = {.lex_state = 268}, - [4815] = {.lex_state = 268}, - [4816] = {.lex_state = 268}, - [4817] = {.lex_state = 269}, - [4818] = {.lex_state = 269}, - [4819] = {.lex_state = 269}, - [4820] = {.lex_state = 268}, - [4821] = {.lex_state = 268}, - [4822] = {.lex_state = 268}, - [4823] = {.lex_state = 268}, - [4824] = {.lex_state = 268}, - [4825] = {.lex_state = 269}, - [4826] = {.lex_state = 269}, - [4827] = {.lex_state = 268}, - [4828] = {.lex_state = 269}, - [4829] = {.lex_state = 268}, - [4830] = {.lex_state = 268}, - [4831] = {.lex_state = 268}, - [4832] = {.lex_state = 269}, - [4833] = {.lex_state = 268}, - [4834] = {.lex_state = 269}, - [4835] = {.lex_state = 269}, - [4836] = {.lex_state = 268}, - [4837] = {.lex_state = 268}, - [4838] = {.lex_state = 268}, - [4839] = {.lex_state = 268}, - [4840] = {.lex_state = 269}, - [4841] = {.lex_state = 268}, - [4842] = {.lex_state = 270, .external_lex_state = 74}, - [4843] = {.lex_state = 269}, - [4844] = {.lex_state = 268}, - [4845] = {.lex_state = 268}, - [4846] = {.lex_state = 268}, - [4847] = {.lex_state = 268}, - [4848] = {.lex_state = 268}, - [4849] = {.lex_state = 269}, - [4850] = {.lex_state = 268}, - [4851] = {.lex_state = 269}, - [4852] = {.lex_state = 269}, - [4853] = {.lex_state = 269}, - [4854] = {.lex_state = 268}, - [4855] = {.lex_state = 268}, - [4856] = {.lex_state = 268}, - [4857] = {.lex_state = 268}, - [4858] = {.lex_state = 268}, - [4859] = {.lex_state = 270, .external_lex_state = 74}, - [4860] = {.lex_state = 268}, - [4861] = {.lex_state = 268}, - [4862] = {.lex_state = 269}, - [4863] = {.lex_state = 268}, - [4864] = {.lex_state = 268}, - [4865] = {.lex_state = 269}, - [4866] = {.lex_state = 269}, - [4867] = {.lex_state = 268}, - [4868] = {.lex_state = 270, .external_lex_state = 74}, - [4869] = {.lex_state = 269}, - [4870] = {.lex_state = 269}, - [4871] = {.lex_state = 268}, - [4872] = {.lex_state = 268}, - [4873] = {.lex_state = 268}, - [4874] = {.lex_state = 268}, - [4875] = {.lex_state = 268}, - [4876] = {.lex_state = 269}, - [4877] = {.lex_state = 268}, - [4878] = {.lex_state = 270, .external_lex_state = 74}, - [4879] = {.lex_state = 293, .external_lex_state = 74}, - [4880] = {.lex_state = 293, .external_lex_state = 74}, - [4881] = {.lex_state = 293, .external_lex_state = 74}, - [4882] = {.lex_state = 293, .external_lex_state = 74}, - [4883] = {.lex_state = 271}, - [4884] = {.lex_state = 293, .external_lex_state = 74}, - [4885] = {.lex_state = 293, .external_lex_state = 74}, - [4886] = {.lex_state = 293, .external_lex_state = 74}, - [4887] = {.lex_state = 293, .external_lex_state = 74}, - [4888] = {.lex_state = 293, .external_lex_state = 74}, - [4889] = {.lex_state = 272}, - [4890] = {.lex_state = 294}, - [4891] = {.lex_state = 294}, - [4892] = {.lex_state = 294}, - [4893] = {.lex_state = 298, .external_lex_state = 75}, - [4894] = {.lex_state = 272}, - [4895] = {.lex_state = 272}, - [4896] = {.lex_state = 294}, - [4897] = {.lex_state = 294}, - [4898] = {.lex_state = 253, .external_lex_state = 76}, - [4899] = {.lex_state = 294}, - [4900] = {.lex_state = 298, .external_lex_state = 75}, - [4901] = {.lex_state = 294, .external_lex_state = 77}, - [4902] = {.lex_state = 272}, - [4903] = {.lex_state = 294}, - [4904] = {.lex_state = 298, .external_lex_state = 75}, - [4905] = {.lex_state = 298, .external_lex_state = 75}, - [4906] = {.lex_state = 272}, - [4907] = {.lex_state = 298, .external_lex_state = 75}, - [4908] = {.lex_state = 298, .external_lex_state = 75}, - [4909] = {.lex_state = 298, .external_lex_state = 75}, - [4910] = {.lex_state = 298, .external_lex_state = 75}, - [4911] = {.lex_state = 253, .external_lex_state = 76}, - [4912] = {.lex_state = 298, .external_lex_state = 75}, - [4913] = {.lex_state = 272}, - [4914] = {.lex_state = 272}, - [4915] = {.lex_state = 294}, - [4916] = {.lex_state = 298, .external_lex_state = 75}, - [4917] = {.lex_state = 298, .external_lex_state = 75}, - [4918] = {.lex_state = 253, .external_lex_state = 76}, - [4919] = {.lex_state = 294}, - [4920] = {.lex_state = 272}, - [4921] = {.lex_state = 302}, - [4922] = {.lex_state = 302}, - [4923] = {.lex_state = 294}, - [4924] = {.lex_state = 302}, - [4925] = {.lex_state = 302}, - [4926] = {.lex_state = 303}, - [4927] = {.lex_state = 298}, - [4928] = {.lex_state = 302}, - [4929] = {.lex_state = 302}, - [4930] = {.lex_state = 302}, - [4931] = {.lex_state = 298}, - [4932] = {.lex_state = 302}, - [4933] = {.lex_state = 302}, - [4934] = {.lex_state = 302}, - [4935] = {.lex_state = 69, .external_lex_state = 78}, - [4936] = {.lex_state = 270, .external_lex_state = 79}, - [4937] = {.lex_state = 506}, - [4938] = {.lex_state = 69, .external_lex_state = 78}, - [4939] = {.lex_state = 506}, - [4940] = {.lex_state = 506}, - [4941] = {.lex_state = 506}, - [4942] = {.lex_state = 69, .external_lex_state = 78}, - [4943] = {.lex_state = 506}, - [4944] = {.lex_state = 506}, - [4945] = {.lex_state = 506}, - [4946] = {.lex_state = 506}, - [4947] = {.lex_state = 506}, - [4948] = {.lex_state = 69, .external_lex_state = 78}, - [4949] = {.lex_state = 69, .external_lex_state = 78}, - [4950] = {.lex_state = 69, .external_lex_state = 78}, - [4951] = {.lex_state = 301}, - [4952] = {.lex_state = 301}, - [4953] = {.lex_state = 506}, - [4954] = {.lex_state = 69, .external_lex_state = 78}, - [4955] = {.lex_state = 506}, - [4956] = {.lex_state = 69, .external_lex_state = 78}, - [4957] = {.lex_state = 506}, - [4958] = {.lex_state = 506}, - [4959] = {.lex_state = 506}, - [4960] = {.lex_state = 506}, - [4961] = {.lex_state = 506}, - [4962] = {.lex_state = 69, .external_lex_state = 78}, - [4963] = {.lex_state = 506}, - [4964] = {.lex_state = 506}, - [4965] = {.lex_state = 506}, - [4966] = {.lex_state = 506}, - [4967] = {.lex_state = 506}, - [4968] = {.lex_state = 69, .external_lex_state = 78}, - [4969] = {.lex_state = 506}, - [4970] = {.lex_state = 506}, - [4971] = {.lex_state = 506}, - [4972] = {.lex_state = 302, .external_lex_state = 77}, - [4973] = {.lex_state = 253, .external_lex_state = 76}, - [4974] = {.lex_state = 69, .external_lex_state = 78}, - [4975] = {.lex_state = 302, .external_lex_state = 77}, - [4976] = {.lex_state = 69, .external_lex_state = 78}, - [4977] = {.lex_state = 302, .external_lex_state = 77}, - [4978] = {.lex_state = 69, .external_lex_state = 78}, - [4979] = {.lex_state = 69, .external_lex_state = 78}, - [4980] = {.lex_state = 69, .external_lex_state = 78}, - [4981] = {.lex_state = 69, .external_lex_state = 58}, - [4982] = {.lex_state = 69, .external_lex_state = 78}, - [4983] = {.lex_state = 69, .external_lex_state = 78}, - [4984] = {.lex_state = 302, .external_lex_state = 77}, - [4985] = {.lex_state = 302, .external_lex_state = 77}, - [4986] = {.lex_state = 302, .external_lex_state = 77}, - [4987] = {.lex_state = 253, .external_lex_state = 76}, - [4988] = {.lex_state = 253, .external_lex_state = 76}, - [4989] = {.lex_state = 69, .external_lex_state = 58}, - [4990] = {.lex_state = 302, .external_lex_state = 77}, - [4991] = {.lex_state = 253, .external_lex_state = 76}, - [4992] = {.lex_state = 69, .external_lex_state = 78}, - [4993] = {.lex_state = 253, .external_lex_state = 76}, - [4994] = {.lex_state = 253, .external_lex_state = 76}, - [4995] = {.lex_state = 69, .external_lex_state = 78}, - [4996] = {.lex_state = 253, .external_lex_state = 76}, - [4997] = {.lex_state = 69, .external_lex_state = 78}, - [4998] = {.lex_state = 69, .external_lex_state = 78}, - [4999] = {.lex_state = 69, .external_lex_state = 58}, - [5000] = {.lex_state = 69, .external_lex_state = 78}, - [5001] = {.lex_state = 295, .external_lex_state = 80}, - [5002] = {.lex_state = 69, .external_lex_state = 78}, - [5003] = {.lex_state = 69, .external_lex_state = 78}, - [5004] = {.lex_state = 69, .external_lex_state = 58}, - [5005] = {.lex_state = 302, .external_lex_state = 77}, - [5006] = {.lex_state = 69, .external_lex_state = 78}, - [5007] = {.lex_state = 69, .external_lex_state = 78}, - [5008] = {.lex_state = 69, .external_lex_state = 78}, - [5009] = {.lex_state = 302, .external_lex_state = 77}, - [5010] = {.lex_state = 69, .external_lex_state = 78}, - [5011] = {.lex_state = 69, .external_lex_state = 78}, - [5012] = {.lex_state = 278, .external_lex_state = 75}, - [5013] = {.lex_state = 65, .external_lex_state = 58}, - [5014] = {.lex_state = 278, .external_lex_state = 75}, - [5015] = {.lex_state = 65, .external_lex_state = 58}, - [5016] = {.lex_state = 302, .external_lex_state = 81}, - [5017] = {.lex_state = 65, .external_lex_state = 58}, - [5018] = {.lex_state = 65, .external_lex_state = 58}, - [5019] = {.lex_state = 302, .external_lex_state = 77}, - [5020] = {.lex_state = 302, .external_lex_state = 77}, - [5021] = {.lex_state = 302, .external_lex_state = 81}, - [5022] = {.lex_state = 278, .external_lex_state = 75}, - [5023] = {.lex_state = 278, .external_lex_state = 75}, - [5024] = {.lex_state = 303}, - [5025] = {.lex_state = 65, .external_lex_state = 58}, - [5026] = {.lex_state = 302, .external_lex_state = 77}, - [5027] = {.lex_state = 302, .external_lex_state = 77}, - [5028] = {.lex_state = 303}, - [5029] = {.lex_state = 65, .external_lex_state = 58}, - [5030] = {.lex_state = 303}, - [5031] = {.lex_state = 302, .external_lex_state = 77}, - [5032] = {.lex_state = 302, .external_lex_state = 77}, - [5033] = {.lex_state = 278, .external_lex_state = 75}, - [5034] = {.lex_state = 278, .external_lex_state = 75}, - [5035] = {.lex_state = 303}, - [5036] = {.lex_state = 302, .external_lex_state = 77}, - [5037] = {.lex_state = 302, .external_lex_state = 77}, - [5038] = {.lex_state = 65, .external_lex_state = 58}, - [5039] = {.lex_state = 278, .external_lex_state = 75}, - [5040] = {.lex_state = 278, .external_lex_state = 75}, - [5041] = {.lex_state = 303}, - [5042] = {.lex_state = 69, .external_lex_state = 58}, - [5043] = {.lex_state = 302, .external_lex_state = 81}, - [5044] = {.lex_state = 278, .external_lex_state = 75}, - [5045] = {.lex_state = 65, .external_lex_state = 58}, - [5046] = {.lex_state = 303}, - [5047] = {.lex_state = 261, .external_lex_state = 82}, - [5048] = {.lex_state = 506, .external_lex_state = 83}, - [5049] = {.lex_state = 261, .external_lex_state = 84}, - [5050] = {.lex_state = 302, .external_lex_state = 85}, - [5051] = {.lex_state = 302, .external_lex_state = 85}, - [5052] = {.lex_state = 261, .external_lex_state = 84}, - [5053] = {.lex_state = 65, .external_lex_state = 58}, - [5054] = {.lex_state = 261, .external_lex_state = 84}, - [5055] = {.lex_state = 277}, - [5056] = {.lex_state = 294}, - [5057] = {.lex_state = 506, .external_lex_state = 83}, - [5058] = {.lex_state = 261, .external_lex_state = 84}, - [5059] = {.lex_state = 506, .external_lex_state = 83}, - [5060] = {.lex_state = 506, .external_lex_state = 83}, - [5061] = {.lex_state = 302, .external_lex_state = 85}, - [5062] = {.lex_state = 506, .external_lex_state = 83}, - [5063] = {.lex_state = 506, .external_lex_state = 83}, - [5064] = {.lex_state = 506, .external_lex_state = 83}, - [5065] = {.lex_state = 506, .external_lex_state = 83}, - [5066] = {.lex_state = 506, .external_lex_state = 83}, - [5067] = {.lex_state = 69, .external_lex_state = 58}, - [5068] = {.lex_state = 506, .external_lex_state = 83}, - [5069] = {.lex_state = 506, .external_lex_state = 83}, - [5070] = {.lex_state = 506, .external_lex_state = 83}, - [5071] = {.lex_state = 69, .external_lex_state = 58}, - [5072] = {.lex_state = 506, .external_lex_state = 83}, - [5073] = {.lex_state = 506, .external_lex_state = 83}, - [5074] = {.lex_state = 506, .external_lex_state = 83}, - [5075] = {.lex_state = 506, .external_lex_state = 83}, - [5076] = {.lex_state = 506, .external_lex_state = 83}, - [5077] = {.lex_state = 506, .external_lex_state = 83}, - [5078] = {.lex_state = 506, .external_lex_state = 83}, - [5079] = {.lex_state = 506, .external_lex_state = 83}, - [5080] = {.lex_state = 506, .external_lex_state = 83}, - [5081] = {.lex_state = 506, .external_lex_state = 83}, - [5082] = {.lex_state = 506, .external_lex_state = 83}, - [5083] = {.lex_state = 506, .external_lex_state = 83}, - [5084] = {.lex_state = 506, .external_lex_state = 83}, - [5085] = {.lex_state = 506, .external_lex_state = 83}, - [5086] = {.lex_state = 506, .external_lex_state = 83}, - [5087] = {.lex_state = 506, .external_lex_state = 83}, - [5088] = {.lex_state = 506, .external_lex_state = 83}, - [5089] = {.lex_state = 261, .external_lex_state = 82}, - [5090] = {.lex_state = 506, .external_lex_state = 83}, - [5091] = {.lex_state = 261, .external_lex_state = 82}, - [5092] = {.lex_state = 294}, - [5093] = {.lex_state = 506, .external_lex_state = 83}, - [5094] = {.lex_state = 302, .external_lex_state = 85}, - [5095] = {.lex_state = 302, .external_lex_state = 85}, - [5096] = {.lex_state = 506, .external_lex_state = 83}, - [5097] = {.lex_state = 506, .external_lex_state = 83}, - [5098] = {.lex_state = 261, .external_lex_state = 82}, - [5099] = {.lex_state = 261, .external_lex_state = 82}, - [5100] = {.lex_state = 506, .external_lex_state = 83}, - [5101] = {.lex_state = 302, .external_lex_state = 81}, - [5102] = {.lex_state = 302, .external_lex_state = 81}, - [5103] = {.lex_state = 302, .external_lex_state = 81}, - [5104] = {.lex_state = 506, .external_lex_state = 83}, - [5105] = {.lex_state = 506, .external_lex_state = 83}, - [5106] = {.lex_state = 278, .external_lex_state = 75}, - [5107] = {.lex_state = 277}, - [5108] = {.lex_state = 261, .external_lex_state = 82}, - [5109] = {.lex_state = 261, .external_lex_state = 82}, - [5110] = {.lex_state = 506, .external_lex_state = 83}, - [5111] = {.lex_state = 278, .external_lex_state = 75}, - [5112] = {.lex_state = 506, .external_lex_state = 83}, - [5113] = {.lex_state = 278, .external_lex_state = 75}, - [5114] = {.lex_state = 261, .external_lex_state = 82}, - [5115] = {.lex_state = 261, .external_lex_state = 82}, - [5116] = {.lex_state = 261, .external_lex_state = 82}, - [5117] = {.lex_state = 506, .external_lex_state = 83}, - [5118] = {.lex_state = 506, .external_lex_state = 83}, - [5119] = {.lex_state = 302}, - [5120] = {.lex_state = 506, .external_lex_state = 83}, - [5121] = {.lex_state = 506, .external_lex_state = 83}, - [5122] = {.lex_state = 506, .external_lex_state = 83}, - [5123] = {.lex_state = 278, .external_lex_state = 75}, - [5124] = {.lex_state = 69, .external_lex_state = 58}, - [5125] = {.lex_state = 278, .external_lex_state = 75}, - [5126] = {.lex_state = 277}, - [5127] = {.lex_state = 69, .external_lex_state = 58}, - [5128] = {.lex_state = 261, .external_lex_state = 82}, - [5129] = {.lex_state = 303}, - [5130] = {.lex_state = 261, .external_lex_state = 82}, - [5131] = {.lex_state = 261, .external_lex_state = 82}, - [5132] = {.lex_state = 277}, - [5133] = {.lex_state = 302, .external_lex_state = 85}, - [5134] = {.lex_state = 506, .external_lex_state = 83}, - [5135] = {.lex_state = 506, .external_lex_state = 83}, - [5136] = {.lex_state = 302, .external_lex_state = 85}, - [5137] = {.lex_state = 302, .external_lex_state = 85}, - [5138] = {.lex_state = 294}, - [5139] = {.lex_state = 69, .external_lex_state = 58}, - [5140] = {.lex_state = 506, .external_lex_state = 83}, - [5141] = {.lex_state = 506, .external_lex_state = 83}, - [5142] = {.lex_state = 69, .external_lex_state = 58}, - [5143] = {.lex_state = 506, .external_lex_state = 83}, - [5144] = {.lex_state = 261, .external_lex_state = 82}, - [5145] = {.lex_state = 302, .external_lex_state = 85}, - [5146] = {.lex_state = 302, .external_lex_state = 85}, - [5147] = {.lex_state = 302, .external_lex_state = 85}, - [5148] = {.lex_state = 302, .external_lex_state = 85}, - [5149] = {.lex_state = 261, .external_lex_state = 82}, - [5150] = {.lex_state = 302, .external_lex_state = 85}, - [5151] = {.lex_state = 270, .external_lex_state = 77}, - [5152] = {.lex_state = 261, .external_lex_state = 82}, - [5153] = {.lex_state = 302, .external_lex_state = 85}, - [5154] = {.lex_state = 270, .external_lex_state = 77}, - [5155] = {.lex_state = 302, .external_lex_state = 85}, - [5156] = {.lex_state = 302, .external_lex_state = 85}, - [5157] = {.lex_state = 253}, - [5158] = {.lex_state = 302, .external_lex_state = 85}, - [5159] = {.lex_state = 302, .external_lex_state = 85}, - [5160] = {.lex_state = 302, .external_lex_state = 85}, - [5161] = {.lex_state = 253}, - [5162] = {.lex_state = 278, .external_lex_state = 75}, - [5163] = {.lex_state = 253}, - [5164] = {.lex_state = 277}, - [5165] = {.lex_state = 278, .external_lex_state = 75}, - [5166] = {.lex_state = 278, .external_lex_state = 75}, - [5167] = {.lex_state = 253}, - [5168] = {.lex_state = 253}, - [5169] = {.lex_state = 253}, - [5170] = {.lex_state = 294}, - [5171] = {.lex_state = 261, .external_lex_state = 85}, - [5172] = {.lex_state = 278, .external_lex_state = 75}, - [5173] = {.lex_state = 253}, - [5174] = {.lex_state = 278, .external_lex_state = 75}, - [5175] = {.lex_state = 278, .external_lex_state = 75}, - [5176] = {.lex_state = 253}, - [5177] = {.lex_state = 65, .external_lex_state = 58}, - [5178] = {.lex_state = 278, .external_lex_state = 75}, - [5179] = {.lex_state = 278, .external_lex_state = 75}, - [5180] = {.lex_state = 278, .external_lex_state = 75}, - [5181] = {.lex_state = 261, .external_lex_state = 82}, - [5182] = {.lex_state = 270, .external_lex_state = 77}, - [5183] = {.lex_state = 261, .external_lex_state = 82}, - [5184] = {.lex_state = 302, .external_lex_state = 85}, - [5185] = {.lex_state = 277}, - [5186] = {.lex_state = 278, .external_lex_state = 75}, - [5187] = {.lex_state = 294}, - [5188] = {.lex_state = 278, .external_lex_state = 75}, - [5189] = {.lex_state = 278, .external_lex_state = 75}, - [5190] = {.lex_state = 278, .external_lex_state = 75}, - [5191] = {.lex_state = 65, .external_lex_state = 58}, - [5192] = {.lex_state = 278, .external_lex_state = 75}, - [5193] = {.lex_state = 253}, - [5194] = {.lex_state = 302, .external_lex_state = 85}, - [5195] = {.lex_state = 65, .external_lex_state = 58}, - [5196] = {.lex_state = 253}, - [5197] = {.lex_state = 253}, - [5198] = {.lex_state = 278, .external_lex_state = 75}, - [5199] = {.lex_state = 261, .external_lex_state = 82}, - [5200] = {.lex_state = 253}, - [5201] = {.lex_state = 294}, - [5202] = {.lex_state = 278, .external_lex_state = 75}, - [5203] = {.lex_state = 261, .external_lex_state = 82}, - [5204] = {.lex_state = 278, .external_lex_state = 75}, - [5205] = {.lex_state = 270, .external_lex_state = 77}, - [5206] = {.lex_state = 278, .external_lex_state = 75}, - [5207] = {.lex_state = 278, .external_lex_state = 75}, - [5208] = {.lex_state = 261, .external_lex_state = 82}, - [5209] = {.lex_state = 253}, - [5210] = {.lex_state = 253}, - [5211] = {.lex_state = 253}, - [5212] = {.lex_state = 253}, - [5213] = {.lex_state = 253}, - [5214] = {.lex_state = 253}, - [5215] = {.lex_state = 304}, - [5216] = {.lex_state = 253}, - [5217] = {.lex_state = 253}, - [5218] = {.lex_state = 253}, - [5219] = {.lex_state = 253}, - [5220] = {.lex_state = 506}, - [5221] = {.lex_state = 506}, - [5222] = {.lex_state = 506}, - [5223] = {.lex_state = 253}, - [5224] = {.lex_state = 506}, - [5225] = {.lex_state = 506}, - [5226] = {.lex_state = 238}, - [5227] = {.lex_state = 304}, - [5228] = {.lex_state = 270, .external_lex_state = 77}, - [5229] = {.lex_state = 255}, - [5230] = {.lex_state = 238}, - [5231] = {.lex_state = 304}, - [5232] = {.lex_state = 253}, - [5233] = {.lex_state = 270, .external_lex_state = 77}, - [5234] = {.lex_state = 255}, - [5235] = {.lex_state = 253}, - [5236] = {.lex_state = 255}, - [5237] = {.lex_state = 253}, - [5238] = {.lex_state = 270, .external_lex_state = 79}, - [5239] = {.lex_state = 253}, - [5240] = {.lex_state = 255}, - [5241] = {.lex_state = 304}, - [5242] = {.lex_state = 253}, - [5243] = {.lex_state = 304}, - [5244] = {.lex_state = 293, .external_lex_state = 75}, - [5245] = {.lex_state = 253}, - [5246] = {.lex_state = 253}, - [5247] = {.lex_state = 255}, - [5248] = {.lex_state = 304}, - [5249] = {.lex_state = 293, .external_lex_state = 75}, - [5250] = {.lex_state = 270, .external_lex_state = 79}, - [5251] = {.lex_state = 253}, - [5252] = {.lex_state = 506}, - [5253] = {.lex_state = 506}, - [5254] = {.lex_state = 506, .external_lex_state = 86}, - [5255] = {.lex_state = 255}, - [5256] = {.lex_state = 506}, - [5257] = {.lex_state = 506}, - [5258] = {.lex_state = 304}, - [5259] = {.lex_state = 506}, - [5260] = {.lex_state = 506}, - [5261] = {.lex_state = 304}, - [5262] = {.lex_state = 253}, - [5263] = {.lex_state = 506, .external_lex_state = 86}, - [5264] = {.lex_state = 253}, - [5265] = {.lex_state = 253}, - [5266] = {.lex_state = 253}, - [5267] = {.lex_state = 253}, - [5268] = {.lex_state = 304}, - [5269] = {.lex_state = 253}, - [5270] = {.lex_state = 253}, - [5271] = {.lex_state = 304}, - [5272] = {.lex_state = 223, .external_lex_state = 75}, - [5273] = {.lex_state = 238}, - [5274] = {.lex_state = 253}, - [5275] = {.lex_state = 253}, - [5276] = {.lex_state = 270, .external_lex_state = 79}, - [5277] = {.lex_state = 253}, - [5278] = {.lex_state = 253}, - [5279] = {.lex_state = 270, .external_lex_state = 77}, - [5280] = {.lex_state = 270, .external_lex_state = 79}, - [5281] = {.lex_state = 506}, - [5282] = {.lex_state = 506}, - [5283] = {.lex_state = 506, .external_lex_state = 86}, - [5284] = {.lex_state = 506}, - [5285] = {.lex_state = 506}, - [5286] = {.lex_state = 506}, - [5287] = {.lex_state = 253}, - [5288] = {.lex_state = 253}, - [5289] = {.lex_state = 506}, - [5290] = {.lex_state = 304}, - [5291] = {.lex_state = 304}, - [5292] = {.lex_state = 506}, - [5293] = {.lex_state = 253}, - [5294] = {.lex_state = 238}, - [5295] = {.lex_state = 253}, - [5296] = {.lex_state = 253}, - [5297] = {.lex_state = 253}, - [5298] = {.lex_state = 506}, - [5299] = {.lex_state = 253}, - [5300] = {.lex_state = 277}, - [5301] = {.lex_state = 253}, - [5302] = {.lex_state = 253}, - [5303] = {.lex_state = 253}, - [5304] = {.lex_state = 304}, - [5305] = {.lex_state = 270, .external_lex_state = 77}, - [5306] = {.lex_state = 253}, - [5307] = {.lex_state = 253}, - [5308] = {.lex_state = 253}, - [5309] = {.lex_state = 270, .external_lex_state = 77}, - [5310] = {.lex_state = 270, .external_lex_state = 77}, - [5311] = {.lex_state = 253}, - [5312] = {.lex_state = 253}, - [5313] = {.lex_state = 253}, - [5314] = {.lex_state = 238}, - [5315] = {.lex_state = 506}, - [5316] = {.lex_state = 506}, - [5317] = {.lex_state = 506}, - [5318] = {.lex_state = 255}, - [5319] = {.lex_state = 304}, - [5320] = {.lex_state = 293, .external_lex_state = 75}, - [5321] = {.lex_state = 253}, - [5322] = {.lex_state = 253}, - [5323] = {.lex_state = 238}, - [5324] = {.lex_state = 293, .external_lex_state = 75}, - [5325] = {.lex_state = 253}, - [5326] = {.lex_state = 253}, - [5327] = {.lex_state = 253}, - [5328] = {.lex_state = 253}, - [5329] = {.lex_state = 253}, - [5330] = {.lex_state = 506}, - [5331] = {.lex_state = 304}, - [5332] = {.lex_state = 253}, - [5333] = {.lex_state = 253}, - [5334] = {.lex_state = 253}, - [5335] = {.lex_state = 506}, - [5336] = {.lex_state = 253}, - [5337] = {.lex_state = 253}, - [5338] = {.lex_state = 506, .external_lex_state = 86}, - [5339] = {.lex_state = 304}, - [5340] = {.lex_state = 253}, - [5341] = {.lex_state = 506, .external_lex_state = 86}, - [5342] = {.lex_state = 253}, - [5343] = {.lex_state = 253}, - [5344] = {.lex_state = 304}, - [5345] = {.lex_state = 506, .external_lex_state = 86}, - [5346] = {.lex_state = 304}, - [5347] = {.lex_state = 304}, - [5348] = {.lex_state = 253}, - [5349] = {.lex_state = 506, .external_lex_state = 86}, - [5350] = {.lex_state = 253}, - [5351] = {.lex_state = 506, .external_lex_state = 86}, - [5352] = {.lex_state = 304}, - [5353] = {.lex_state = 506, .external_lex_state = 86}, - [5354] = {.lex_state = 238}, - [5355] = {.lex_state = 506}, - [5356] = {.lex_state = 253}, - [5357] = {.lex_state = 506}, - [5358] = {.lex_state = 506}, - [5359] = {.lex_state = 238}, - [5360] = {.lex_state = 506}, - [5361] = {.lex_state = 304}, - [5362] = {.lex_state = 304}, - [5363] = {.lex_state = 506}, - [5364] = {.lex_state = 253}, - [5365] = {.lex_state = 304}, - [5366] = {.lex_state = 253}, - [5367] = {.lex_state = 506}, - [5368] = {.lex_state = 253}, - [5369] = {.lex_state = 506}, - [5370] = {.lex_state = 506}, - [5371] = {.lex_state = 506}, - [5372] = {.lex_state = 253}, - [5373] = {.lex_state = 506}, - [5374] = {.lex_state = 506}, - [5375] = {.lex_state = 506}, - [5376] = {.lex_state = 506}, - [5377] = {.lex_state = 255}, - [5378] = {.lex_state = 261, .external_lex_state = 80}, - [5379] = {.lex_state = 506}, - [5380] = {.lex_state = 253}, - [5381] = {.lex_state = 506}, - [5382] = {.lex_state = 270, .external_lex_state = 77}, - [5383] = {.lex_state = 293}, - [5384] = {.lex_state = 293}, - [5385] = {.lex_state = 293}, - [5386] = {.lex_state = 506}, - [5387] = {.lex_state = 506}, - [5388] = {.lex_state = 506}, - [5389] = {.lex_state = 293}, - [5390] = {.lex_state = 303}, - [5391] = {.lex_state = 506}, - [5392] = {.lex_state = 506}, - [5393] = {.lex_state = 293}, - [5394] = {.lex_state = 270, .external_lex_state = 77}, - [5395] = {.lex_state = 506}, - [5396] = {.lex_state = 270, .external_lex_state = 77}, - [5397] = {.lex_state = 253}, - [5398] = {.lex_state = 506}, - [5399] = {.lex_state = 506}, - [5400] = {.lex_state = 506}, - [5401] = {.lex_state = 293}, - [5402] = {.lex_state = 506}, - [5403] = {.lex_state = 293}, - [5404] = {.lex_state = 506}, - [5405] = {.lex_state = 506}, - [5406] = {.lex_state = 506}, - [5407] = {.lex_state = 506}, - [5408] = {.lex_state = 506}, - [5409] = {.lex_state = 270, .external_lex_state = 77}, - [5410] = {.lex_state = 293}, - [5411] = {.lex_state = 303}, - [5412] = {.lex_state = 506}, - [5413] = {.lex_state = 506}, - [5414] = {.lex_state = 506}, - [5415] = {.lex_state = 506}, - [5416] = {.lex_state = 270, .external_lex_state = 77}, - [5417] = {.lex_state = 270, .external_lex_state = 77}, - [5418] = {.lex_state = 293}, - [5419] = {.lex_state = 506}, - [5420] = {.lex_state = 506}, - [5421] = {.lex_state = 270, .external_lex_state = 77}, - [5422] = {.lex_state = 506}, - [5423] = {.lex_state = 270, .external_lex_state = 77}, - [5424] = {.lex_state = 506}, - [5425] = {.lex_state = 270, .external_lex_state = 77}, - [5426] = {.lex_state = 506}, - [5427] = {.lex_state = 506}, - [5428] = {.lex_state = 270, .external_lex_state = 77}, - [5429] = {.lex_state = 270, .external_lex_state = 77}, - [5430] = {.lex_state = 293}, - [5431] = {.lex_state = 293}, - [5432] = {.lex_state = 293}, - [5433] = {.lex_state = 506}, - [5434] = {.lex_state = 293}, - [5435] = {.lex_state = 506}, - [5436] = {.lex_state = 506}, - [5437] = {.lex_state = 261, .external_lex_state = 77}, - [5438] = {.lex_state = 293}, - [5439] = {.lex_state = 255}, - [5440] = {.lex_state = 270, .external_lex_state = 77}, - [5441] = {.lex_state = 506}, - [5442] = {.lex_state = 293}, - [5443] = {.lex_state = 255}, - [5444] = {.lex_state = 506}, - [5445] = {.lex_state = 303}, - [5446] = {.lex_state = 253}, - [5447] = {.lex_state = 255}, - [5448] = {.lex_state = 293}, - [5449] = {.lex_state = 293}, - [5450] = {.lex_state = 506}, - [5451] = {.lex_state = 255}, - [5452] = {.lex_state = 506}, - [5453] = {.lex_state = 293}, - [5454] = {.lex_state = 261, .external_lex_state = 77}, - [5455] = {.lex_state = 293}, - [5456] = {.lex_state = 293}, - [5457] = {.lex_state = 506}, - [5458] = {.lex_state = 270, .external_lex_state = 77}, - [5459] = {.lex_state = 506}, - [5460] = {.lex_state = 506}, - [5461] = {.lex_state = 293}, - [5462] = {.lex_state = 506}, - [5463] = {.lex_state = 506}, - [5464] = {.lex_state = 303}, - [5465] = {.lex_state = 293}, - [5466] = {.lex_state = 293}, - [5467] = {.lex_state = 506}, - [5468] = {.lex_state = 270, .external_lex_state = 77}, - [5469] = {.lex_state = 293}, - [5470] = {.lex_state = 293}, - [5471] = {.lex_state = 270, .external_lex_state = 77}, - [5472] = {.lex_state = 506}, - [5473] = {.lex_state = 506}, - [5474] = {.lex_state = 506}, - [5475] = {.lex_state = 506}, - [5476] = {.lex_state = 506}, - [5477] = {.lex_state = 293}, - [5478] = {.lex_state = 506}, - [5479] = {.lex_state = 270, .external_lex_state = 77}, - [5480] = {.lex_state = 506}, - [5481] = {.lex_state = 255}, - [5482] = {.lex_state = 270, .external_lex_state = 77}, - [5483] = {.lex_state = 506}, - [5484] = {.lex_state = 303}, - [5485] = {.lex_state = 293}, - [5486] = {.lex_state = 303}, - [5487] = {.lex_state = 506}, - [5488] = {.lex_state = 506}, - [5489] = {.lex_state = 506}, - [5490] = {.lex_state = 506}, - [5491] = {.lex_state = 261, .external_lex_state = 77}, - [5492] = {.lex_state = 506}, - [5493] = {.lex_state = 239, .external_lex_state = 87}, - [5494] = {.lex_state = 256}, - [5495] = {.lex_state = 253}, - [5496] = {.lex_state = 253}, - [5497] = {.lex_state = 261, .external_lex_state = 77}, - [5498] = {.lex_state = 253}, - [5499] = {.lex_state = 256}, - [5500] = {.lex_state = 506}, - [5501] = {.lex_state = 506}, - [5502] = {.lex_state = 253}, - [5503] = {.lex_state = 253}, - [5504] = {.lex_state = 253}, - [5505] = {.lex_state = 261, .external_lex_state = 77}, - [5506] = {.lex_state = 261, .external_lex_state = 77}, - [5507] = {.lex_state = 506}, - [5508] = {.lex_state = 506}, - [5509] = {.lex_state = 261, .external_lex_state = 77}, - [5510] = {.lex_state = 506}, - [5511] = {.lex_state = 506}, - [5512] = {.lex_state = 239, .external_lex_state = 87}, - [5513] = {.lex_state = 253}, - [5514] = {.lex_state = 253}, - [5515] = {.lex_state = 256}, - [5516] = {.lex_state = 261, .external_lex_state = 77}, - [5517] = {.lex_state = 261, .external_lex_state = 77}, - [5518] = {.lex_state = 506}, - [5519] = {.lex_state = 506}, - [5520] = {.lex_state = 506}, - [5521] = {.lex_state = 506}, - [5522] = {.lex_state = 253}, - [5523] = {.lex_state = 506}, - [5524] = {.lex_state = 506}, - [5525] = {.lex_state = 506}, - [5526] = {.lex_state = 506}, - [5527] = {.lex_state = 506}, - [5528] = {.lex_state = 506}, - [5529] = {.lex_state = 239, .external_lex_state = 87}, - [5530] = {.lex_state = 239, .external_lex_state = 87}, - [5531] = {.lex_state = 253}, - [5532] = {.lex_state = 256}, - [5533] = {.lex_state = 256}, - [5534] = {.lex_state = 506}, - [5535] = {.lex_state = 253}, - [5536] = {.lex_state = 506}, - [5537] = {.lex_state = 506}, - [5538] = {.lex_state = 506}, - [5539] = {.lex_state = 261, .external_lex_state = 77}, - [5540] = {.lex_state = 253}, - [5541] = {.lex_state = 261, .external_lex_state = 77}, - [5542] = {.lex_state = 261, .external_lex_state = 77}, - [5543] = {.lex_state = 506}, - [5544] = {.lex_state = 261, .external_lex_state = 77}, - [5545] = {.lex_state = 506}, - [5546] = {.lex_state = 261, .external_lex_state = 77}, - [5547] = {.lex_state = 261, .external_lex_state = 77}, - [5548] = {.lex_state = 506}, - [5549] = {.lex_state = 253}, - [5550] = {.lex_state = 261, .external_lex_state = 77}, - [5551] = {.lex_state = 253}, - [5552] = {.lex_state = 506}, - [5553] = {.lex_state = 253}, - [5554] = {.lex_state = 506}, - [5555] = {.lex_state = 506}, - [5556] = {.lex_state = 108, .external_lex_state = 58}, - [5557] = {.lex_state = 108, .external_lex_state = 58}, - [5558] = {.lex_state = 253}, - [5559] = {.lex_state = 506}, - [5560] = {.lex_state = 108, .external_lex_state = 58}, - [5561] = {.lex_state = 108, .external_lex_state = 58}, - [5562] = {.lex_state = 506}, - [5563] = {.lex_state = 108, .external_lex_state = 58}, - [5564] = {.lex_state = 108, .external_lex_state = 58}, - [5565] = {.lex_state = 506}, - [5566] = {.lex_state = 253}, - [5567] = {.lex_state = 253}, - [5568] = {.lex_state = 256}, - [5569] = {.lex_state = 261, .external_lex_state = 77}, - [5570] = {.lex_state = 261, .external_lex_state = 77}, - [5571] = {.lex_state = 256}, - [5572] = {.lex_state = 256}, - [5573] = {.lex_state = 303}, - [5574] = {.lex_state = 506}, - [5575] = {.lex_state = 261, .external_lex_state = 77}, - [5576] = {.lex_state = 253}, - [5577] = {.lex_state = 506}, - [5578] = {.lex_state = 506, .external_lex_state = 88}, - [5579] = {.lex_state = 506}, - [5580] = {.lex_state = 506, .external_lex_state = 88}, - [5581] = {.lex_state = 506}, - [5582] = {.lex_state = 506}, - [5583] = {.lex_state = 256}, - [5584] = {.lex_state = 261, .external_lex_state = 77}, - [5585] = {.lex_state = 253}, - [5586] = {.lex_state = 506}, - [5587] = {.lex_state = 239, .external_lex_state = 87}, - [5588] = {.lex_state = 506}, - [5589] = {.lex_state = 239, .external_lex_state = 87}, - [5590] = {.lex_state = 506}, - [5591] = {.lex_state = 256}, - [5592] = {.lex_state = 506}, - [5593] = {.lex_state = 506}, - [5594] = {.lex_state = 253}, - [5595] = {.lex_state = 256}, - [5596] = {.lex_state = 261, .external_lex_state = 77}, - [5597] = {.lex_state = 506}, - [5598] = {.lex_state = 506}, - [5599] = {.lex_state = 506}, - [5600] = {.lex_state = 506}, - [5601] = {.lex_state = 253}, - [5602] = {.lex_state = 256}, - [5603] = {.lex_state = 506}, - [5604] = {.lex_state = 506}, - [5605] = {.lex_state = 506}, - [5606] = {.lex_state = 506}, - [5607] = {.lex_state = 256}, - [5608] = {.lex_state = 253}, - [5609] = {.lex_state = 256}, - [5610] = {.lex_state = 506}, - [5611] = {.lex_state = 506}, - [5612] = {.lex_state = 506}, - [5613] = {.lex_state = 506}, - [5614] = {.lex_state = 261, .external_lex_state = 77}, - [5615] = {.lex_state = 253}, - [5616] = {.lex_state = 261, .external_lex_state = 77}, - [5617] = {.lex_state = 506}, - [5618] = {.lex_state = 506}, - [5619] = {.lex_state = 506}, - [5620] = {.lex_state = 506}, - [5621] = {.lex_state = 506}, - [5622] = {.lex_state = 253}, - [5623] = {.lex_state = 506}, - [5624] = {.lex_state = 506}, - [5625] = {.lex_state = 506}, - [5626] = {.lex_state = 108, .external_lex_state = 58}, - [5627] = {.lex_state = 506}, - [5628] = {.lex_state = 261, .external_lex_state = 77}, - [5629] = {.lex_state = 253}, - [5630] = {.lex_state = 256}, - [5631] = {.lex_state = 506}, - [5632] = {.lex_state = 261, .external_lex_state = 77}, - [5633] = {.lex_state = 108, .external_lex_state = 58}, - [5634] = {.lex_state = 506}, - [5635] = {.lex_state = 261, .external_lex_state = 77}, - [5636] = {.lex_state = 253}, - [5637] = {.lex_state = 261, .external_lex_state = 77}, - [5638] = {.lex_state = 506}, - [5639] = {.lex_state = 506}, - [5640] = {.lex_state = 261, .external_lex_state = 77}, - [5641] = {.lex_state = 261, .external_lex_state = 77}, - [5642] = {.lex_state = 256}, - [5643] = {.lex_state = 253}, - [5644] = {.lex_state = 261, .external_lex_state = 77}, - [5645] = {.lex_state = 108, .external_lex_state = 58}, - [5646] = {.lex_state = 506}, - [5647] = {.lex_state = 506}, - [5648] = {.lex_state = 506}, - [5649] = {.lex_state = 506}, - [5650] = {.lex_state = 253}, - [5651] = {.lex_state = 261, .external_lex_state = 77}, - [5652] = {.lex_state = 506}, - [5653] = {.lex_state = 261, .external_lex_state = 77}, - [5654] = {.lex_state = 261, .external_lex_state = 77}, - [5655] = {.lex_state = 108, .external_lex_state = 58}, - [5656] = {.lex_state = 506}, - [5657] = {.lex_state = 253}, - [5658] = {.lex_state = 506}, - [5659] = {.lex_state = 108, .external_lex_state = 58}, - [5660] = {.lex_state = 261, .external_lex_state = 77}, - [5661] = {.lex_state = 506}, - [5662] = {.lex_state = 506}, - [5663] = {.lex_state = 253}, - [5664] = {.lex_state = 253}, - [5665] = {.lex_state = 261, .external_lex_state = 77}, - [5666] = {.lex_state = 506}, - [5667] = {.lex_state = 108, .external_lex_state = 58}, - [5668] = {.lex_state = 108, .external_lex_state = 58}, - [5669] = {.lex_state = 506}, - [5670] = {.lex_state = 256}, - [5671] = {.lex_state = 253}, - [5672] = {.lex_state = 256}, - [5673] = {.lex_state = 256}, - [5674] = {.lex_state = 253}, - [5675] = {.lex_state = 253}, - [5676] = {.lex_state = 238}, - [5677] = {.lex_state = 506}, - [5678] = {.lex_state = 253}, - [5679] = {.lex_state = 253}, - [5680] = {.lex_state = 253}, - [5681] = {.lex_state = 261, .external_lex_state = 77}, - [5682] = {.lex_state = 506}, - [5683] = {.lex_state = 506}, - [5684] = {.lex_state = 261, .external_lex_state = 77}, - [5685] = {.lex_state = 253}, - [5686] = {.lex_state = 506}, - [5687] = {.lex_state = 506}, - [5688] = {.lex_state = 506}, - [5689] = {.lex_state = 261, .external_lex_state = 77}, - [5690] = {.lex_state = 303}, - [5691] = {.lex_state = 506}, - [5692] = {.lex_state = 253}, - [5693] = {.lex_state = 506}, - [5694] = {.lex_state = 506}, - [5695] = {.lex_state = 253}, - [5696] = {.lex_state = 506}, - [5697] = {.lex_state = 253}, - [5698] = {.lex_state = 506}, - [5699] = {.lex_state = 253}, - [5700] = {.lex_state = 256}, - [5701] = {.lex_state = 256}, - [5702] = {.lex_state = 303}, - [5703] = {.lex_state = 256}, - [5704] = {.lex_state = 506}, - [5705] = {.lex_state = 506}, - [5706] = {.lex_state = 253}, - [5707] = {.lex_state = 261, .external_lex_state = 77}, - [5708] = {.lex_state = 108, .external_lex_state = 58}, - [5709] = {.lex_state = 506}, - [5710] = {.lex_state = 261, .external_lex_state = 77}, - [5711] = {.lex_state = 506}, - [5712] = {.lex_state = 506}, - [5713] = {.lex_state = 253}, - [5714] = {.lex_state = 506, .external_lex_state = 88}, - [5715] = {.lex_state = 506}, - [5716] = {.lex_state = 506}, - [5717] = {.lex_state = 506, .external_lex_state = 88}, - [5718] = {.lex_state = 506}, - [5719] = {.lex_state = 253}, - [5720] = {.lex_state = 253}, - [5721] = {.lex_state = 253}, - [5722] = {.lex_state = 303}, - [5723] = {.lex_state = 256}, - [5724] = {.lex_state = 506}, - [5725] = {.lex_state = 506}, - [5726] = {.lex_state = 108, .external_lex_state = 58}, - [5727] = {.lex_state = 253}, - [5728] = {.lex_state = 108, .external_lex_state = 58}, - [5729] = {.lex_state = 506}, - [5730] = {.lex_state = 506}, - [5731] = {.lex_state = 261, .external_lex_state = 77}, - [5732] = {.lex_state = 506, .external_lex_state = 88}, - [5733] = {.lex_state = 506, .external_lex_state = 88}, - [5734] = {.lex_state = 253}, - [5735] = {.lex_state = 506}, - [5736] = {.lex_state = 506}, - [5737] = {.lex_state = 506}, - [5738] = {.lex_state = 506}, - [5739] = {.lex_state = 261, .external_lex_state = 77}, - [5740] = {.lex_state = 506}, - [5741] = {.lex_state = 253}, - [5742] = {.lex_state = 506}, - [5743] = {.lex_state = 506}, - [5744] = {.lex_state = 261, .external_lex_state = 77}, - [5745] = {.lex_state = 256}, - [5746] = {.lex_state = 256}, - [5747] = {.lex_state = 256}, - [5748] = {.lex_state = 253}, - [5749] = {.lex_state = 506}, - [5750] = {.lex_state = 253}, - [5751] = {.lex_state = 253}, - [5752] = {.lex_state = 253}, - [5753] = {.lex_state = 506}, - [5754] = {.lex_state = 506}, - [5755] = {.lex_state = 253}, - [5756] = {.lex_state = 506}, - [5757] = {.lex_state = 261, .external_lex_state = 77}, - [5758] = {.lex_state = 256}, - [5759] = {.lex_state = 506}, - [5760] = {.lex_state = 506}, - [5761] = {.lex_state = 253}, - [5762] = {.lex_state = 253}, - [5763] = {.lex_state = 506}, - [5764] = {.lex_state = 261, .external_lex_state = 77}, - [5765] = {.lex_state = 506}, - [5766] = {.lex_state = 261, .external_lex_state = 77}, - [5767] = {.lex_state = 303}, - [5768] = {.lex_state = 303}, - [5769] = {.lex_state = 506}, - [5770] = {.lex_state = 506}, - [5771] = {.lex_state = 506}, - [5772] = {.lex_state = 506}, - [5773] = {.lex_state = 506}, - [5774] = {.lex_state = 256}, - [5775] = {.lex_state = 506}, - [5776] = {.lex_state = 256}, - [5777] = {.lex_state = 261, .external_lex_state = 77}, - [5778] = {.lex_state = 506}, - [5779] = {.lex_state = 253}, - [5780] = {.lex_state = 108, .external_lex_state = 58}, - [5781] = {.lex_state = 506}, - [5782] = {.lex_state = 506}, - [5783] = {.lex_state = 506}, - [5784] = {.lex_state = 256}, - [5785] = {.lex_state = 506}, - [5786] = {.lex_state = 506}, - [5787] = {.lex_state = 253}, - [5788] = {.lex_state = 261, .external_lex_state = 77}, - [5789] = {.lex_state = 256}, - [5790] = {.lex_state = 108, .external_lex_state = 58}, - [5791] = {.lex_state = 108, .external_lex_state = 58}, - [5792] = {.lex_state = 303}, - [5793] = {.lex_state = 261, .external_lex_state = 77}, - [5794] = {.lex_state = 506}, - [5795] = {.lex_state = 506}, - [5796] = {.lex_state = 506}, - [5797] = {.lex_state = 506}, - [5798] = {.lex_state = 303}, - [5799] = {.lex_state = 261, .external_lex_state = 77}, - [5800] = {.lex_state = 261, .external_lex_state = 77}, - [5801] = {.lex_state = 261, .external_lex_state = 77}, - [5802] = {.lex_state = 261, .external_lex_state = 77}, - [5803] = {.lex_state = 261, .external_lex_state = 77}, - [5804] = {.lex_state = 261, .external_lex_state = 77}, - [5805] = {.lex_state = 506}, - [5806] = {.lex_state = 261, .external_lex_state = 77}, - [5807] = {.lex_state = 261, .external_lex_state = 77}, - [5808] = {.lex_state = 261, .external_lex_state = 77}, - [5809] = {.lex_state = 261, .external_lex_state = 77}, - [5810] = {.lex_state = 261, .external_lex_state = 77}, - [5811] = {.lex_state = 261, .external_lex_state = 77}, - [5812] = {.lex_state = 506}, - [5813] = {.lex_state = 108, .external_lex_state = 58}, - [5814] = {.lex_state = 255}, - [5815] = {.lex_state = 261, .external_lex_state = 77}, - [5816] = {.lex_state = 261, .external_lex_state = 77}, - [5817] = {.lex_state = 303}, - [5818] = {.lex_state = 261, .external_lex_state = 77}, - [5819] = {.lex_state = 253}, - [5820] = {.lex_state = 261, .external_lex_state = 77}, - [5821] = {.lex_state = 261, .external_lex_state = 77}, - [5822] = {.lex_state = 261, .external_lex_state = 77}, - [5823] = {.lex_state = 506}, - [5824] = {.lex_state = 506, .external_lex_state = 89}, - [5825] = {.lex_state = 261, .external_lex_state = 77}, - [5826] = {.lex_state = 261, .external_lex_state = 77}, - [5827] = {.lex_state = 253}, - [5828] = {.lex_state = 261, .external_lex_state = 77}, - [5829] = {.lex_state = 261, .external_lex_state = 77}, - [5830] = {.lex_state = 261, .external_lex_state = 77}, - [5831] = {.lex_state = 261, .external_lex_state = 77}, - [5832] = {.lex_state = 506}, - [5833] = {.lex_state = 261, .external_lex_state = 77}, - [5834] = {.lex_state = 506}, - [5835] = {.lex_state = 108, .external_lex_state = 58}, - [5836] = {.lex_state = 261, .external_lex_state = 77}, - [5837] = {.lex_state = 506}, - [5838] = {.lex_state = 108, .external_lex_state = 58}, - [5839] = {.lex_state = 506}, - [5840] = {.lex_state = 256}, - [5841] = {.lex_state = 256}, - [5842] = {.lex_state = 506, .external_lex_state = 89}, - [5843] = {.lex_state = 506}, - [5844] = {.lex_state = 506}, - [5845] = {.lex_state = 261, .external_lex_state = 77}, - [5846] = {.lex_state = 261, .external_lex_state = 77}, - [5847] = {.lex_state = 261, .external_lex_state = 77}, - [5848] = {.lex_state = 506}, - [5849] = {.lex_state = 261, .external_lex_state = 77}, - [5850] = {.lex_state = 239, .external_lex_state = 87}, - [5851] = {.lex_state = 108, .external_lex_state = 58}, - [5852] = {.lex_state = 253}, - [5853] = {.lex_state = 239, .external_lex_state = 87}, - [5854] = {.lex_state = 108, .external_lex_state = 58}, - [5855] = {.lex_state = 261, .external_lex_state = 77}, - [5856] = {.lex_state = 253}, - [5857] = {.lex_state = 261, .external_lex_state = 77}, - [5858] = {.lex_state = 506}, - [5859] = {.lex_state = 261, .external_lex_state = 77}, - [5860] = {.lex_state = 506}, - [5861] = {.lex_state = 303}, - [5862] = {.lex_state = 506}, - [5863] = {.lex_state = 506}, - [5864] = {.lex_state = 506}, - [5865] = {.lex_state = 256}, - [5866] = {.lex_state = 506}, - [5867] = {.lex_state = 253}, - [5868] = {.lex_state = 253}, - [5869] = {.lex_state = 261, .external_lex_state = 77}, - [5870] = {.lex_state = 238}, - [5871] = {.lex_state = 256}, - [5872] = {.lex_state = 253}, - [5873] = {.lex_state = 261, .external_lex_state = 77}, - [5874] = {.lex_state = 506}, - [5875] = {.lex_state = 261, .external_lex_state = 77}, - [5876] = {.lex_state = 506}, - [5877] = {.lex_state = 506}, - [5878] = {.lex_state = 261, .external_lex_state = 77}, - [5879] = {.lex_state = 506}, - [5880] = {.lex_state = 506}, - [5881] = {.lex_state = 506}, - [5882] = {.lex_state = 506}, - [5883] = {.lex_state = 261, .external_lex_state = 77}, - [5884] = {.lex_state = 506}, - [5885] = {.lex_state = 506}, - [5886] = {.lex_state = 256}, - [5887] = {.lex_state = 239, .external_lex_state = 87}, - [5888] = {.lex_state = 239, .external_lex_state = 87}, - [5889] = {.lex_state = 506}, - [5890] = {.lex_state = 506}, - [5891] = {.lex_state = 506}, - [5892] = {.lex_state = 506}, - [5893] = {.lex_state = 506}, - [5894] = {.lex_state = 506}, - [5895] = {.lex_state = 261, .external_lex_state = 77}, - [5896] = {.lex_state = 506}, - [5897] = {.lex_state = 261, .external_lex_state = 77}, - [5898] = {.lex_state = 506, .external_lex_state = 89}, - [5899] = {.lex_state = 506}, - [5900] = {.lex_state = 506}, - [5901] = {.lex_state = 506}, - [5902] = {.lex_state = 506}, - [5903] = {.lex_state = 256}, - [5904] = {.lex_state = 506}, - [5905] = {.lex_state = 261, .external_lex_state = 77}, - [5906] = {.lex_state = 261, .external_lex_state = 77}, - [5907] = {.lex_state = 261, .external_lex_state = 77}, - [5908] = {.lex_state = 506}, - [5909] = {.lex_state = 506}, - [5910] = {.lex_state = 506}, - [5911] = {.lex_state = 256}, - [5912] = {.lex_state = 506}, - [5913] = {.lex_state = 506}, - [5914] = {.lex_state = 261, .external_lex_state = 77}, - [5915] = {.lex_state = 506}, - [5916] = {.lex_state = 506}, - [5917] = {.lex_state = 261, .external_lex_state = 77}, - [5918] = {.lex_state = 261, .external_lex_state = 77}, - [5919] = {.lex_state = 506}, - [5920] = {.lex_state = 261}, - [5921] = {.lex_state = 506}, - [5922] = {.lex_state = 506}, - [5923] = {.lex_state = 261, .external_lex_state = 77}, - [5924] = {.lex_state = 261, .external_lex_state = 77}, - [5925] = {.lex_state = 261, .external_lex_state = 77}, - [5926] = {.lex_state = 261, .external_lex_state = 77}, - [5927] = {.lex_state = 261, .external_lex_state = 77}, - [5928] = {.lex_state = 261, .external_lex_state = 77}, - [5929] = {.lex_state = 261, .external_lex_state = 77}, - [5930] = {.lex_state = 261, .external_lex_state = 77}, - [5931] = {.lex_state = 261, .external_lex_state = 77}, - [5932] = {.lex_state = 261, .external_lex_state = 77}, - [5933] = {.lex_state = 261, .external_lex_state = 77}, - [5934] = {.lex_state = 261, .external_lex_state = 77}, - [5935] = {.lex_state = 506}, - [5936] = {.lex_state = 256}, - [5937] = {.lex_state = 256}, - [5938] = {.lex_state = 506}, - [5939] = {.lex_state = 506}, - [5940] = {.lex_state = 261, .external_lex_state = 77}, - [5941] = {.lex_state = 261, .external_lex_state = 77}, - [5942] = {.lex_state = 255}, - [5943] = {.lex_state = 506}, - [5944] = {.lex_state = 506}, - [5945] = {.lex_state = 303}, - [5946] = {.lex_state = 253}, - [5947] = {.lex_state = 506}, - [5948] = {.lex_state = 506}, - [5949] = {.lex_state = 506}, - [5950] = {.lex_state = 506, .external_lex_state = 89}, - [5951] = {.lex_state = 506}, - [5952] = {.lex_state = 506}, - [5953] = {.lex_state = 506}, - [5954] = {.lex_state = 506, .external_lex_state = 89}, - [5955] = {.lex_state = 506}, - [5956] = {.lex_state = 261, .external_lex_state = 77}, - [5957] = {.lex_state = 261, .external_lex_state = 77}, - [5958] = {.lex_state = 253}, - [5959] = {.lex_state = 253}, - [5960] = {.lex_state = 506}, - [5961] = {.lex_state = 506}, - [5962] = {.lex_state = 261, .external_lex_state = 77}, - [5963] = {.lex_state = 506}, - [5964] = {.lex_state = 506}, - [5965] = {.lex_state = 506}, - [5966] = {.lex_state = 506}, - [5967] = {.lex_state = 238}, - [5968] = {.lex_state = 506}, - [5969] = {.lex_state = 506}, - [5970] = {.lex_state = 253}, - [5971] = {.lex_state = 506}, - [5972] = {.lex_state = 256}, - [5973] = {.lex_state = 506}, - [5974] = {.lex_state = 506}, - [5975] = {.lex_state = 506}, - [5976] = {.lex_state = 506}, - [5977] = {.lex_state = 506}, - [5978] = {.lex_state = 261, .external_lex_state = 77}, - [5979] = {.lex_state = 506}, - [5980] = {.lex_state = 506}, - [5981] = {.lex_state = 506, .external_lex_state = 89}, - [5982] = {.lex_state = 506}, - [5983] = {.lex_state = 506}, - [5984] = {.lex_state = 506}, - [5985] = {.lex_state = 506}, - [5986] = {.lex_state = 506}, - [5987] = {.lex_state = 506}, - [5988] = {.lex_state = 506}, - [5989] = {.lex_state = 261, .external_lex_state = 77}, - [5990] = {.lex_state = 256}, - [5991] = {.lex_state = 261, .external_lex_state = 77}, - [5992] = {.lex_state = 506}, - [5993] = {.lex_state = 256}, - [5994] = {.lex_state = 261, .external_lex_state = 77}, - [5995] = {.lex_state = 506}, - [5996] = {.lex_state = 506}, - [5997] = {.lex_state = 506}, - [5998] = {.lex_state = 261, .external_lex_state = 77}, - [5999] = {.lex_state = 506}, - [6000] = {.lex_state = 506}, - [6001] = {.lex_state = 506}, - [6002] = {.lex_state = 506}, - [6003] = {.lex_state = 506}, - [6004] = {.lex_state = 253}, - [6005] = {.lex_state = 253}, - [6006] = {.lex_state = 506}, - [6007] = {.lex_state = 506}, - [6008] = {.lex_state = 261, .external_lex_state = 77}, - [6009] = {.lex_state = 261, .external_lex_state = 77}, - [6010] = {.lex_state = 506}, - [6011] = {.lex_state = 253}, - [6012] = {.lex_state = 253}, - [6013] = {.lex_state = 303}, - [6014] = {.lex_state = 506}, - [6015] = {.lex_state = 506}, - [6016] = {.lex_state = 506}, - [6017] = {.lex_state = 256}, - [6018] = {.lex_state = 506}, - [6019] = {.lex_state = 261, .external_lex_state = 77}, - [6020] = {.lex_state = 506}, - [6021] = {.lex_state = 506}, - [6022] = {.lex_state = 303}, - [6023] = {.lex_state = 253}, - [6024] = {.lex_state = 506}, - [6025] = {.lex_state = 506}, - [6026] = {.lex_state = 506, .external_lex_state = 89}, - [6027] = {.lex_state = 506}, - [6028] = {.lex_state = 506}, - [6029] = {.lex_state = 506, .external_lex_state = 89}, - [6030] = {.lex_state = 506, .external_lex_state = 88}, - [6031] = {.lex_state = 506}, - [6032] = {.lex_state = 506, .external_lex_state = 88}, - [6033] = {.lex_state = 506}, - [6034] = {.lex_state = 506}, - [6035] = {.lex_state = 253}, - [6036] = {.lex_state = 261, .external_lex_state = 77}, - [6037] = {.lex_state = 253}, - [6038] = {.lex_state = 261, .external_lex_state = 77}, - [6039] = {.lex_state = 303}, - [6040] = {.lex_state = 506}, - [6041] = {.lex_state = 506}, - [6042] = {.lex_state = 303}, - [6043] = {.lex_state = 253}, - [6044] = {.lex_state = 506}, - [6045] = {.lex_state = 506}, - [6046] = {.lex_state = 253}, - [6047] = {.lex_state = 261, .external_lex_state = 77}, - [6048] = {.lex_state = 256}, - [6049] = {.lex_state = 506}, - [6050] = {.lex_state = 506}, - [6051] = {.lex_state = 253}, - [6052] = {.lex_state = 506}, - [6053] = {.lex_state = 253}, - [6054] = {.lex_state = 506}, - [6055] = {.lex_state = 303}, - [6056] = {.lex_state = 506}, - [6057] = {.lex_state = 261, .external_lex_state = 77}, - [6058] = {.lex_state = 261, .external_lex_state = 77}, - [6059] = {.lex_state = 253}, - [6060] = {.lex_state = 506}, - [6061] = {.lex_state = 253}, - [6062] = {.lex_state = 253}, - [6063] = {.lex_state = 253}, - [6064] = {.lex_state = 253}, - [6065] = {.lex_state = 253}, - [6066] = {.lex_state = 253}, - [6067] = {.lex_state = 253}, - [6068] = {.lex_state = 253}, - [6069] = {.lex_state = 253}, - [6070] = {.lex_state = 253}, - [6071] = {.lex_state = 253}, - [6072] = {.lex_state = 253}, - [6073] = {.lex_state = 253}, - [6074] = {.lex_state = 253}, - [6075] = {.lex_state = 253}, - [6076] = {.lex_state = 253}, - [6077] = {.lex_state = 253}, - [6078] = {.lex_state = 253}, - [6079] = {.lex_state = 253}, - [6080] = {.lex_state = 253}, - [6081] = {.lex_state = 253}, - [6082] = {.lex_state = 253}, - [6083] = {.lex_state = 253}, - [6084] = {.lex_state = 253}, - [6085] = {.lex_state = 253}, - [6086] = {.lex_state = 253}, - [6087] = {.lex_state = 253}, - [6088] = {.lex_state = 253}, - [6089] = {.lex_state = 253}, - [6090] = {.lex_state = 253}, - [6091] = {.lex_state = 253}, - [6092] = {.lex_state = 253}, - [6093] = {.lex_state = 253}, - [6094] = {.lex_state = 253}, - [6095] = {.lex_state = 253}, - [6096] = {.lex_state = 253}, - [6097] = {.lex_state = 253}, - [6098] = {.lex_state = 253}, - [6099] = {.lex_state = 253}, - [6100] = {.lex_state = 253}, - [6101] = {.lex_state = 253}, - [6102] = {.lex_state = 253}, - [6103] = {.lex_state = 506}, - [6104] = {.lex_state = 256}, - [6105] = {.lex_state = 506}, - [6106] = {.lex_state = 506}, - [6107] = {.lex_state = 506}, - [6108] = {.lex_state = 239, .external_lex_state = 87}, - [6109] = {.lex_state = 506}, - [6110] = {.lex_state = 506}, - [6111] = {.lex_state = 239, .external_lex_state = 87}, - [6112] = {.lex_state = 256}, - [6113] = {.lex_state = 253}, - [6114] = {.lex_state = 303}, - [6115] = {.lex_state = 255}, - [6116] = {.lex_state = 261, .external_lex_state = 77}, - [6117] = {.lex_state = 506}, - [6118] = {.lex_state = 253}, - [6119] = {.lex_state = 253}, - [6120] = {.lex_state = 253}, - [6121] = {.lex_state = 253}, - [6122] = {.lex_state = 253}, - [6123] = {.lex_state = 253}, - [6124] = {.lex_state = 253}, - [6125] = {.lex_state = 253}, - [6126] = {.lex_state = 253}, - [6127] = {.lex_state = 253}, - [6128] = {.lex_state = 253}, - [6129] = {.lex_state = 253}, - [6130] = {.lex_state = 253}, - [6131] = {.lex_state = 253}, - [6132] = {.lex_state = 253}, - [6133] = {.lex_state = 253}, - [6134] = {.lex_state = 253}, - [6135] = {.lex_state = 253}, - [6136] = {.lex_state = 253}, - [6137] = {.lex_state = 253}, - [6138] = {.lex_state = 253}, - [6139] = {.lex_state = 253}, - [6140] = {.lex_state = 253}, - [6141] = {.lex_state = 253}, - [6142] = {.lex_state = 253}, - [6143] = {.lex_state = 253}, - [6144] = {.lex_state = 253}, - [6145] = {.lex_state = 253}, - [6146] = {.lex_state = 253}, - [6147] = {.lex_state = 253}, - [6148] = {.lex_state = 253}, - [6149] = {.lex_state = 253}, - [6150] = {.lex_state = 253}, - [6151] = {.lex_state = 253}, - [6152] = {.lex_state = 253}, - [6153] = {.lex_state = 253}, - [6154] = {.lex_state = 253}, - [6155] = {.lex_state = 253}, - [6156] = {.lex_state = 253}, - [6157] = {.lex_state = 253}, - [6158] = {.lex_state = 253}, - [6159] = {.lex_state = 253}, - [6160] = {.lex_state = 253}, - [6161] = {.lex_state = 253}, - [6162] = {.lex_state = 253}, - [6163] = {.lex_state = 506}, + [1] = {.lex_state = 542, .external_lex_state = 2}, + [2] = {.lex_state = 256, .external_lex_state = 2}, + [3] = {.lex_state = 256, .external_lex_state = 2}, + [4] = {.lex_state = 257, .external_lex_state = 3}, + [5] = {.lex_state = 257, .external_lex_state = 3}, + [6] = {.lex_state = 257, .external_lex_state = 3}, + [7] = {.lex_state = 257, .external_lex_state = 3}, + [8] = {.lex_state = 257, .external_lex_state = 3}, + [9] = {.lex_state = 257, .external_lex_state = 3}, + [10] = {.lex_state = 257, .external_lex_state = 3}, + [11] = {.lex_state = 257, .external_lex_state = 3}, + [12] = {.lex_state = 6, .external_lex_state = 4}, + [13] = {.lex_state = 542, .external_lex_state = 2}, + [14] = {.lex_state = 542, .external_lex_state = 2}, + [15] = {.lex_state = 542, .external_lex_state = 2}, + [16] = {.lex_state = 241, .external_lex_state = 5}, + [17] = {.lex_state = 542, .external_lex_state = 2}, + [18] = {.lex_state = 542, .external_lex_state = 2}, + [19] = {.lex_state = 542, .external_lex_state = 2}, + [20] = {.lex_state = 542, .external_lex_state = 2}, + [21] = {.lex_state = 542, .external_lex_state = 2}, + [22] = {.lex_state = 259, .external_lex_state = 6}, + [23] = {.lex_state = 259, .external_lex_state = 6}, + [24] = {.lex_state = 259, .external_lex_state = 6}, + [25] = {.lex_state = 259, .external_lex_state = 6}, + [26] = {.lex_state = 259, .external_lex_state = 6}, + [27] = {.lex_state = 259, .external_lex_state = 6}, + [28] = {.lex_state = 259, .external_lex_state = 6}, + [29] = {.lex_state = 259, .external_lex_state = 6}, + [30] = {.lex_state = 259, .external_lex_state = 6}, + [31] = {.lex_state = 259, .external_lex_state = 6}, + [32] = {.lex_state = 259, .external_lex_state = 6}, + [33] = {.lex_state = 259, .external_lex_state = 6}, + [34] = {.lex_state = 542, .external_lex_state = 2}, + [35] = {.lex_state = 542, .external_lex_state = 2}, + [36] = {.lex_state = 542, .external_lex_state = 2}, + [37] = {.lex_state = 542, .external_lex_state = 2}, + [38] = {.lex_state = 542, .external_lex_state = 2}, + [39] = {.lex_state = 542, .external_lex_state = 2}, + [40] = {.lex_state = 542, .external_lex_state = 2}, + [41] = {.lex_state = 542, .external_lex_state = 2}, + [42] = {.lex_state = 542, .external_lex_state = 2}, + [43] = {.lex_state = 542, .external_lex_state = 2}, + [44] = {.lex_state = 542, .external_lex_state = 2}, + [45] = {.lex_state = 542, .external_lex_state = 2}, + [46] = {.lex_state = 542, .external_lex_state = 2}, + [47] = {.lex_state = 542, .external_lex_state = 2}, + [48] = {.lex_state = 542, .external_lex_state = 2}, + [49] = {.lex_state = 542, .external_lex_state = 2}, + [50] = {.lex_state = 542, .external_lex_state = 2}, + [51] = {.lex_state = 542, .external_lex_state = 2}, + [52] = {.lex_state = 542, .external_lex_state = 2}, + [53] = {.lex_state = 542, .external_lex_state = 2}, + [54] = {.lex_state = 542, .external_lex_state = 2}, + [55] = {.lex_state = 542, .external_lex_state = 2}, + [56] = {.lex_state = 542, .external_lex_state = 2}, + [57] = {.lex_state = 542, .external_lex_state = 2}, + [58] = {.lex_state = 542, .external_lex_state = 2}, + [59] = {.lex_state = 542, .external_lex_state = 2}, + [60] = {.lex_state = 542, .external_lex_state = 2}, + [61] = {.lex_state = 542, .external_lex_state = 2}, + [62] = {.lex_state = 260, .external_lex_state = 2}, + [63] = {.lex_state = 260, .external_lex_state = 2}, + [64] = {.lex_state = 542, .external_lex_state = 2}, + [65] = {.lex_state = 542, .external_lex_state = 2}, + [66] = {.lex_state = 542, .external_lex_state = 2}, + [67] = {.lex_state = 542, .external_lex_state = 2}, + [68] = {.lex_state = 260, .external_lex_state = 2}, + [69] = {.lex_state = 542, .external_lex_state = 2}, + [70] = {.lex_state = 542, .external_lex_state = 2}, + [71] = {.lex_state = 542, .external_lex_state = 2}, + [72] = {.lex_state = 260, .external_lex_state = 2}, + [73] = {.lex_state = 542, .external_lex_state = 2}, + [74] = {.lex_state = 260, .external_lex_state = 2}, + [75] = {.lex_state = 542, .external_lex_state = 2}, + [76] = {.lex_state = 542, .external_lex_state = 2}, + [77] = {.lex_state = 542, .external_lex_state = 2}, + [78] = {.lex_state = 542, .external_lex_state = 2}, + [79] = {.lex_state = 542, .external_lex_state = 2}, + [80] = {.lex_state = 542, .external_lex_state = 2}, + [81] = {.lex_state = 260, .external_lex_state = 2}, + [82] = {.lex_state = 260, .external_lex_state = 2}, + [83] = {.lex_state = 542, .external_lex_state = 2}, + [84] = {.lex_state = 542, .external_lex_state = 2}, + [85] = {.lex_state = 542, .external_lex_state = 2}, + [86] = {.lex_state = 260, .external_lex_state = 2}, + [87] = {.lex_state = 260, .external_lex_state = 2}, + [88] = {.lex_state = 542, .external_lex_state = 2}, + [89] = {.lex_state = 542, .external_lex_state = 2}, + [90] = {.lex_state = 542, .external_lex_state = 2}, + [91] = {.lex_state = 542, .external_lex_state = 2}, + [92] = {.lex_state = 260, .external_lex_state = 2}, + [93] = {.lex_state = 260, .external_lex_state = 2}, + [94] = {.lex_state = 542, .external_lex_state = 2}, + [95] = {.lex_state = 542, .external_lex_state = 2}, + [96] = {.lex_state = 260, .external_lex_state = 2}, + [97] = {.lex_state = 542, .external_lex_state = 2}, + [98] = {.lex_state = 542, .external_lex_state = 2}, + [99] = {.lex_state = 260, .external_lex_state = 2}, + [100] = {.lex_state = 542, .external_lex_state = 2}, + [101] = {.lex_state = 542, .external_lex_state = 2}, + [102] = {.lex_state = 542, .external_lex_state = 2}, + [103] = {.lex_state = 542, .external_lex_state = 2}, + [104] = {.lex_state = 542, .external_lex_state = 2}, + [105] = {.lex_state = 542, .external_lex_state = 2}, + [106] = {.lex_state = 542, .external_lex_state = 2}, + [107] = {.lex_state = 542, .external_lex_state = 2}, + [108] = {.lex_state = 542, .external_lex_state = 2}, + [109] = {.lex_state = 542, .external_lex_state = 2}, + [110] = {.lex_state = 542, .external_lex_state = 2}, + [111] = {.lex_state = 542, .external_lex_state = 2}, + [112] = {.lex_state = 542, .external_lex_state = 2}, + [113] = {.lex_state = 542, .external_lex_state = 2}, + [114] = {.lex_state = 542, .external_lex_state = 2}, + [115] = {.lex_state = 542, .external_lex_state = 2}, + [116] = {.lex_state = 542, .external_lex_state = 2}, + [117] = {.lex_state = 542, .external_lex_state = 2}, + [118] = {.lex_state = 542, .external_lex_state = 2}, + [119] = {.lex_state = 542, .external_lex_state = 2}, + [120] = {.lex_state = 542, .external_lex_state = 2}, + [121] = {.lex_state = 542, .external_lex_state = 2}, + [122] = {.lex_state = 542, .external_lex_state = 2}, + [123] = {.lex_state = 542, .external_lex_state = 2}, + [124] = {.lex_state = 542, .external_lex_state = 2}, + [125] = {.lex_state = 542, .external_lex_state = 2}, + [126] = {.lex_state = 542, .external_lex_state = 2}, + [127] = {.lex_state = 542, .external_lex_state = 2}, + [128] = {.lex_state = 542, .external_lex_state = 2}, + [129] = {.lex_state = 542, .external_lex_state = 2}, + [130] = {.lex_state = 542, .external_lex_state = 2}, + [131] = {.lex_state = 542, .external_lex_state = 2}, + [132] = {.lex_state = 542, .external_lex_state = 2}, + [133] = {.lex_state = 542, .external_lex_state = 2}, + [134] = {.lex_state = 542, .external_lex_state = 2}, + [135] = {.lex_state = 542, .external_lex_state = 2}, + [136] = {.lex_state = 542, .external_lex_state = 2}, + [137] = {.lex_state = 542, .external_lex_state = 2}, + [138] = {.lex_state = 542, .external_lex_state = 2}, + [139] = {.lex_state = 542, .external_lex_state = 2}, + [140] = {.lex_state = 542, .external_lex_state = 2}, + [141] = {.lex_state = 542, .external_lex_state = 2}, + [142] = {.lex_state = 542, .external_lex_state = 2}, + [143] = {.lex_state = 542, .external_lex_state = 2}, + [144] = {.lex_state = 542, .external_lex_state = 2}, + [145] = {.lex_state = 542, .external_lex_state = 2}, + [146] = {.lex_state = 542, .external_lex_state = 2}, + [147] = {.lex_state = 542, .external_lex_state = 2}, + [148] = {.lex_state = 542, .external_lex_state = 2}, + [149] = {.lex_state = 542, .external_lex_state = 2}, + [150] = {.lex_state = 542, .external_lex_state = 2}, + [151] = {.lex_state = 542, .external_lex_state = 2}, + [152] = {.lex_state = 542, .external_lex_state = 2}, + [153] = {.lex_state = 542, .external_lex_state = 2}, + [154] = {.lex_state = 260, .external_lex_state = 2}, + [155] = {.lex_state = 542, .external_lex_state = 2}, + [156] = {.lex_state = 542, .external_lex_state = 2}, + [157] = {.lex_state = 542, .external_lex_state = 2}, + [158] = {.lex_state = 542, .external_lex_state = 2}, + [159] = {.lex_state = 542, .external_lex_state = 2}, + [160] = {.lex_state = 542, .external_lex_state = 2}, + [161] = {.lex_state = 542, .external_lex_state = 2}, + [162] = {.lex_state = 542, .external_lex_state = 2}, + [163] = {.lex_state = 542, .external_lex_state = 2}, + [164] = {.lex_state = 542, .external_lex_state = 2}, + [165] = {.lex_state = 542, .external_lex_state = 2}, + [166] = {.lex_state = 542, .external_lex_state = 2}, + [167] = {.lex_state = 542, .external_lex_state = 2}, + [168] = {.lex_state = 542, .external_lex_state = 2}, + [169] = {.lex_state = 542, .external_lex_state = 2}, + [170] = {.lex_state = 542, .external_lex_state = 2}, + [171] = {.lex_state = 542, .external_lex_state = 2}, + [172] = {.lex_state = 542, .external_lex_state = 2}, + [173] = {.lex_state = 542, .external_lex_state = 2}, + [174] = {.lex_state = 542, .external_lex_state = 2}, + [175] = {.lex_state = 542, .external_lex_state = 2}, + [176] = {.lex_state = 542, .external_lex_state = 2}, + [177] = {.lex_state = 542, .external_lex_state = 2}, + [178] = {.lex_state = 542, .external_lex_state = 2}, + [179] = {.lex_state = 542, .external_lex_state = 2}, + [180] = {.lex_state = 542, .external_lex_state = 2}, + [181] = {.lex_state = 542, .external_lex_state = 2}, + [182] = {.lex_state = 542, .external_lex_state = 2}, + [183] = {.lex_state = 542, .external_lex_state = 2}, + [184] = {.lex_state = 542, .external_lex_state = 2}, + [185] = {.lex_state = 542, .external_lex_state = 2}, + [186] = {.lex_state = 542, .external_lex_state = 2}, + [187] = {.lex_state = 542, .external_lex_state = 2}, + [188] = {.lex_state = 542, .external_lex_state = 2}, + [189] = {.lex_state = 542, .external_lex_state = 2}, + [190] = {.lex_state = 542, .external_lex_state = 2}, + [191] = {.lex_state = 542, .external_lex_state = 2}, + [192] = {.lex_state = 542, .external_lex_state = 2}, + [193] = {.lex_state = 542, .external_lex_state = 2}, + [194] = {.lex_state = 542, .external_lex_state = 2}, + [195] = {.lex_state = 542, .external_lex_state = 2}, + [196] = {.lex_state = 542, .external_lex_state = 2}, + [197] = {.lex_state = 542, .external_lex_state = 2}, + [198] = {.lex_state = 542, .external_lex_state = 2}, + [199] = {.lex_state = 542, .external_lex_state = 2}, + [200] = {.lex_state = 542, .external_lex_state = 2}, + [201] = {.lex_state = 542, .external_lex_state = 2}, + [202] = {.lex_state = 542, .external_lex_state = 2}, + [203] = {.lex_state = 542, .external_lex_state = 2}, + [204] = {.lex_state = 542, .external_lex_state = 2}, + [205] = {.lex_state = 542, .external_lex_state = 2}, + [206] = {.lex_state = 542, .external_lex_state = 2}, + [207] = {.lex_state = 542, .external_lex_state = 2}, + [208] = {.lex_state = 542, .external_lex_state = 2}, + [209] = {.lex_state = 542, .external_lex_state = 2}, + [210] = {.lex_state = 542, .external_lex_state = 2}, + [211] = {.lex_state = 542, .external_lex_state = 2}, + [212] = {.lex_state = 542, .external_lex_state = 2}, + [213] = {.lex_state = 542, .external_lex_state = 2}, + [214] = {.lex_state = 542, .external_lex_state = 2}, + [215] = {.lex_state = 542, .external_lex_state = 2}, + [216] = {.lex_state = 542, .external_lex_state = 2}, + [217] = {.lex_state = 542, .external_lex_state = 2}, + [218] = {.lex_state = 542, .external_lex_state = 2}, + [219] = {.lex_state = 542, .external_lex_state = 2}, + [220] = {.lex_state = 542, .external_lex_state = 2}, + [221] = {.lex_state = 542, .external_lex_state = 2}, + [222] = {.lex_state = 542, .external_lex_state = 2}, + [223] = {.lex_state = 542, .external_lex_state = 2}, + [224] = {.lex_state = 542, .external_lex_state = 2}, + [225] = {.lex_state = 542, .external_lex_state = 2}, + [226] = {.lex_state = 542, .external_lex_state = 2}, + [227] = {.lex_state = 542, .external_lex_state = 2}, + [228] = {.lex_state = 542, .external_lex_state = 2}, + [229] = {.lex_state = 542, .external_lex_state = 2}, + [230] = {.lex_state = 542, .external_lex_state = 2}, + [231] = {.lex_state = 542, .external_lex_state = 2}, + [232] = {.lex_state = 542, .external_lex_state = 2}, + [233] = {.lex_state = 542, .external_lex_state = 2}, + [234] = {.lex_state = 542, .external_lex_state = 2}, + [235] = {.lex_state = 542, .external_lex_state = 2}, + [236] = {.lex_state = 542, .external_lex_state = 2}, + [237] = {.lex_state = 542, .external_lex_state = 2}, + [238] = {.lex_state = 542, .external_lex_state = 2}, + [239] = {.lex_state = 542, .external_lex_state = 2}, + [240] = {.lex_state = 542, .external_lex_state = 2}, + [241] = {.lex_state = 542, .external_lex_state = 2}, + [242] = {.lex_state = 542, .external_lex_state = 2}, + [243] = {.lex_state = 542, .external_lex_state = 2}, + [244] = {.lex_state = 542, .external_lex_state = 2}, + [245] = {.lex_state = 542, .external_lex_state = 2}, + [246] = {.lex_state = 542, .external_lex_state = 2}, + [247] = {.lex_state = 542, .external_lex_state = 2}, + [248] = {.lex_state = 542, .external_lex_state = 2}, + [249] = {.lex_state = 542, .external_lex_state = 2}, + [250] = {.lex_state = 542, .external_lex_state = 2}, + [251] = {.lex_state = 542, .external_lex_state = 2}, + [252] = {.lex_state = 542, .external_lex_state = 2}, + [253] = {.lex_state = 542, .external_lex_state = 2}, + [254] = {.lex_state = 542, .external_lex_state = 2}, + [255] = {.lex_state = 542, .external_lex_state = 2}, + [256] = {.lex_state = 542, .external_lex_state = 2}, + [257] = {.lex_state = 542, .external_lex_state = 2}, + [258] = {.lex_state = 542, .external_lex_state = 2}, + [259] = {.lex_state = 542, .external_lex_state = 2}, + [260] = {.lex_state = 542, .external_lex_state = 2}, + [261] = {.lex_state = 542, .external_lex_state = 2}, + [262] = {.lex_state = 542, .external_lex_state = 2}, + [263] = {.lex_state = 542, .external_lex_state = 2}, + [264] = {.lex_state = 542, .external_lex_state = 2}, + [265] = {.lex_state = 542, .external_lex_state = 2}, + [266] = {.lex_state = 542, .external_lex_state = 2}, + [267] = {.lex_state = 542, .external_lex_state = 2}, + [268] = {.lex_state = 542, .external_lex_state = 2}, + [269] = {.lex_state = 542, .external_lex_state = 2}, + [270] = {.lex_state = 542, .external_lex_state = 2}, + [271] = {.lex_state = 542, .external_lex_state = 2}, + [272] = {.lex_state = 542, .external_lex_state = 2}, + [273] = {.lex_state = 542, .external_lex_state = 2}, + [274] = {.lex_state = 542, .external_lex_state = 2}, + [275] = {.lex_state = 542, .external_lex_state = 2}, + [276] = {.lex_state = 542, .external_lex_state = 2}, + [277] = {.lex_state = 542, .external_lex_state = 2}, + [278] = {.lex_state = 542, .external_lex_state = 2}, + [279] = {.lex_state = 542, .external_lex_state = 2}, + [280] = {.lex_state = 542, .external_lex_state = 2}, + [281] = {.lex_state = 542, .external_lex_state = 2}, + [282] = {.lex_state = 260, .external_lex_state = 2}, + [283] = {.lex_state = 542, .external_lex_state = 2}, + [284] = {.lex_state = 260, .external_lex_state = 2}, + [285] = {.lex_state = 542, .external_lex_state = 2}, + [286] = {.lex_state = 542, .external_lex_state = 2}, + [287] = {.lex_state = 542, .external_lex_state = 2}, + [288] = {.lex_state = 542, .external_lex_state = 2}, + [289] = {.lex_state = 542, .external_lex_state = 2}, + [290] = {.lex_state = 260, .external_lex_state = 2}, + [291] = {.lex_state = 542, .external_lex_state = 2}, + [292] = {.lex_state = 542, .external_lex_state = 2}, + [293] = {.lex_state = 542, .external_lex_state = 2}, + [294] = {.lex_state = 542, .external_lex_state = 2}, + [295] = {.lex_state = 542, .external_lex_state = 2}, + [296] = {.lex_state = 542, .external_lex_state = 2}, + [297] = {.lex_state = 542, .external_lex_state = 2}, + [298] = {.lex_state = 542, .external_lex_state = 2}, + [299] = {.lex_state = 542, .external_lex_state = 2}, + [300] = {.lex_state = 542, .external_lex_state = 2}, + [301] = {.lex_state = 542, .external_lex_state = 2}, + [302] = {.lex_state = 542, .external_lex_state = 2}, + [303] = {.lex_state = 542, .external_lex_state = 2}, + [304] = {.lex_state = 542, .external_lex_state = 2}, + [305] = {.lex_state = 542, .external_lex_state = 2}, + [306] = {.lex_state = 542, .external_lex_state = 2}, + [307] = {.lex_state = 542, .external_lex_state = 2}, + [308] = {.lex_state = 542, .external_lex_state = 2}, + [309] = {.lex_state = 542, .external_lex_state = 2}, + [310] = {.lex_state = 542, .external_lex_state = 2}, + [311] = {.lex_state = 542, .external_lex_state = 2}, + [312] = {.lex_state = 542, .external_lex_state = 2}, + [313] = {.lex_state = 542, .external_lex_state = 2}, + [314] = {.lex_state = 542, .external_lex_state = 2}, + [315] = {.lex_state = 542, .external_lex_state = 2}, + [316] = {.lex_state = 542, .external_lex_state = 2}, + [317] = {.lex_state = 542, .external_lex_state = 2}, + [318] = {.lex_state = 542, .external_lex_state = 2}, + [319] = {.lex_state = 542, .external_lex_state = 2}, + [320] = {.lex_state = 542, .external_lex_state = 2}, + [321] = {.lex_state = 542, .external_lex_state = 2}, + [322] = {.lex_state = 542, .external_lex_state = 2}, + [323] = {.lex_state = 542, .external_lex_state = 2}, + [324] = {.lex_state = 542, .external_lex_state = 2}, + [325] = {.lex_state = 542, .external_lex_state = 2}, + [326] = {.lex_state = 542, .external_lex_state = 2}, + [327] = {.lex_state = 542, .external_lex_state = 2}, + [328] = {.lex_state = 542, .external_lex_state = 2}, + [329] = {.lex_state = 542, .external_lex_state = 2}, + [330] = {.lex_state = 542, .external_lex_state = 2}, + [331] = {.lex_state = 542, .external_lex_state = 2}, + [332] = {.lex_state = 542, .external_lex_state = 2}, + [333] = {.lex_state = 542, .external_lex_state = 2}, + [334] = {.lex_state = 542, .external_lex_state = 2}, + [335] = {.lex_state = 542, .external_lex_state = 2}, + [336] = {.lex_state = 542, .external_lex_state = 2}, + [337] = {.lex_state = 542, .external_lex_state = 2}, + [338] = {.lex_state = 542, .external_lex_state = 2}, + [339] = {.lex_state = 542, .external_lex_state = 2}, + [340] = {.lex_state = 542, .external_lex_state = 2}, + [341] = {.lex_state = 542, .external_lex_state = 2}, + [342] = {.lex_state = 542, .external_lex_state = 2}, + [343] = {.lex_state = 542, .external_lex_state = 2}, + [344] = {.lex_state = 542, .external_lex_state = 2}, + [345] = {.lex_state = 542, .external_lex_state = 2}, + [346] = {.lex_state = 542, .external_lex_state = 2}, + [347] = {.lex_state = 542, .external_lex_state = 2}, + [348] = {.lex_state = 542, .external_lex_state = 2}, + [349] = {.lex_state = 542, .external_lex_state = 2}, + [350] = {.lex_state = 542, .external_lex_state = 2}, + [351] = {.lex_state = 542, .external_lex_state = 2}, + [352] = {.lex_state = 542, .external_lex_state = 2}, + [353] = {.lex_state = 542, .external_lex_state = 2}, + [354] = {.lex_state = 542, .external_lex_state = 2}, + [355] = {.lex_state = 542, .external_lex_state = 2}, + [356] = {.lex_state = 542, .external_lex_state = 2}, + [357] = {.lex_state = 542, .external_lex_state = 2}, + [358] = {.lex_state = 542, .external_lex_state = 2}, + [359] = {.lex_state = 542, .external_lex_state = 2}, + [360] = {.lex_state = 542, .external_lex_state = 2}, + [361] = {.lex_state = 542, .external_lex_state = 2}, + [362] = {.lex_state = 542, .external_lex_state = 2}, + [363] = {.lex_state = 542, .external_lex_state = 2}, + [364] = {.lex_state = 542, .external_lex_state = 2}, + [365] = {.lex_state = 542, .external_lex_state = 2}, + [366] = {.lex_state = 542, .external_lex_state = 2}, + [367] = {.lex_state = 542, .external_lex_state = 2}, + [368] = {.lex_state = 542, .external_lex_state = 2}, + [369] = {.lex_state = 542, .external_lex_state = 2}, + [370] = {.lex_state = 542, .external_lex_state = 2}, + [371] = {.lex_state = 542, .external_lex_state = 2}, + [372] = {.lex_state = 542, .external_lex_state = 2}, + [373] = {.lex_state = 542, .external_lex_state = 2}, + [374] = {.lex_state = 542, .external_lex_state = 2}, + [375] = {.lex_state = 542, .external_lex_state = 2}, + [376] = {.lex_state = 542, .external_lex_state = 2}, + [377] = {.lex_state = 542, .external_lex_state = 2}, + [378] = {.lex_state = 542, .external_lex_state = 2}, + [379] = {.lex_state = 542, .external_lex_state = 2}, + [380] = {.lex_state = 542, .external_lex_state = 2}, + [381] = {.lex_state = 542, .external_lex_state = 2}, + [382] = {.lex_state = 542, .external_lex_state = 2}, + [383] = {.lex_state = 542, .external_lex_state = 2}, + [384] = {.lex_state = 542, .external_lex_state = 2}, + [385] = {.lex_state = 542, .external_lex_state = 2}, + [386] = {.lex_state = 542, .external_lex_state = 2}, + [387] = {.lex_state = 542, .external_lex_state = 2}, + [388] = {.lex_state = 542, .external_lex_state = 2}, + [389] = {.lex_state = 542, .external_lex_state = 2}, + [390] = {.lex_state = 542, .external_lex_state = 2}, + [391] = {.lex_state = 542, .external_lex_state = 2}, + [392] = {.lex_state = 542, .external_lex_state = 2}, + [393] = {.lex_state = 542, .external_lex_state = 2}, + [394] = {.lex_state = 542, .external_lex_state = 2}, + [395] = {.lex_state = 542, .external_lex_state = 2}, + [396] = {.lex_state = 542, .external_lex_state = 2}, + [397] = {.lex_state = 542, .external_lex_state = 2}, + [398] = {.lex_state = 542, .external_lex_state = 2}, + [399] = {.lex_state = 542, .external_lex_state = 2}, + [400] = {.lex_state = 542, .external_lex_state = 2}, + [401] = {.lex_state = 542, .external_lex_state = 2}, + [402] = {.lex_state = 542, .external_lex_state = 2}, + [403] = {.lex_state = 542, .external_lex_state = 2}, + [404] = {.lex_state = 542, .external_lex_state = 2}, + [405] = {.lex_state = 542, .external_lex_state = 2}, + [406] = {.lex_state = 542, .external_lex_state = 2}, + [407] = {.lex_state = 542, .external_lex_state = 2}, + [408] = {.lex_state = 542, .external_lex_state = 2}, + [409] = {.lex_state = 542, .external_lex_state = 2}, + [410] = {.lex_state = 542, .external_lex_state = 2}, + [411] = {.lex_state = 542, .external_lex_state = 2}, + [412] = {.lex_state = 542, .external_lex_state = 2}, + [413] = {.lex_state = 542, .external_lex_state = 2}, + [414] = {.lex_state = 542, .external_lex_state = 2}, + [415] = {.lex_state = 542, .external_lex_state = 2}, + [416] = {.lex_state = 542, .external_lex_state = 2}, + [417] = {.lex_state = 542, .external_lex_state = 2}, + [418] = {.lex_state = 542, .external_lex_state = 2}, + [419] = {.lex_state = 542, .external_lex_state = 2}, + [420] = {.lex_state = 542, .external_lex_state = 2}, + [421] = {.lex_state = 542, .external_lex_state = 2}, + [422] = {.lex_state = 542, .external_lex_state = 2}, + [423] = {.lex_state = 542, .external_lex_state = 2}, + [424] = {.lex_state = 542, .external_lex_state = 2}, + [425] = {.lex_state = 542, .external_lex_state = 2}, + [426] = {.lex_state = 542, .external_lex_state = 2}, + [427] = {.lex_state = 542, .external_lex_state = 2}, + [428] = {.lex_state = 542, .external_lex_state = 2}, + [429] = {.lex_state = 542, .external_lex_state = 2}, + [430] = {.lex_state = 542, .external_lex_state = 2}, + [431] = {.lex_state = 542, .external_lex_state = 2}, + [432] = {.lex_state = 542, .external_lex_state = 2}, + [433] = {.lex_state = 542, .external_lex_state = 2}, + [434] = {.lex_state = 542, .external_lex_state = 2}, + [435] = {.lex_state = 542, .external_lex_state = 2}, + [436] = {.lex_state = 542, .external_lex_state = 2}, + [437] = {.lex_state = 542, .external_lex_state = 2}, + [438] = {.lex_state = 542, .external_lex_state = 2}, + [439] = {.lex_state = 542, .external_lex_state = 2}, + [440] = {.lex_state = 542, .external_lex_state = 2}, + [441] = {.lex_state = 542, .external_lex_state = 2}, + [442] = {.lex_state = 542, .external_lex_state = 2}, + [443] = {.lex_state = 542, .external_lex_state = 2}, + [444] = {.lex_state = 542, .external_lex_state = 2}, + [445] = {.lex_state = 542, .external_lex_state = 2}, + [446] = {.lex_state = 542, .external_lex_state = 2}, + [447] = {.lex_state = 542, .external_lex_state = 2}, + [448] = {.lex_state = 542, .external_lex_state = 2}, + [449] = {.lex_state = 542, .external_lex_state = 2}, + [450] = {.lex_state = 542, .external_lex_state = 2}, + [451] = {.lex_state = 242, .external_lex_state = 7}, + [452] = {.lex_state = 245, .external_lex_state = 8}, + [453] = {.lex_state = 245, .external_lex_state = 8}, + [454] = {.lex_state = 245, .external_lex_state = 8}, + [455] = {.lex_state = 245, .external_lex_state = 8}, + [456] = {.lex_state = 245, .external_lex_state = 8}, + [457] = {.lex_state = 245, .external_lex_state = 8}, + [458] = {.lex_state = 244, .external_lex_state = 7}, + [459] = {.lex_state = 243, .external_lex_state = 7}, + [460] = {.lex_state = 246, .external_lex_state = 7}, + [461] = {.lex_state = 245, .external_lex_state = 8}, + [462] = {.lex_state = 245, .external_lex_state = 8}, + [463] = {.lex_state = 242, .external_lex_state = 7}, + [464] = {.lex_state = 12, .external_lex_state = 9}, + [465] = {.lex_state = 12, .external_lex_state = 9}, + [466] = {.lex_state = 240, .external_lex_state = 10}, + [467] = {.lex_state = 240, .external_lex_state = 10}, + [468] = {.lex_state = 112, .external_lex_state = 4}, + [469] = {.lex_state = 112, .external_lex_state = 4}, + [470] = {.lex_state = 112, .external_lex_state = 4}, + [471] = {.lex_state = 112, .external_lex_state = 4}, + [472] = {.lex_state = 112, .external_lex_state = 4}, + [473] = {.lex_state = 112, .external_lex_state = 4}, + [474] = {.lex_state = 112, .external_lex_state = 4}, + [475] = {.lex_state = 112, .external_lex_state = 4}, + [476] = {.lex_state = 112, .external_lex_state = 4}, + [477] = {.lex_state = 112, .external_lex_state = 4}, + [478] = {.lex_state = 112, .external_lex_state = 4}, + [479] = {.lex_state = 112, .external_lex_state = 4}, + [480] = {.lex_state = 112, .external_lex_state = 4}, + [481] = {.lex_state = 112, .external_lex_state = 4}, + [482] = {.lex_state = 112, .external_lex_state = 4}, + [483] = {.lex_state = 112, .external_lex_state = 4}, + [484] = {.lex_state = 112, .external_lex_state = 4}, + [485] = {.lex_state = 112, .external_lex_state = 4}, + [486] = {.lex_state = 112, .external_lex_state = 4}, + [487] = {.lex_state = 112, .external_lex_state = 4}, + [488] = {.lex_state = 112, .external_lex_state = 4}, + [489] = {.lex_state = 112, .external_lex_state = 4}, + [490] = {.lex_state = 112, .external_lex_state = 4}, + [491] = {.lex_state = 112, .external_lex_state = 4}, + [492] = {.lex_state = 112, .external_lex_state = 4}, + [493] = {.lex_state = 174, .external_lex_state = 11}, + [494] = {.lex_state = 174, .external_lex_state = 11}, + [495] = {.lex_state = 174, .external_lex_state = 11}, + [496] = {.lex_state = 263, .external_lex_state = 5}, + [497] = {.lex_state = 263, .external_lex_state = 5}, + [498] = {.lex_state = 263, .external_lex_state = 5}, + [499] = {.lex_state = 263, .external_lex_state = 5}, + [500] = {.lex_state = 263, .external_lex_state = 5}, + [501] = {.lex_state = 263, .external_lex_state = 5}, + [502] = {.lex_state = 174, .external_lex_state = 11}, + [503] = {.lex_state = 263, .external_lex_state = 5}, + [504] = {.lex_state = 263, .external_lex_state = 5}, + [505] = {.lex_state = 263, .external_lex_state = 5}, + [506] = {.lex_state = 263, .external_lex_state = 5}, + [507] = {.lex_state = 263, .external_lex_state = 5}, + [508] = {.lex_state = 263, .external_lex_state = 5}, + [509] = {.lex_state = 263, .external_lex_state = 5}, + [510] = {.lex_state = 263, .external_lex_state = 5}, + [511] = {.lex_state = 263, .external_lex_state = 5}, + [512] = {.lex_state = 263, .external_lex_state = 5}, + [513] = {.lex_state = 263, .external_lex_state = 5}, + [514] = {.lex_state = 263, .external_lex_state = 5}, + [515] = {.lex_state = 263, .external_lex_state = 5}, + [516] = {.lex_state = 263, .external_lex_state = 5}, + [517] = {.lex_state = 263, .external_lex_state = 5}, + [518] = {.lex_state = 263, .external_lex_state = 5}, + [519] = {.lex_state = 263, .external_lex_state = 5}, + [520] = {.lex_state = 263, .external_lex_state = 5}, + [521] = {.lex_state = 263, .external_lex_state = 5}, + [522] = {.lex_state = 264, .external_lex_state = 12}, + [523] = {.lex_state = 264, .external_lex_state = 12}, + [524] = {.lex_state = 264, .external_lex_state = 12}, + [525] = {.lex_state = 264, .external_lex_state = 12}, + [526] = {.lex_state = 258, .external_lex_state = 2}, + [527] = {.lex_state = 258, .external_lex_state = 2}, + [528] = {.lex_state = 177, .external_lex_state = 13}, + [529] = {.lex_state = 177, .external_lex_state = 13}, + [530] = {.lex_state = 180, .external_lex_state = 11}, + [531] = {.lex_state = 180, .external_lex_state = 11}, + [532] = {.lex_state = 177, .external_lex_state = 14}, + [533] = {.lex_state = 527, .external_lex_state = 11}, + [534] = {.lex_state = 527, .external_lex_state = 11}, + [535] = {.lex_state = 177, .external_lex_state = 14}, + [536] = {.lex_state = 527, .external_lex_state = 11}, + [537] = {.lex_state = 527, .external_lex_state = 11}, + [538] = {.lex_state = 163, .external_lex_state = 15}, + [539] = {.lex_state = 163, .external_lex_state = 15}, + [540] = {.lex_state = 177, .external_lex_state = 14}, + [541] = {.lex_state = 180, .external_lex_state = 16}, + [542] = {.lex_state = 180, .external_lex_state = 16}, + [543] = {.lex_state = 527, .external_lex_state = 11}, + [544] = {.lex_state = 527, .external_lex_state = 11}, + [545] = {.lex_state = 527, .external_lex_state = 11}, + [546] = {.lex_state = 186, .external_lex_state = 17}, + [547] = {.lex_state = 180, .external_lex_state = 16}, + [548] = {.lex_state = 186, .external_lex_state = 17}, + [549] = {.lex_state = 176, .external_lex_state = 9}, + [550] = {.lex_state = 176, .external_lex_state = 9}, + [551] = {.lex_state = 186, .external_lex_state = 17}, + [552] = {.lex_state = 179, .external_lex_state = 18}, + [553] = {.lex_state = 179, .external_lex_state = 18}, + [554] = {.lex_state = 527, .external_lex_state = 11}, + [555] = {.lex_state = 182, .external_lex_state = 9}, + [556] = {.lex_state = 528, .external_lex_state = 9}, + [557] = {.lex_state = 527, .external_lex_state = 16}, + [558] = {.lex_state = 528, .external_lex_state = 9}, + [559] = {.lex_state = 189, .external_lex_state = 19}, + [560] = {.lex_state = 527, .external_lex_state = 16}, + [561] = {.lex_state = 527, .external_lex_state = 16}, + [562] = {.lex_state = 527, .external_lex_state = 16}, + [563] = {.lex_state = 189, .external_lex_state = 19}, + [564] = {.lex_state = 182, .external_lex_state = 9}, + [565] = {.lex_state = 189, .external_lex_state = 19}, + [566] = {.lex_state = 527, .external_lex_state = 16}, + [567] = {.lex_state = 188, .external_lex_state = 20}, + [568] = {.lex_state = 188, .external_lex_state = 20}, + [569] = {.lex_state = 527, .external_lex_state = 16}, + [570] = {.lex_state = 530, .external_lex_state = 19}, + [571] = {.lex_state = 527, .external_lex_state = 16}, + [572] = {.lex_state = 191, .external_lex_state = 20}, + [573] = {.lex_state = 195, .external_lex_state = 17}, + [574] = {.lex_state = 527, .external_lex_state = 16}, + [575] = {.lex_state = 195, .external_lex_state = 17}, + [576] = {.lex_state = 530, .external_lex_state = 19}, + [577] = {.lex_state = 530, .external_lex_state = 19}, + [578] = {.lex_state = 531, .external_lex_state = 20}, + [579] = {.lex_state = 528, .external_lex_state = 9}, + [580] = {.lex_state = 528, .external_lex_state = 9}, + [581] = {.lex_state = 530, .external_lex_state = 19}, + [582] = {.lex_state = 527, .external_lex_state = 16}, + [583] = {.lex_state = 195, .external_lex_state = 17}, + [584] = {.lex_state = 527, .external_lex_state = 16}, + [585] = {.lex_state = 530, .external_lex_state = 19}, + [586] = {.lex_state = 530, .external_lex_state = 19}, + [587] = {.lex_state = 527, .external_lex_state = 16}, + [588] = {.lex_state = 531, .external_lex_state = 20}, + [589] = {.lex_state = 191, .external_lex_state = 20}, + [590] = {.lex_state = 186, .external_lex_state = 21}, + [591] = {.lex_state = 195, .external_lex_state = 21}, + [592] = {.lex_state = 530, .external_lex_state = 19}, + [593] = {.lex_state = 195, .external_lex_state = 21}, + [594] = {.lex_state = 530, .external_lex_state = 19}, + [595] = {.lex_state = 195, .external_lex_state = 21}, + [596] = {.lex_state = 180, .external_lex_state = 11}, + [597] = {.lex_state = 197, .external_lex_state = 17}, + [598] = {.lex_state = 186, .external_lex_state = 21}, + [599] = {.lex_state = 542, .external_lex_state = 2}, + [600] = {.lex_state = 180, .external_lex_state = 11}, + [601] = {.lex_state = 198, .external_lex_state = 19}, + [602] = {.lex_state = 530, .external_lex_state = 19}, + [603] = {.lex_state = 197, .external_lex_state = 17}, + [604] = {.lex_state = 195, .external_lex_state = 17}, + [605] = {.lex_state = 197, .external_lex_state = 17}, + [606] = {.lex_state = 531, .external_lex_state = 20}, + [607] = {.lex_state = 195, .external_lex_state = 17}, + [608] = {.lex_state = 531, .external_lex_state = 20}, + [609] = {.lex_state = 198, .external_lex_state = 19}, + [610] = {.lex_state = 530, .external_lex_state = 19}, + [611] = {.lex_state = 197, .external_lex_state = 17}, + [612] = {.lex_state = 530, .external_lex_state = 19}, + [613] = {.lex_state = 186, .external_lex_state = 21}, + [614] = {.lex_state = 198, .external_lex_state = 19}, + [615] = {.lex_state = 198, .external_lex_state = 22}, + [616] = {.lex_state = 201, .external_lex_state = 21}, + [617] = {.lex_state = 299, .external_lex_state = 23}, + [618] = {.lex_state = 295, .external_lex_state = 2}, + [619] = {.lex_state = 295, .external_lex_state = 2}, + [620] = {.lex_state = 299, .external_lex_state = 23}, + [621] = {.lex_state = 198, .external_lex_state = 22}, + [622] = {.lex_state = 259, .external_lex_state = 6}, + [623] = {.lex_state = 295, .external_lex_state = 2}, + [624] = {.lex_state = 542, .external_lex_state = 2}, + [625] = {.lex_state = 542, .external_lex_state = 2}, + [626] = {.lex_state = 295, .external_lex_state = 2}, + [627] = {.lex_state = 533, .external_lex_state = 19}, + [628] = {.lex_state = 200, .external_lex_state = 17}, + [629] = {.lex_state = 189, .external_lex_state = 22}, + [630] = {.lex_state = 201, .external_lex_state = 21}, + [631] = {.lex_state = 195, .external_lex_state = 21}, + [632] = {.lex_state = 189, .external_lex_state = 22}, + [633] = {.lex_state = 189, .external_lex_state = 22}, + [634] = {.lex_state = 200, .external_lex_state = 17}, + [635] = {.lex_state = 195, .external_lex_state = 21}, + [636] = {.lex_state = 295, .external_lex_state = 2}, + [637] = {.lex_state = 200, .external_lex_state = 17}, + [638] = {.lex_state = 200, .external_lex_state = 17}, + [639] = {.lex_state = 203, .external_lex_state = 19}, + [640] = {.lex_state = 203, .external_lex_state = 19}, + [641] = {.lex_state = 200, .external_lex_state = 17}, + [642] = {.lex_state = 533, .external_lex_state = 19}, + [643] = {.lex_state = 200, .external_lex_state = 17}, + [644] = {.lex_state = 295, .external_lex_state = 2}, + [645] = {.lex_state = 198, .external_lex_state = 19}, + [646] = {.lex_state = 533, .external_lex_state = 19}, + [647] = {.lex_state = 203, .external_lex_state = 19}, + [648] = {.lex_state = 198, .external_lex_state = 19}, + [649] = {.lex_state = 533, .external_lex_state = 19}, + [650] = {.lex_state = 295, .external_lex_state = 2}, + [651] = {.lex_state = 533, .external_lex_state = 19}, + [652] = {.lex_state = 203, .external_lex_state = 19}, + [653] = {.lex_state = 198, .external_lex_state = 22}, + [654] = {.lex_state = 533, .external_lex_state = 19}, + [655] = {.lex_state = 259, .external_lex_state = 6}, + [656] = {.lex_state = 295, .external_lex_state = 2}, + [657] = {.lex_state = 201, .external_lex_state = 21}, + [658] = {.lex_state = 198, .external_lex_state = 22}, + [659] = {.lex_state = 262, .external_lex_state = 24}, + [660] = {.lex_state = 207, .external_lex_state = 22}, + [661] = {.lex_state = 262, .external_lex_state = 24}, + [662] = {.lex_state = 206, .external_lex_state = 19}, + [663] = {.lex_state = 209, .external_lex_state = 19}, + [664] = {.lex_state = 530, .external_lex_state = 22}, + [665] = {.lex_state = 198, .external_lex_state = 22}, + [666] = {.lex_state = 209, .external_lex_state = 19}, + [667] = {.lex_state = 530, .external_lex_state = 22}, + [668] = {.lex_state = 206, .external_lex_state = 19}, + [669] = {.lex_state = 535, .external_lex_state = 19}, + [670] = {.lex_state = 209, .external_lex_state = 19}, + [671] = {.lex_state = 262, .external_lex_state = 24}, + [672] = {.lex_state = 533, .external_lex_state = 22}, + [673] = {.lex_state = 533, .external_lex_state = 19}, + [674] = {.lex_state = 209, .external_lex_state = 19}, + [675] = {.lex_state = 180, .external_lex_state = 16}, + [676] = {.lex_state = 209, .external_lex_state = 19}, + [677] = {.lex_state = 206, .external_lex_state = 19}, + [678] = {.lex_state = 533, .external_lex_state = 22}, + [679] = {.lex_state = 209, .external_lex_state = 19}, + [680] = {.lex_state = 207, .external_lex_state = 22}, + [681] = {.lex_state = 201, .external_lex_state = 21}, + [682] = {.lex_state = 533, .external_lex_state = 19}, + [683] = {.lex_state = 535, .external_lex_state = 19}, + [684] = {.lex_state = 533, .external_lex_state = 22}, + [685] = {.lex_state = 262, .external_lex_state = 24}, + [686] = {.lex_state = 533, .external_lex_state = 19}, + [687] = {.lex_state = 535, .external_lex_state = 19}, + [688] = {.lex_state = 180, .external_lex_state = 16}, + [689] = {.lex_state = 533, .external_lex_state = 19}, + [690] = {.lex_state = 530, .external_lex_state = 22}, + [691] = {.lex_state = 533, .external_lex_state = 22}, + [692] = {.lex_state = 206, .external_lex_state = 19}, + [693] = {.lex_state = 530, .external_lex_state = 22}, + [694] = {.lex_state = 533, .external_lex_state = 19}, + [695] = {.lex_state = 530, .external_lex_state = 22}, + [696] = {.lex_state = 214, .external_lex_state = 9}, + [697] = {.lex_state = 262, .external_lex_state = 24}, + [698] = {.lex_state = 262, .external_lex_state = 24}, + [699] = {.lex_state = 214, .external_lex_state = 9}, + [700] = {.lex_state = 535, .external_lex_state = 19}, + [701] = {.lex_state = 262, .external_lex_state = 24}, + [702] = {.lex_state = 533, .external_lex_state = 22}, + [703] = {.lex_state = 180, .external_lex_state = 16}, + [704] = {.lex_state = 533, .external_lex_state = 19}, + [705] = {.lex_state = 533, .external_lex_state = 22}, + [706] = {.lex_state = 201, .external_lex_state = 21}, + [707] = {.lex_state = 207, .external_lex_state = 22}, + [708] = {.lex_state = 533, .external_lex_state = 19}, + [709] = {.lex_state = 530, .external_lex_state = 22}, + [710] = {.lex_state = 216, .external_lex_state = 19}, + [711] = {.lex_state = 262, .external_lex_state = 24}, + [712] = {.lex_state = 262, .external_lex_state = 24}, + [713] = {.lex_state = 262, .external_lex_state = 24}, + [714] = {.lex_state = 534, .external_lex_state = 22}, + [715] = {.lex_state = 533, .external_lex_state = 22}, + [716] = {.lex_state = 536, .external_lex_state = 19}, + [717] = {.lex_state = 536, .external_lex_state = 19}, + [718] = {.lex_state = 530, .external_lex_state = 22}, + [719] = {.lex_state = 533, .external_lex_state = 22}, + [720] = {.lex_state = 533, .external_lex_state = 22}, + [721] = {.lex_state = 536, .external_lex_state = 19}, + [722] = {.lex_state = 207, .external_lex_state = 22}, + [723] = {.lex_state = 536, .external_lex_state = 19}, + [724] = {.lex_state = 207, .external_lex_state = 22}, + [725] = {.lex_state = 536, .external_lex_state = 19}, + [726] = {.lex_state = 530, .external_lex_state = 22}, + [727] = {.lex_state = 299, .external_lex_state = 25}, + [728] = {.lex_state = 213, .external_lex_state = 26}, + [729] = {.lex_state = 213, .external_lex_state = 26}, + [730] = {.lex_state = 262, .external_lex_state = 24}, + [731] = {.lex_state = 530, .external_lex_state = 22}, + [732] = {.lex_state = 248, .external_lex_state = 27}, + [733] = {.lex_state = 533, .external_lex_state = 22}, + [734] = {.lex_state = 262, .external_lex_state = 24}, + [735] = {.lex_state = 536, .external_lex_state = 19}, + [736] = {.lex_state = 213, .external_lex_state = 26}, + [737] = {.lex_state = 248, .external_lex_state = 27}, + [738] = {.lex_state = 533, .external_lex_state = 22}, + [739] = {.lex_state = 533, .external_lex_state = 22}, + [740] = {.lex_state = 216, .external_lex_state = 19}, + [741] = {.lex_state = 534, .external_lex_state = 22}, + [742] = {.lex_state = 534, .external_lex_state = 22}, + [743] = {.lex_state = 530, .external_lex_state = 22}, + [744] = {.lex_state = 213, .external_lex_state = 26}, + [745] = {.lex_state = 213, .external_lex_state = 26}, + [746] = {.lex_state = 189, .external_lex_state = 19}, + [747] = {.lex_state = 534, .external_lex_state = 22}, + [748] = {.lex_state = 189, .external_lex_state = 19}, + [749] = {.lex_state = 535, .external_lex_state = 19}, + [750] = {.lex_state = 535, .external_lex_state = 19}, + [751] = {.lex_state = 299, .external_lex_state = 25}, + [752] = {.lex_state = 299, .external_lex_state = 25}, + [753] = {.lex_state = 213, .external_lex_state = 26}, + [754] = {.lex_state = 533, .external_lex_state = 22}, + [755] = {.lex_state = 533, .external_lex_state = 22}, + [756] = {.lex_state = 216, .external_lex_state = 19}, + [757] = {.lex_state = 534, .external_lex_state = 22}, + [758] = {.lex_state = 213, .external_lex_state = 26}, + [759] = {.lex_state = 533, .external_lex_state = 19}, + [760] = {.lex_state = 262, .external_lex_state = 24}, + [761] = {.lex_state = 530, .external_lex_state = 22}, + [762] = {.lex_state = 262, .external_lex_state = 24}, + [763] = {.lex_state = 262, .external_lex_state = 24}, + [764] = {.lex_state = 533, .external_lex_state = 22}, + [765] = {.lex_state = 216, .external_lex_state = 19}, + [766] = {.lex_state = 216, .external_lex_state = 19}, + [767] = {.lex_state = 220, .external_lex_state = 20}, + [768] = {.lex_state = 220, .external_lex_state = 20}, + [769] = {.lex_state = 213, .external_lex_state = 26}, + [770] = {.lex_state = 213, .external_lex_state = 26}, + [771] = {.lex_state = 213, .external_lex_state = 26}, + [772] = {.lex_state = 533, .external_lex_state = 19}, + [773] = {.lex_state = 534, .external_lex_state = 22}, + [774] = {.lex_state = 216, .external_lex_state = 19}, + [775] = {.lex_state = 535, .external_lex_state = 19}, + [776] = {.lex_state = 535, .external_lex_state = 19}, + [777] = {.lex_state = 189, .external_lex_state = 19}, + [778] = {.lex_state = 533, .external_lex_state = 22}, + [779] = {.lex_state = 534, .external_lex_state = 22}, + [780] = {.lex_state = 260, .external_lex_state = 2}, + [781] = {.lex_state = 534, .external_lex_state = 22}, + [782] = {.lex_state = 249, .external_lex_state = 28}, + [783] = {.lex_state = 534, .external_lex_state = 22}, + [784] = {.lex_state = 536, .external_lex_state = 19}, + [785] = {.lex_state = 533, .external_lex_state = 22}, + [786] = {.lex_state = 534, .external_lex_state = 22}, + [787] = {.lex_state = 536, .external_lex_state = 19}, + [788] = {.lex_state = 534, .external_lex_state = 22}, + [789] = {.lex_state = 534, .external_lex_state = 22}, + [790] = {.lex_state = 533, .external_lex_state = 22}, + [791] = {.lex_state = 534, .external_lex_state = 22}, + [792] = {.lex_state = 533, .external_lex_state = 22}, + [793] = {.lex_state = 536, .external_lex_state = 19}, + [794] = {.lex_state = 542, .external_lex_state = 2}, + [795] = {.lex_state = 536, .external_lex_state = 19}, + [796] = {.lex_state = 536, .external_lex_state = 19}, + [797] = {.lex_state = 308, .external_lex_state = 29}, + [798] = {.lex_state = 534, .external_lex_state = 22}, + [799] = {.lex_state = 308, .external_lex_state = 29}, + [800] = {.lex_state = 542, .external_lex_state = 2}, + [801] = {.lex_state = 536, .external_lex_state = 19}, + [802] = {.lex_state = 542, .external_lex_state = 2}, + [803] = {.lex_state = 308, .external_lex_state = 29}, + [804] = {.lex_state = 534, .external_lex_state = 22}, + [805] = {.lex_state = 249, .external_lex_state = 28}, + [806] = {.lex_state = 198, .external_lex_state = 19}, + [807] = {.lex_state = 195, .external_lex_state = 17}, + [808] = {.lex_state = 215, .external_lex_state = 30}, + [809] = {.lex_state = 195, .external_lex_state = 17}, + [810] = {.lex_state = 542, .external_lex_state = 2}, + [811] = {.lex_state = 198, .external_lex_state = 19}, + [812] = {.lex_state = 542, .external_lex_state = 2}, + [813] = {.lex_state = 215, .external_lex_state = 30}, + [814] = {.lex_state = 215, .external_lex_state = 30}, + [815] = {.lex_state = 215, .external_lex_state = 30}, + [816] = {.lex_state = 198, .external_lex_state = 19}, + [817] = {.lex_state = 302, .external_lex_state = 31}, + [818] = {.lex_state = 195, .external_lex_state = 17}, + [819] = {.lex_state = 215, .external_lex_state = 30}, + [820] = {.lex_state = 215, .external_lex_state = 30}, + [821] = {.lex_state = 302, .external_lex_state = 31}, + [822] = {.lex_state = 195, .external_lex_state = 17}, + [823] = {.lex_state = 302, .external_lex_state = 31}, + [824] = {.lex_state = 215, .external_lex_state = 30}, + [825] = {.lex_state = 534, .external_lex_state = 22}, + [826] = {.lex_state = 534, .external_lex_state = 22}, + [827] = {.lex_state = 542, .external_lex_state = 2}, + [828] = {.lex_state = 534, .external_lex_state = 22}, + [829] = {.lex_state = 534, .external_lex_state = 22}, + [830] = {.lex_state = 302, .external_lex_state = 31}, + [831] = {.lex_state = 215, .external_lex_state = 30}, + [832] = {.lex_state = 215, .external_lex_state = 32}, + [833] = {.lex_state = 198, .external_lex_state = 19}, + [834] = {.lex_state = 215, .external_lex_state = 32}, + [835] = {.lex_state = 198, .external_lex_state = 19}, + [836] = {.lex_state = 198, .external_lex_state = 19}, + [837] = {.lex_state = 217, .external_lex_state = 4}, + [838] = {.lex_state = 217, .external_lex_state = 4}, + [839] = {.lex_state = 198, .external_lex_state = 19}, + [840] = {.lex_state = 250, .external_lex_state = 31}, + [841] = {.lex_state = 217, .external_lex_state = 4}, + [842] = {.lex_state = 250, .external_lex_state = 31}, + [843] = {.lex_state = 215, .external_lex_state = 30}, + [844] = {.lex_state = 215, .external_lex_state = 30}, + [845] = {.lex_state = 215, .external_lex_state = 30}, + [846] = {.lex_state = 215, .external_lex_state = 30}, + [847] = {.lex_state = 198, .external_lex_state = 19}, + [848] = {.lex_state = 215, .external_lex_state = 30}, + [849] = {.lex_state = 198, .external_lex_state = 19}, + [850] = {.lex_state = 217, .external_lex_state = 4}, + [851] = {.lex_state = 298, .external_lex_state = 29}, + [852] = {.lex_state = 217, .external_lex_state = 4}, + [853] = {.lex_state = 217, .external_lex_state = 4}, + [854] = {.lex_state = 215, .external_lex_state = 32}, + [855] = {.lex_state = 215, .external_lex_state = 30}, + [856] = {.lex_state = 215, .external_lex_state = 30}, + [857] = {.lex_state = 215, .external_lex_state = 30}, + [858] = {.lex_state = 298, .external_lex_state = 29}, + [859] = {.lex_state = 215, .external_lex_state = 32}, + [860] = {.lex_state = 198, .external_lex_state = 22}, + [861] = {.lex_state = 215, .external_lex_state = 32}, + [862] = {.lex_state = 198, .external_lex_state = 22}, + [863] = {.lex_state = 198, .external_lex_state = 22}, + [864] = {.lex_state = 215, .external_lex_state = 30}, + [865] = {.lex_state = 189, .external_lex_state = 22}, + [866] = {.lex_state = 215, .external_lex_state = 30}, + [867] = {.lex_state = 302, .external_lex_state = 33}, + [868] = {.lex_state = 215, .external_lex_state = 30}, + [869] = {.lex_state = 215, .external_lex_state = 30}, + [870] = {.lex_state = 298, .external_lex_state = 29}, + [871] = {.lex_state = 215, .external_lex_state = 30}, + [872] = {.lex_state = 215, .external_lex_state = 30}, + [873] = {.lex_state = 222, .external_lex_state = 19}, + [874] = {.lex_state = 215, .external_lex_state = 32}, + [875] = {.lex_state = 189, .external_lex_state = 22}, + [876] = {.lex_state = 215, .external_lex_state = 32}, + [877] = {.lex_state = 222, .external_lex_state = 19}, + [878] = {.lex_state = 189, .external_lex_state = 22}, + [879] = {.lex_state = 302, .external_lex_state = 33}, + [880] = {.lex_state = 215, .external_lex_state = 32}, + [881] = {.lex_state = 250, .external_lex_state = 31}, + [882] = {.lex_state = 302, .external_lex_state = 31}, + [883] = {.lex_state = 250, .external_lex_state = 31}, + [884] = {.lex_state = 215, .external_lex_state = 30}, + [885] = {.lex_state = 215, .external_lex_state = 32}, + [886] = {.lex_state = 217, .external_lex_state = 4}, + [887] = {.lex_state = 215, .external_lex_state = 30}, + [888] = {.lex_state = 215, .external_lex_state = 30}, + [889] = {.lex_state = 215, .external_lex_state = 30}, + [890] = {.lex_state = 222, .external_lex_state = 19}, + [891] = {.lex_state = 215, .external_lex_state = 32}, + [892] = {.lex_state = 222, .external_lex_state = 19}, + [893] = {.lex_state = 215, .external_lex_state = 32}, + [894] = {.lex_state = 215, .external_lex_state = 32}, + [895] = {.lex_state = 302, .external_lex_state = 33}, + [896] = {.lex_state = 224, .external_lex_state = 19}, + [897] = {.lex_state = 298, .external_lex_state = 34}, + [898] = {.lex_state = 215, .external_lex_state = 32}, + [899] = {.lex_state = 224, .external_lex_state = 19}, + [900] = {.lex_state = 215, .external_lex_state = 32}, + [901] = {.lex_state = 215, .external_lex_state = 32}, + [902] = {.lex_state = 268, .external_lex_state = 35}, + [903] = {.lex_state = 298, .external_lex_state = 34}, + [904] = {.lex_state = 268, .external_lex_state = 35}, + [905] = {.lex_state = 298, .external_lex_state = 29}, + [906] = {.lex_state = 224, .external_lex_state = 19}, + [907] = {.lex_state = 537, .external_lex_state = 4}, + [908] = {.lex_state = 198, .external_lex_state = 22}, + [909] = {.lex_state = 198, .external_lex_state = 22}, + [910] = {.lex_state = 215, .external_lex_state = 32}, + [911] = {.lex_state = 224, .external_lex_state = 19}, + [912] = {.lex_state = 215, .external_lex_state = 32}, + [913] = {.lex_state = 533, .external_lex_state = 19}, + [914] = {.lex_state = 217, .external_lex_state = 4}, + [915] = {.lex_state = 217, .external_lex_state = 4}, + [916] = {.lex_state = 217, .external_lex_state = 4}, + [917] = {.lex_state = 215, .external_lex_state = 32}, + [918] = {.lex_state = 215, .external_lex_state = 32}, + [919] = {.lex_state = 215, .external_lex_state = 32}, + [920] = {.lex_state = 537, .external_lex_state = 4}, + [921] = {.lex_state = 217, .external_lex_state = 4}, + [922] = {.lex_state = 215, .external_lex_state = 32}, + [923] = {.lex_state = 217, .external_lex_state = 4}, + [924] = {.lex_state = 215, .external_lex_state = 32}, + [925] = {.lex_state = 296, .external_lex_state = 36}, + [926] = {.lex_state = 177, .external_lex_state = 13}, + [927] = {.lex_state = 217, .external_lex_state = 4}, + [928] = {.lex_state = 217, .external_lex_state = 4}, + [929] = {.lex_state = 217, .external_lex_state = 4}, + [930] = {.lex_state = 215, .external_lex_state = 32}, + [931] = {.lex_state = 217, .external_lex_state = 4}, + [932] = {.lex_state = 537, .external_lex_state = 4}, + [933] = {.lex_state = 296, .external_lex_state = 36}, + [934] = {.lex_state = 217, .external_lex_state = 4}, + [935] = {.lex_state = 537, .external_lex_state = 4}, + [936] = {.lex_state = 298, .external_lex_state = 34}, + [937] = {.lex_state = 296, .external_lex_state = 36}, + [938] = {.lex_state = 537, .external_lex_state = 4}, + [939] = {.lex_state = 302, .external_lex_state = 33}, + [940] = {.lex_state = 537, .external_lex_state = 4}, + [941] = {.lex_state = 224, .external_lex_state = 19}, + [942] = {.lex_state = 224, .external_lex_state = 19}, + [943] = {.lex_state = 252, .external_lex_state = 31}, + [944] = {.lex_state = 302, .external_lex_state = 33}, + [945] = {.lex_state = 533, .external_lex_state = 19}, + [946] = {.lex_state = 252, .external_lex_state = 31}, + [947] = {.lex_state = 537, .external_lex_state = 4}, + [948] = {.lex_state = 533, .external_lex_state = 19}, + [949] = {.lex_state = 298, .external_lex_state = 29}, + [950] = {.lex_state = 308, .external_lex_state = 34}, + [951] = {.lex_state = 296, .external_lex_state = 36}, + [952] = {.lex_state = 177, .external_lex_state = 13}, + [953] = {.lex_state = 251, .external_lex_state = 29}, + [954] = {.lex_state = 251, .external_lex_state = 29}, + [955] = {.lex_state = 296, .external_lex_state = 36}, + [956] = {.lex_state = 251, .external_lex_state = 29}, + [957] = {.lex_state = 537, .external_lex_state = 4}, + [958] = {.lex_state = 296, .external_lex_state = 36}, + [959] = {.lex_state = 537, .external_lex_state = 4}, + [960] = {.lex_state = 251, .external_lex_state = 29}, + [961] = {.lex_state = 533, .external_lex_state = 19}, + [962] = {.lex_state = 308, .external_lex_state = 34}, + [963] = {.lex_state = 215, .external_lex_state = 32}, + [964] = {.lex_state = 217, .external_lex_state = 4}, + [965] = {.lex_state = 537, .external_lex_state = 4}, + [966] = {.lex_state = 537, .external_lex_state = 4}, + [967] = {.lex_state = 305, .external_lex_state = 33}, + [968] = {.lex_state = 217, .external_lex_state = 4}, + [969] = {.lex_state = 217, .external_lex_state = 37}, + [970] = {.lex_state = 217, .external_lex_state = 37}, + [971] = {.lex_state = 305, .external_lex_state = 33}, + [972] = {.lex_state = 207, .external_lex_state = 22}, + [973] = {.lex_state = 207, .external_lex_state = 22}, + [974] = {.lex_state = 217, .external_lex_state = 37}, + [975] = {.lex_state = 215, .external_lex_state = 32}, + [976] = {.lex_state = 207, .external_lex_state = 22}, + [977] = {.lex_state = 215, .external_lex_state = 32}, + [978] = {.lex_state = 217, .external_lex_state = 37}, + [979] = {.lex_state = 308, .external_lex_state = 34}, + [980] = {.lex_state = 217, .external_lex_state = 4}, + [981] = {.lex_state = 305, .external_lex_state = 33}, + [982] = {.lex_state = 217, .external_lex_state = 4}, + [983] = {.lex_state = 537, .external_lex_state = 4}, + [984] = {.lex_state = 215, .external_lex_state = 32}, + [985] = {.lex_state = 217, .external_lex_state = 37}, + [986] = {.lex_state = 533, .external_lex_state = 19}, + [987] = {.lex_state = 215, .external_lex_state = 32}, + [988] = {.lex_state = 217, .external_lex_state = 4}, + [989] = {.lex_state = 296, .external_lex_state = 36}, + [990] = {.lex_state = 217, .external_lex_state = 4}, + [991] = {.lex_state = 533, .external_lex_state = 19}, + [992] = {.lex_state = 217, .external_lex_state = 37}, + [993] = {.lex_state = 217, .external_lex_state = 37}, + [994] = {.lex_state = 217, .external_lex_state = 37}, + [995] = {.lex_state = 217, .external_lex_state = 37}, + [996] = {.lex_state = 537, .external_lex_state = 4}, + [997] = {.lex_state = 296, .external_lex_state = 36}, + [998] = {.lex_state = 217, .external_lex_state = 4}, + [999] = {.lex_state = 217, .external_lex_state = 4}, + [1000] = {.lex_state = 217, .external_lex_state = 37}, + [1001] = {.lex_state = 217, .external_lex_state = 37}, + [1002] = {.lex_state = 533, .external_lex_state = 19}, + [1003] = {.lex_state = 217, .external_lex_state = 37}, + [1004] = {.lex_state = 217, .external_lex_state = 4}, + [1005] = {.lex_state = 215, .external_lex_state = 32}, + [1006] = {.lex_state = 533, .external_lex_state = 19}, + [1007] = {.lex_state = 537, .external_lex_state = 4}, + [1008] = {.lex_state = 215, .external_lex_state = 32}, + [1009] = {.lex_state = 215, .external_lex_state = 32}, + [1010] = {.lex_state = 253, .external_lex_state = 29}, + [1011] = {.lex_state = 221, .external_lex_state = 38}, + [1012] = {.lex_state = 537, .external_lex_state = 4}, + [1013] = {.lex_state = 537, .external_lex_state = 4}, + [1014] = {.lex_state = 177, .external_lex_state = 14}, + [1015] = {.lex_state = 537, .external_lex_state = 4}, + [1016] = {.lex_state = 537, .external_lex_state = 4}, + [1017] = {.lex_state = 537, .external_lex_state = 4}, + [1018] = {.lex_state = 537, .external_lex_state = 4}, + [1019] = {.lex_state = 537, .external_lex_state = 4}, + [1020] = {.lex_state = 537, .external_lex_state = 4}, + [1021] = {.lex_state = 537, .external_lex_state = 37}, + [1022] = {.lex_state = 537, .external_lex_state = 4}, + [1023] = {.lex_state = 537, .external_lex_state = 37}, + [1024] = {.lex_state = 267, .external_lex_state = 39}, + [1025] = {.lex_state = 267, .external_lex_state = 39}, + [1026] = {.lex_state = 180, .external_lex_state = 11}, + [1027] = {.lex_state = 537, .external_lex_state = 4}, + [1028] = {.lex_state = 533, .external_lex_state = 19}, + [1029] = {.lex_state = 537, .external_lex_state = 4}, + [1030] = {.lex_state = 533, .external_lex_state = 19}, + [1031] = {.lex_state = 537, .external_lex_state = 4}, + [1032] = {.lex_state = 537, .external_lex_state = 37}, + [1033] = {.lex_state = 537, .external_lex_state = 4}, + [1034] = {.lex_state = 537, .external_lex_state = 4}, + [1035] = {.lex_state = 306, .external_lex_state = 34}, + [1036] = {.lex_state = 533, .external_lex_state = 19}, + [1037] = {.lex_state = 537, .external_lex_state = 4}, + [1038] = {.lex_state = 537, .external_lex_state = 4}, + [1039] = {.lex_state = 537, .external_lex_state = 37}, + [1040] = {.lex_state = 537, .external_lex_state = 37}, + [1041] = {.lex_state = 253, .external_lex_state = 29}, + [1042] = {.lex_state = 537, .external_lex_state = 37}, + [1043] = {.lex_state = 537, .external_lex_state = 4}, + [1044] = {.lex_state = 537, .external_lex_state = 4}, + [1045] = {.lex_state = 177, .external_lex_state = 14}, + [1046] = {.lex_state = 537, .external_lex_state = 4}, + [1047] = {.lex_state = 537, .external_lex_state = 4}, + [1048] = {.lex_state = 253, .external_lex_state = 29}, + [1049] = {.lex_state = 537, .external_lex_state = 4}, + [1050] = {.lex_state = 253, .external_lex_state = 29}, + [1051] = {.lex_state = 265, .external_lex_state = 39}, + [1052] = {.lex_state = 177, .external_lex_state = 13}, + [1053] = {.lex_state = 265, .external_lex_state = 39}, + [1054] = {.lex_state = 537, .external_lex_state = 4}, + [1055] = {.lex_state = 537, .external_lex_state = 4}, + [1056] = {.lex_state = 306, .external_lex_state = 34}, + [1057] = {.lex_state = 537, .external_lex_state = 4}, + [1058] = {.lex_state = 537, .external_lex_state = 4}, + [1059] = {.lex_state = 533, .external_lex_state = 19}, + [1060] = {.lex_state = 537, .external_lex_state = 4}, + [1061] = {.lex_state = 537, .external_lex_state = 4}, + [1062] = {.lex_state = 537, .external_lex_state = 4}, + [1063] = {.lex_state = 537, .external_lex_state = 4}, + [1064] = {.lex_state = 537, .external_lex_state = 4}, + [1065] = {.lex_state = 537, .external_lex_state = 37}, + [1066] = {.lex_state = 537, .external_lex_state = 37}, + [1067] = {.lex_state = 221, .external_lex_state = 38}, + [1068] = {.lex_state = 221, .external_lex_state = 38}, + [1069] = {.lex_state = 537, .external_lex_state = 37}, + [1070] = {.lex_state = 268, .external_lex_state = 40}, + [1071] = {.lex_state = 268, .external_lex_state = 40}, + [1072] = {.lex_state = 537, .external_lex_state = 37}, + [1073] = {.lex_state = 223, .external_lex_state = 38}, + [1074] = {.lex_state = 223, .external_lex_state = 38}, + [1075] = {.lex_state = 306, .external_lex_state = 34}, + [1076] = {.lex_state = 537, .external_lex_state = 37}, + [1077] = {.lex_state = 537, .external_lex_state = 4}, + [1078] = {.lex_state = 537, .external_lex_state = 4}, + [1079] = {.lex_state = 223, .external_lex_state = 38}, + [1080] = {.lex_state = 537, .external_lex_state = 4}, + [1081] = {.lex_state = 223, .external_lex_state = 38}, + [1082] = {.lex_state = 177, .external_lex_state = 13}, + [1083] = {.lex_state = 537, .external_lex_state = 4}, + [1084] = {.lex_state = 537, .external_lex_state = 4}, + [1085] = {.lex_state = 537, .external_lex_state = 4}, + [1086] = {.lex_state = 221, .external_lex_state = 38}, + [1087] = {.lex_state = 221, .external_lex_state = 38}, + [1088] = {.lex_state = 221, .external_lex_state = 38}, + [1089] = {.lex_state = 223, .external_lex_state = 38}, + [1090] = {.lex_state = 298, .external_lex_state = 34}, + [1091] = {.lex_state = 537, .external_lex_state = 37}, + [1092] = {.lex_state = 221, .external_lex_state = 38}, + [1093] = {.lex_state = 537, .external_lex_state = 37}, + [1094] = {.lex_state = 537, .external_lex_state = 37}, + [1095] = {.lex_state = 177, .external_lex_state = 14}, + [1096] = {.lex_state = 533, .external_lex_state = 19}, + [1097] = {.lex_state = 180, .external_lex_state = 11}, + [1098] = {.lex_state = 533, .external_lex_state = 19}, + [1099] = {.lex_state = 217, .external_lex_state = 37}, + [1100] = {.lex_state = 223, .external_lex_state = 38}, + [1101] = {.lex_state = 217, .external_lex_state = 37}, + [1102] = {.lex_state = 298, .external_lex_state = 34}, + [1103] = {.lex_state = 217, .external_lex_state = 37}, + [1104] = {.lex_state = 537, .external_lex_state = 4}, + [1105] = {.lex_state = 537, .external_lex_state = 4}, + [1106] = {.lex_state = 537, .external_lex_state = 37}, + [1107] = {.lex_state = 537, .external_lex_state = 37}, + [1108] = {.lex_state = 537, .external_lex_state = 37}, + [1109] = {.lex_state = 537, .external_lex_state = 37}, + [1110] = {.lex_state = 207, .external_lex_state = 22}, + [1111] = {.lex_state = 207, .external_lex_state = 22}, + [1112] = {.lex_state = 537, .external_lex_state = 4}, + [1113] = {.lex_state = 537, .external_lex_state = 4}, + [1114] = {.lex_state = 269, .external_lex_state = 39}, + [1115] = {.lex_state = 269, .external_lex_state = 39}, + [1116] = {.lex_state = 537, .external_lex_state = 4}, + [1117] = {.lex_state = 305, .external_lex_state = 33}, + [1118] = {.lex_state = 305, .external_lex_state = 33}, + [1119] = {.lex_state = 217, .external_lex_state = 37}, + [1120] = {.lex_state = 217, .external_lex_state = 37}, + [1121] = {.lex_state = 223, .external_lex_state = 38}, + [1122] = {.lex_state = 537, .external_lex_state = 37}, + [1123] = {.lex_state = 537, .external_lex_state = 37}, + [1124] = {.lex_state = 537, .external_lex_state = 37}, + [1125] = {.lex_state = 537, .external_lex_state = 4}, + [1126] = {.lex_state = 537, .external_lex_state = 4}, + [1127] = {.lex_state = 223, .external_lex_state = 38}, + [1128] = {.lex_state = 537, .external_lex_state = 4}, + [1129] = {.lex_state = 217, .external_lex_state = 37}, + [1130] = {.lex_state = 217, .external_lex_state = 37}, + [1131] = {.lex_state = 537, .external_lex_state = 37}, + [1132] = {.lex_state = 533, .external_lex_state = 19}, + [1133] = {.lex_state = 217, .external_lex_state = 37}, + [1134] = {.lex_state = 266, .external_lex_state = 39}, + [1135] = {.lex_state = 253, .external_lex_state = 29}, + [1136] = {.lex_state = 217, .external_lex_state = 37}, + [1137] = {.lex_state = 217, .external_lex_state = 37}, + [1138] = {.lex_state = 217, .external_lex_state = 37}, + [1139] = {.lex_state = 217, .external_lex_state = 37}, + [1140] = {.lex_state = 537, .external_lex_state = 37}, + [1141] = {.lex_state = 253, .external_lex_state = 29}, + [1142] = {.lex_state = 217, .external_lex_state = 37}, + [1143] = {.lex_state = 217, .external_lex_state = 37}, + [1144] = {.lex_state = 537, .external_lex_state = 37}, + [1145] = {.lex_state = 217, .external_lex_state = 37}, + [1146] = {.lex_state = 177, .external_lex_state = 14}, + [1147] = {.lex_state = 223, .external_lex_state = 38}, + [1148] = {.lex_state = 223, .external_lex_state = 38}, + [1149] = {.lex_state = 177, .external_lex_state = 14}, + [1150] = {.lex_state = 533, .external_lex_state = 19}, + [1151] = {.lex_state = 533, .external_lex_state = 19}, + [1152] = {.lex_state = 537, .external_lex_state = 4}, + [1153] = {.lex_state = 533, .external_lex_state = 19}, + [1154] = {.lex_state = 266, .external_lex_state = 39}, + [1155] = {.lex_state = 217, .external_lex_state = 37}, + [1156] = {.lex_state = 221, .external_lex_state = 38}, + [1157] = {.lex_state = 217, .external_lex_state = 37}, + [1158] = {.lex_state = 223, .external_lex_state = 38}, + [1159] = {.lex_state = 217, .external_lex_state = 37}, + [1160] = {.lex_state = 223, .external_lex_state = 38}, + [1161] = {.lex_state = 217, .external_lex_state = 37}, + [1162] = {.lex_state = 223, .external_lex_state = 38}, + [1163] = {.lex_state = 223, .external_lex_state = 38}, + [1164] = {.lex_state = 270, .external_lex_state = 39}, + [1165] = {.lex_state = 223, .external_lex_state = 38}, + [1166] = {.lex_state = 225, .external_lex_state = 41}, + [1167] = {.lex_state = 225, .external_lex_state = 41}, + [1168] = {.lex_state = 177, .external_lex_state = 14}, + [1169] = {.lex_state = 180, .external_lex_state = 11}, + [1170] = {.lex_state = 225, .external_lex_state = 41}, + [1171] = {.lex_state = 225, .external_lex_state = 41}, + [1172] = {.lex_state = 306, .external_lex_state = 34}, + [1173] = {.lex_state = 271, .external_lex_state = 42}, + [1174] = {.lex_state = 537, .external_lex_state = 37}, + [1175] = {.lex_state = 180, .external_lex_state = 16}, + [1176] = {.lex_state = 537, .external_lex_state = 37}, + [1177] = {.lex_state = 537, .external_lex_state = 37}, + [1178] = {.lex_state = 306, .external_lex_state = 34}, + [1179] = {.lex_state = 527, .external_lex_state = 11}, + [1180] = {.lex_state = 180, .external_lex_state = 16}, + [1181] = {.lex_state = 177, .external_lex_state = 14}, + [1182] = {.lex_state = 177, .external_lex_state = 14}, + [1183] = {.lex_state = 537, .external_lex_state = 37}, + [1184] = {.lex_state = 227, .external_lex_state = 41}, + [1185] = {.lex_state = 537, .external_lex_state = 37}, + [1186] = {.lex_state = 537, .external_lex_state = 37}, + [1187] = {.lex_state = 537, .external_lex_state = 37}, + [1188] = {.lex_state = 537, .external_lex_state = 37}, + [1189] = {.lex_state = 537, .external_lex_state = 37}, + [1190] = {.lex_state = 221, .external_lex_state = 43}, + [1191] = {.lex_state = 221, .external_lex_state = 43}, + [1192] = {.lex_state = 227, .external_lex_state = 41}, + [1193] = {.lex_state = 227, .external_lex_state = 41}, + [1194] = {.lex_state = 537, .external_lex_state = 37}, + [1195] = {.lex_state = 537, .external_lex_state = 37}, + [1196] = {.lex_state = 537, .external_lex_state = 37}, + [1197] = {.lex_state = 270, .external_lex_state = 39}, + [1198] = {.lex_state = 223, .external_lex_state = 38}, + [1199] = {.lex_state = 223, .external_lex_state = 38}, + [1200] = {.lex_state = 537, .external_lex_state = 37}, + [1201] = {.lex_state = 180, .external_lex_state = 16}, + [1202] = {.lex_state = 180, .external_lex_state = 16}, + [1203] = {.lex_state = 537, .external_lex_state = 37}, + [1204] = {.lex_state = 223, .external_lex_state = 38}, + [1205] = {.lex_state = 537, .external_lex_state = 37}, + [1206] = {.lex_state = 221, .external_lex_state = 38}, + [1207] = {.lex_state = 221, .external_lex_state = 38}, + [1208] = {.lex_state = 223, .external_lex_state = 38}, + [1209] = {.lex_state = 527, .external_lex_state = 11}, + [1210] = {.lex_state = 223, .external_lex_state = 38}, + [1211] = {.lex_state = 221, .external_lex_state = 43}, + [1212] = {.lex_state = 527, .external_lex_state = 11}, + [1213] = {.lex_state = 221, .external_lex_state = 38}, + [1214] = {.lex_state = 221, .external_lex_state = 43}, + [1215] = {.lex_state = 537, .external_lex_state = 37}, + [1216] = {.lex_state = 537, .external_lex_state = 37}, + [1217] = {.lex_state = 221, .external_lex_state = 43}, + [1218] = {.lex_state = 223, .external_lex_state = 38}, + [1219] = {.lex_state = 537, .external_lex_state = 37}, + [1220] = {.lex_state = 221, .external_lex_state = 38}, + [1221] = {.lex_state = 223, .external_lex_state = 38}, + [1222] = {.lex_state = 221, .external_lex_state = 38}, + [1223] = {.lex_state = 537, .external_lex_state = 37}, + [1224] = {.lex_state = 221, .external_lex_state = 38}, + [1225] = {.lex_state = 221, .external_lex_state = 38}, + [1226] = {.lex_state = 221, .external_lex_state = 43}, + [1227] = {.lex_state = 223, .external_lex_state = 43}, + [1228] = {.lex_state = 223, .external_lex_state = 43}, + [1229] = {.lex_state = 177, .external_lex_state = 14}, + [1230] = {.lex_state = 223, .external_lex_state = 43}, + [1231] = {.lex_state = 537, .external_lex_state = 37}, + [1232] = {.lex_state = 223, .external_lex_state = 38}, + [1233] = {.lex_state = 223, .external_lex_state = 38}, + [1234] = {.lex_state = 223, .external_lex_state = 43}, + [1235] = {.lex_state = 221, .external_lex_state = 38}, + [1236] = {.lex_state = 221, .external_lex_state = 38}, + [1237] = {.lex_state = 537, .external_lex_state = 37}, + [1238] = {.lex_state = 537, .external_lex_state = 37}, + [1239] = {.lex_state = 537, .external_lex_state = 37}, + [1240] = {.lex_state = 221, .external_lex_state = 38}, + [1241] = {.lex_state = 221, .external_lex_state = 38}, + [1242] = {.lex_state = 221, .external_lex_state = 38}, + [1243] = {.lex_state = 537, .external_lex_state = 37}, + [1244] = {.lex_state = 537, .external_lex_state = 37}, + [1245] = {.lex_state = 227, .external_lex_state = 41}, + [1246] = {.lex_state = 223, .external_lex_state = 38}, + [1247] = {.lex_state = 223, .external_lex_state = 38}, + [1248] = {.lex_state = 537, .external_lex_state = 37}, + [1249] = {.lex_state = 227, .external_lex_state = 41}, + [1250] = {.lex_state = 227, .external_lex_state = 41}, + [1251] = {.lex_state = 225, .external_lex_state = 41}, + [1252] = {.lex_state = 221, .external_lex_state = 38}, + [1253] = {.lex_state = 221, .external_lex_state = 38}, + [1254] = {.lex_state = 223, .external_lex_state = 38}, + [1255] = {.lex_state = 223, .external_lex_state = 38}, + [1256] = {.lex_state = 223, .external_lex_state = 38}, + [1257] = {.lex_state = 225, .external_lex_state = 41}, + [1258] = {.lex_state = 227, .external_lex_state = 41}, + [1259] = {.lex_state = 537, .external_lex_state = 37}, + [1260] = {.lex_state = 180, .external_lex_state = 11}, + [1261] = {.lex_state = 227, .external_lex_state = 41}, + [1262] = {.lex_state = 225, .external_lex_state = 41}, + [1263] = {.lex_state = 227, .external_lex_state = 41}, + [1264] = {.lex_state = 227, .external_lex_state = 41}, + [1265] = {.lex_state = 227, .external_lex_state = 41}, + [1266] = {.lex_state = 225, .external_lex_state = 41}, + [1267] = {.lex_state = 527, .external_lex_state = 11}, + [1268] = {.lex_state = 537, .external_lex_state = 37}, + [1269] = {.lex_state = 227, .external_lex_state = 41}, + [1270] = {.lex_state = 227, .external_lex_state = 41}, + [1271] = {.lex_state = 537, .external_lex_state = 37}, + [1272] = {.lex_state = 537, .external_lex_state = 37}, + [1273] = {.lex_state = 537, .external_lex_state = 37}, + [1274] = {.lex_state = 537, .external_lex_state = 37}, + [1275] = {.lex_state = 227, .external_lex_state = 41}, + [1276] = {.lex_state = 537, .external_lex_state = 37}, + [1277] = {.lex_state = 537, .external_lex_state = 37}, + [1278] = {.lex_state = 221, .external_lex_state = 38}, + [1279] = {.lex_state = 537, .external_lex_state = 37}, + [1280] = {.lex_state = 537, .external_lex_state = 37}, + [1281] = {.lex_state = 177, .external_lex_state = 14}, + [1282] = {.lex_state = 537, .external_lex_state = 37}, + [1283] = {.lex_state = 537, .external_lex_state = 37}, + [1284] = {.lex_state = 537, .external_lex_state = 37}, + [1285] = {.lex_state = 537, .external_lex_state = 37}, + [1286] = {.lex_state = 221, .external_lex_state = 38}, + [1287] = {.lex_state = 537, .external_lex_state = 37}, + [1288] = {.lex_state = 221, .external_lex_state = 38}, + [1289] = {.lex_state = 537, .external_lex_state = 37}, + [1290] = {.lex_state = 223, .external_lex_state = 43}, + [1291] = {.lex_state = 223, .external_lex_state = 43}, + [1292] = {.lex_state = 537, .external_lex_state = 37}, + [1293] = {.lex_state = 537, .external_lex_state = 37}, + [1294] = {.lex_state = 537, .external_lex_state = 37}, + [1295] = {.lex_state = 180, .external_lex_state = 16}, + [1296] = {.lex_state = 537, .external_lex_state = 37}, + [1297] = {.lex_state = 221, .external_lex_state = 38}, + [1298] = {.lex_state = 223, .external_lex_state = 38}, + [1299] = {.lex_state = 221, .external_lex_state = 38}, + [1300] = {.lex_state = 537, .external_lex_state = 37}, + [1301] = {.lex_state = 177, .external_lex_state = 14}, + [1302] = {.lex_state = 223, .external_lex_state = 38}, + [1303] = {.lex_state = 537, .external_lex_state = 37}, + [1304] = {.lex_state = 537, .external_lex_state = 37}, + [1305] = {.lex_state = 223, .external_lex_state = 38}, + [1306] = {.lex_state = 223, .external_lex_state = 38}, + [1307] = {.lex_state = 227, .external_lex_state = 44}, + [1308] = {.lex_state = 229, .external_lex_state = 43}, + [1309] = {.lex_state = 223, .external_lex_state = 43}, + [1310] = {.lex_state = 223, .external_lex_state = 43}, + [1311] = {.lex_state = 227, .external_lex_state = 44}, + [1312] = {.lex_state = 273, .external_lex_state = 45}, + [1313] = {.lex_state = 527, .external_lex_state = 16}, + [1314] = {.lex_state = 213, .external_lex_state = 26}, + [1315] = {.lex_state = 225, .external_lex_state = 41}, + [1316] = {.lex_state = 225, .external_lex_state = 41}, + [1317] = {.lex_state = 213, .external_lex_state = 26}, + [1318] = {.lex_state = 538, .external_lex_state = 41}, + [1319] = {.lex_state = 225, .external_lex_state = 41}, + [1320] = {.lex_state = 539, .external_lex_state = 41}, + [1321] = {.lex_state = 527, .external_lex_state = 16}, + [1322] = {.lex_state = 538, .external_lex_state = 41}, + [1323] = {.lex_state = 227, .external_lex_state = 41}, + [1324] = {.lex_state = 227, .external_lex_state = 41}, + [1325] = {.lex_state = 225, .external_lex_state = 44}, + [1326] = {.lex_state = 225, .external_lex_state = 44}, + [1327] = {.lex_state = 227, .external_lex_state = 41}, + [1328] = {.lex_state = 180, .external_lex_state = 16}, + [1329] = {.lex_state = 180, .external_lex_state = 16}, + [1330] = {.lex_state = 539, .external_lex_state = 41}, + [1331] = {.lex_state = 539, .external_lex_state = 41}, + [1332] = {.lex_state = 213, .external_lex_state = 26}, + [1333] = {.lex_state = 539, .external_lex_state = 41}, + [1334] = {.lex_state = 227, .external_lex_state = 41}, + [1335] = {.lex_state = 527, .external_lex_state = 16}, + [1336] = {.lex_state = 539, .external_lex_state = 41}, + [1337] = {.lex_state = 538, .external_lex_state = 41}, + [1338] = {.lex_state = 180, .external_lex_state = 16}, + [1339] = {.lex_state = 539, .external_lex_state = 41}, + [1340] = {.lex_state = 227, .external_lex_state = 41}, + [1341] = {.lex_state = 538, .external_lex_state = 41}, + [1342] = {.lex_state = 539, .external_lex_state = 41}, + [1343] = {.lex_state = 539, .external_lex_state = 41}, + [1344] = {.lex_state = 539, .external_lex_state = 41}, + [1345] = {.lex_state = 227, .external_lex_state = 41}, + [1346] = {.lex_state = 180, .external_lex_state = 16}, + [1347] = {.lex_state = 227, .external_lex_state = 44}, + [1348] = {.lex_state = 227, .external_lex_state = 41}, + [1349] = {.lex_state = 195, .external_lex_state = 17}, + [1350] = {.lex_state = 225, .external_lex_state = 41}, + [1351] = {.lex_state = 527, .external_lex_state = 11}, + [1352] = {.lex_state = 227, .external_lex_state = 41}, + [1353] = {.lex_state = 225, .external_lex_state = 41}, + [1354] = {.lex_state = 539, .external_lex_state = 41}, + [1355] = {.lex_state = 539, .external_lex_state = 41}, + [1356] = {.lex_state = 538, .external_lex_state = 41}, + [1357] = {.lex_state = 539, .external_lex_state = 41}, + [1358] = {.lex_state = 527, .external_lex_state = 16}, + [1359] = {.lex_state = 225, .external_lex_state = 41}, + [1360] = {.lex_state = 538, .external_lex_state = 41}, + [1361] = {.lex_state = 195, .external_lex_state = 17}, + [1362] = {.lex_state = 538, .external_lex_state = 41}, + [1363] = {.lex_state = 539, .external_lex_state = 41}, + [1364] = {.lex_state = 223, .external_lex_state = 43}, + [1365] = {.lex_state = 223, .external_lex_state = 43}, + [1366] = {.lex_state = 223, .external_lex_state = 43}, + [1367] = {.lex_state = 539, .external_lex_state = 41}, + [1368] = {.lex_state = 186, .external_lex_state = 17}, + [1369] = {.lex_state = 225, .external_lex_state = 44}, + [1370] = {.lex_state = 539, .external_lex_state = 41}, + [1371] = {.lex_state = 538, .external_lex_state = 41}, + [1372] = {.lex_state = 539, .external_lex_state = 41}, + [1373] = {.lex_state = 539, .external_lex_state = 41}, + [1374] = {.lex_state = 527, .external_lex_state = 16}, + [1375] = {.lex_state = 225, .external_lex_state = 41}, + [1376] = {.lex_state = 527, .external_lex_state = 11}, + [1377] = {.lex_state = 527, .external_lex_state = 16}, + [1378] = {.lex_state = 225, .external_lex_state = 41}, + [1379] = {.lex_state = 527, .external_lex_state = 16}, + [1380] = {.lex_state = 195, .external_lex_state = 17}, + [1381] = {.lex_state = 229, .external_lex_state = 43}, + [1382] = {.lex_state = 195, .external_lex_state = 17}, + [1383] = {.lex_state = 538, .external_lex_state = 41}, + [1384] = {.lex_state = 223, .external_lex_state = 43}, + [1385] = {.lex_state = 225, .external_lex_state = 41}, + [1386] = {.lex_state = 527, .external_lex_state = 11}, + [1387] = {.lex_state = 180, .external_lex_state = 16}, + [1388] = {.lex_state = 229, .external_lex_state = 43}, + [1389] = {.lex_state = 225, .external_lex_state = 41}, + [1390] = {.lex_state = 180, .external_lex_state = 16}, + [1391] = {.lex_state = 539, .external_lex_state = 41}, + [1392] = {.lex_state = 539, .external_lex_state = 41}, + [1393] = {.lex_state = 227, .external_lex_state = 41}, + [1394] = {.lex_state = 227, .external_lex_state = 44}, + [1395] = {.lex_state = 539, .external_lex_state = 41}, + [1396] = {.lex_state = 539, .external_lex_state = 41}, + [1397] = {.lex_state = 539, .external_lex_state = 41}, + [1398] = {.lex_state = 538, .external_lex_state = 41}, + [1399] = {.lex_state = 539, .external_lex_state = 41}, + [1400] = {.lex_state = 223, .external_lex_state = 43}, + [1401] = {.lex_state = 527, .external_lex_state = 16}, + [1402] = {.lex_state = 223, .external_lex_state = 43}, + [1403] = {.lex_state = 223, .external_lex_state = 43}, + [1404] = {.lex_state = 527, .external_lex_state = 11}, + [1405] = {.lex_state = 539, .external_lex_state = 41}, + [1406] = {.lex_state = 223, .external_lex_state = 43}, + [1407] = {.lex_state = 539, .external_lex_state = 41}, + [1408] = {.lex_state = 225, .external_lex_state = 41}, + [1409] = {.lex_state = 227, .external_lex_state = 41}, + [1410] = {.lex_state = 225, .external_lex_state = 41}, + [1411] = {.lex_state = 227, .external_lex_state = 41}, + [1412] = {.lex_state = 225, .external_lex_state = 44}, + [1413] = {.lex_state = 223, .external_lex_state = 43}, + [1414] = {.lex_state = 225, .external_lex_state = 41}, + [1415] = {.lex_state = 225, .external_lex_state = 44}, + [1416] = {.lex_state = 225, .external_lex_state = 41}, + [1417] = {.lex_state = 221, .external_lex_state = 43}, + [1418] = {.lex_state = 221, .external_lex_state = 43}, + [1419] = {.lex_state = 225, .external_lex_state = 41}, + [1420] = {.lex_state = 225, .external_lex_state = 44}, + [1421] = {.lex_state = 539, .external_lex_state = 41}, + [1422] = {.lex_state = 221, .external_lex_state = 43}, + [1423] = {.lex_state = 221, .external_lex_state = 43}, + [1424] = {.lex_state = 227, .external_lex_state = 41}, + [1425] = {.lex_state = 226, .external_lex_state = 46}, + [1426] = {.lex_state = 226, .external_lex_state = 46}, + [1427] = {.lex_state = 227, .external_lex_state = 41}, + [1428] = {.lex_state = 227, .external_lex_state = 41}, + [1429] = {.lex_state = 195, .external_lex_state = 17}, + [1430] = {.lex_state = 227, .external_lex_state = 41}, + [1431] = {.lex_state = 527, .external_lex_state = 16}, + [1432] = {.lex_state = 221, .external_lex_state = 43}, + [1433] = {.lex_state = 195, .external_lex_state = 17}, + [1434] = {.lex_state = 221, .external_lex_state = 43}, + [1435] = {.lex_state = 221, .external_lex_state = 43}, + [1436] = {.lex_state = 527, .external_lex_state = 16}, + [1437] = {.lex_state = 221, .external_lex_state = 43}, + [1438] = {.lex_state = 221, .external_lex_state = 43}, + [1439] = {.lex_state = 221, .external_lex_state = 43}, + [1440] = {.lex_state = 225, .external_lex_state = 41}, + [1441] = {.lex_state = 229, .external_lex_state = 43}, + [1442] = {.lex_state = 225, .external_lex_state = 41}, + [1443] = {.lex_state = 538, .external_lex_state = 41}, + [1444] = {.lex_state = 229, .external_lex_state = 43}, + [1445] = {.lex_state = 539, .external_lex_state = 41}, + [1446] = {.lex_state = 539, .external_lex_state = 41}, + [1447] = {.lex_state = 538, .external_lex_state = 41}, + [1448] = {.lex_state = 186, .external_lex_state = 17}, + [1449] = {.lex_state = 227, .external_lex_state = 41}, + [1450] = {.lex_state = 221, .external_lex_state = 43}, + [1451] = {.lex_state = 229, .external_lex_state = 43}, + [1452] = {.lex_state = 221, .external_lex_state = 43}, + [1453] = {.lex_state = 221, .external_lex_state = 43}, + [1454] = {.lex_state = 227, .external_lex_state = 41}, + [1455] = {.lex_state = 221, .external_lex_state = 43}, + [1456] = {.lex_state = 221, .external_lex_state = 43}, + [1457] = {.lex_state = 227, .external_lex_state = 44}, + [1458] = {.lex_state = 221, .external_lex_state = 43}, + [1459] = {.lex_state = 221, .external_lex_state = 43}, + [1460] = {.lex_state = 538, .external_lex_state = 41}, + [1461] = {.lex_state = 223, .external_lex_state = 43}, + [1462] = {.lex_state = 223, .external_lex_state = 43}, + [1463] = {.lex_state = 223, .external_lex_state = 43}, + [1464] = {.lex_state = 223, .external_lex_state = 43}, + [1465] = {.lex_state = 227, .external_lex_state = 41}, + [1466] = {.lex_state = 227, .external_lex_state = 41}, + [1467] = {.lex_state = 538, .external_lex_state = 41}, + [1468] = {.lex_state = 227, .external_lex_state = 44}, + [1469] = {.lex_state = 225, .external_lex_state = 41}, + [1470] = {.lex_state = 538, .external_lex_state = 41}, + [1471] = {.lex_state = 223, .external_lex_state = 43}, + [1472] = {.lex_state = 225, .external_lex_state = 41}, + [1473] = {.lex_state = 223, .external_lex_state = 43}, + [1474] = {.lex_state = 195, .external_lex_state = 17}, + [1475] = {.lex_state = 538, .external_lex_state = 41}, + [1476] = {.lex_state = 223, .external_lex_state = 43}, + [1477] = {.lex_state = 223, .external_lex_state = 43}, + [1478] = {.lex_state = 221, .external_lex_state = 43}, + [1479] = {.lex_state = 221, .external_lex_state = 43}, + [1480] = {.lex_state = 186, .external_lex_state = 17}, + [1481] = {.lex_state = 538, .external_lex_state = 41}, + [1482] = {.lex_state = 539, .external_lex_state = 41}, + [1483] = {.lex_state = 538, .external_lex_state = 41}, + [1484] = {.lex_state = 538, .external_lex_state = 41}, + [1485] = {.lex_state = 227, .external_lex_state = 44}, + [1486] = {.lex_state = 538, .external_lex_state = 41}, + [1487] = {.lex_state = 538, .external_lex_state = 41}, + [1488] = {.lex_state = 538, .external_lex_state = 41}, + [1489] = {.lex_state = 539, .external_lex_state = 41}, + [1490] = {.lex_state = 538, .external_lex_state = 41}, + [1491] = {.lex_state = 538, .external_lex_state = 41}, + [1492] = {.lex_state = 538, .external_lex_state = 41}, + [1493] = {.lex_state = 538, .external_lex_state = 41}, + [1494] = {.lex_state = 538, .external_lex_state = 41}, + [1495] = {.lex_state = 538, .external_lex_state = 41}, + [1496] = {.lex_state = 225, .external_lex_state = 44}, + [1497] = {.lex_state = 227, .external_lex_state = 44}, + [1498] = {.lex_state = 186, .external_lex_state = 17}, + [1499] = {.lex_state = 538, .external_lex_state = 41}, + [1500] = {.lex_state = 538, .external_lex_state = 41}, + [1501] = {.lex_state = 229, .external_lex_state = 43}, + [1502] = {.lex_state = 538, .external_lex_state = 41}, + [1503] = {.lex_state = 225, .external_lex_state = 44}, + [1504] = {.lex_state = 229, .external_lex_state = 43}, + [1505] = {.lex_state = 539, .external_lex_state = 41}, + [1506] = {.lex_state = 229, .external_lex_state = 43}, + [1507] = {.lex_state = 229, .external_lex_state = 43}, + [1508] = {.lex_state = 538, .external_lex_state = 41}, + [1509] = {.lex_state = 198, .external_lex_state = 19}, + [1510] = {.lex_state = 227, .external_lex_state = 44}, + [1511] = {.lex_state = 539, .external_lex_state = 41}, + [1512] = {.lex_state = 539, .external_lex_state = 41}, + [1513] = {.lex_state = 229, .external_lex_state = 43}, + [1514] = {.lex_state = 229, .external_lex_state = 43}, + [1515] = {.lex_state = 229, .external_lex_state = 43}, + [1516] = {.lex_state = 227, .external_lex_state = 44}, + [1517] = {.lex_state = 229, .external_lex_state = 43}, + [1518] = {.lex_state = 227, .external_lex_state = 44}, + [1519] = {.lex_state = 539, .external_lex_state = 41}, + [1520] = {.lex_state = 229, .external_lex_state = 43}, + [1521] = {.lex_state = 527, .external_lex_state = 16}, + [1522] = {.lex_state = 186, .external_lex_state = 21}, + [1523] = {.lex_state = 539, .external_lex_state = 41}, + [1524] = {.lex_state = 233, .external_lex_state = 44}, + [1525] = {.lex_state = 229, .external_lex_state = 43}, + [1526] = {.lex_state = 233, .external_lex_state = 44}, + [1527] = {.lex_state = 227, .external_lex_state = 44}, + [1528] = {.lex_state = 538, .external_lex_state = 44}, + [1529] = {.lex_state = 539, .external_lex_state = 41}, + [1530] = {.lex_state = 229, .external_lex_state = 43}, + [1531] = {.lex_state = 538, .external_lex_state = 41}, + [1532] = {.lex_state = 229, .external_lex_state = 43}, + [1533] = {.lex_state = 229, .external_lex_state = 43}, + [1534] = {.lex_state = 195, .external_lex_state = 17}, + [1535] = {.lex_state = 186, .external_lex_state = 17}, + [1536] = {.lex_state = 538, .external_lex_state = 41}, + [1537] = {.lex_state = 538, .external_lex_state = 41}, + [1538] = {.lex_state = 538, .external_lex_state = 41}, + [1539] = {.lex_state = 198, .external_lex_state = 19}, + [1540] = {.lex_state = 538, .external_lex_state = 41}, + [1541] = {.lex_state = 539, .external_lex_state = 41}, + [1542] = {.lex_state = 186, .external_lex_state = 17}, + [1543] = {.lex_state = 527, .external_lex_state = 16}, + [1544] = {.lex_state = 539, .external_lex_state = 41}, + [1545] = {.lex_state = 539, .external_lex_state = 41}, + [1546] = {.lex_state = 229, .external_lex_state = 43}, + [1547] = {.lex_state = 538, .external_lex_state = 41}, + [1548] = {.lex_state = 538, .external_lex_state = 41}, + [1549] = {.lex_state = 538, .external_lex_state = 41}, + [1550] = {.lex_state = 539, .external_lex_state = 41}, + [1551] = {.lex_state = 195, .external_lex_state = 17}, + [1552] = {.lex_state = 527, .external_lex_state = 16}, + [1553] = {.lex_state = 539, .external_lex_state = 41}, + [1554] = {.lex_state = 539, .external_lex_state = 41}, + [1555] = {.lex_state = 539, .external_lex_state = 41}, + [1556] = {.lex_state = 195, .external_lex_state = 17}, + [1557] = {.lex_state = 538, .external_lex_state = 44}, + [1558] = {.lex_state = 538, .external_lex_state = 41}, + [1559] = {.lex_state = 539, .external_lex_state = 41}, + [1560] = {.lex_state = 539, .external_lex_state = 41}, + [1561] = {.lex_state = 195, .external_lex_state = 17}, + [1562] = {.lex_state = 198, .external_lex_state = 19}, + [1563] = {.lex_state = 538, .external_lex_state = 41}, + [1564] = {.lex_state = 539, .external_lex_state = 41}, + [1565] = {.lex_state = 539, .external_lex_state = 41}, + [1566] = {.lex_state = 539, .external_lex_state = 41}, + [1567] = {.lex_state = 198, .external_lex_state = 19}, + [1568] = {.lex_state = 225, .external_lex_state = 44}, + [1569] = {.lex_state = 225, .external_lex_state = 44}, + [1570] = {.lex_state = 539, .external_lex_state = 41}, + [1571] = {.lex_state = 538, .external_lex_state = 41}, + [1572] = {.lex_state = 217, .external_lex_state = 4}, + [1573] = {.lex_state = 527, .external_lex_state = 16}, + [1574] = {.lex_state = 186, .external_lex_state = 17}, + [1575] = {.lex_state = 539, .external_lex_state = 41}, + [1576] = {.lex_state = 261, .external_lex_state = 47}, + [1577] = {.lex_state = 227, .external_lex_state = 44}, + [1578] = {.lex_state = 229, .external_lex_state = 43}, + [1579] = {.lex_state = 229, .external_lex_state = 43}, + [1580] = {.lex_state = 538, .external_lex_state = 41}, + [1581] = {.lex_state = 229, .external_lex_state = 43}, + [1582] = {.lex_state = 538, .external_lex_state = 44}, + [1583] = {.lex_state = 539, .external_lex_state = 41}, + [1584] = {.lex_state = 227, .external_lex_state = 44}, + [1585] = {.lex_state = 227, .external_lex_state = 44}, + [1586] = {.lex_state = 539, .external_lex_state = 41}, + [1587] = {.lex_state = 539, .external_lex_state = 41}, + [1588] = {.lex_state = 225, .external_lex_state = 44}, + [1589] = {.lex_state = 538, .external_lex_state = 41}, + [1590] = {.lex_state = 539, .external_lex_state = 41}, + [1591] = {.lex_state = 225, .external_lex_state = 44}, + [1592] = {.lex_state = 227, .external_lex_state = 44}, + [1593] = {.lex_state = 225, .external_lex_state = 44}, + [1594] = {.lex_state = 227, .external_lex_state = 44}, + [1595] = {.lex_state = 538, .external_lex_state = 41}, + [1596] = {.lex_state = 539, .external_lex_state = 41}, + [1597] = {.lex_state = 538, .external_lex_state = 44}, + [1598] = {.lex_state = 538, .external_lex_state = 41}, + [1599] = {.lex_state = 539, .external_lex_state = 41}, + [1600] = {.lex_state = 225, .external_lex_state = 44}, + [1601] = {.lex_state = 539, .external_lex_state = 41}, + [1602] = {.lex_state = 538, .external_lex_state = 41}, + [1603] = {.lex_state = 273, .external_lex_state = 48}, + [1604] = {.lex_state = 195, .external_lex_state = 21}, + [1605] = {.lex_state = 539, .external_lex_state = 41}, + [1606] = {.lex_state = 198, .external_lex_state = 19}, + [1607] = {.lex_state = 195, .external_lex_state = 17}, + [1608] = {.lex_state = 198, .external_lex_state = 19}, + [1609] = {.lex_state = 225, .external_lex_state = 44}, + [1610] = {.lex_state = 225, .external_lex_state = 44}, + [1611] = {.lex_state = 527, .external_lex_state = 16}, + [1612] = {.lex_state = 225, .external_lex_state = 44}, + [1613] = {.lex_state = 527, .external_lex_state = 16}, + [1614] = {.lex_state = 539, .external_lex_state = 41}, + [1615] = {.lex_state = 261, .external_lex_state = 47}, + [1616] = {.lex_state = 227, .external_lex_state = 44}, + [1617] = {.lex_state = 227, .external_lex_state = 44}, + [1618] = {.lex_state = 198, .external_lex_state = 19}, + [1619] = {.lex_state = 538, .external_lex_state = 41}, + [1620] = {.lex_state = 261, .external_lex_state = 47}, + [1621] = {.lex_state = 539, .external_lex_state = 41}, + [1622] = {.lex_state = 527, .external_lex_state = 16}, + [1623] = {.lex_state = 538, .external_lex_state = 41}, + [1624] = {.lex_state = 225, .external_lex_state = 44}, + [1625] = {.lex_state = 539, .external_lex_state = 41}, + [1626] = {.lex_state = 539, .external_lex_state = 41}, + [1627] = {.lex_state = 198, .external_lex_state = 19}, + [1628] = {.lex_state = 539, .external_lex_state = 41}, + [1629] = {.lex_state = 195, .external_lex_state = 17}, + [1630] = {.lex_state = 539, .external_lex_state = 44}, + [1631] = {.lex_state = 186, .external_lex_state = 21}, + [1632] = {.lex_state = 539, .external_lex_state = 44}, + [1633] = {.lex_state = 539, .external_lex_state = 41}, + [1634] = {.lex_state = 195, .external_lex_state = 17}, + [1635] = {.lex_state = 195, .external_lex_state = 17}, + [1636] = {.lex_state = 261, .external_lex_state = 47}, + [1637] = {.lex_state = 539, .external_lex_state = 44}, + [1638] = {.lex_state = 539, .external_lex_state = 44}, + [1639] = {.lex_state = 195, .external_lex_state = 17}, + [1640] = {.lex_state = 233, .external_lex_state = 44}, + [1641] = {.lex_state = 229, .external_lex_state = 43}, + [1642] = {.lex_state = 229, .external_lex_state = 43}, + [1643] = {.lex_state = 198, .external_lex_state = 19}, + [1644] = {.lex_state = 538, .external_lex_state = 41}, + [1645] = {.lex_state = 233, .external_lex_state = 44}, + [1646] = {.lex_state = 189, .external_lex_state = 19}, + [1647] = {.lex_state = 538, .external_lex_state = 44}, + [1648] = {.lex_state = 273, .external_lex_state = 42}, + [1649] = {.lex_state = 539, .external_lex_state = 44}, + [1650] = {.lex_state = 538, .external_lex_state = 44}, + [1651] = {.lex_state = 539, .external_lex_state = 41}, + [1652] = {.lex_state = 538, .external_lex_state = 41}, + [1653] = {.lex_state = 217, .external_lex_state = 4}, + [1654] = {.lex_state = 213, .external_lex_state = 26}, + [1655] = {.lex_state = 225, .external_lex_state = 44}, + [1656] = {.lex_state = 527, .external_lex_state = 16}, + [1657] = {.lex_state = 225, .external_lex_state = 44}, + [1658] = {.lex_state = 195, .external_lex_state = 21}, + [1659] = {.lex_state = 233, .external_lex_state = 44}, + [1660] = {.lex_state = 539, .external_lex_state = 41}, + [1661] = {.lex_state = 539, .external_lex_state = 41}, + [1662] = {.lex_state = 539, .external_lex_state = 41}, + [1663] = {.lex_state = 538, .external_lex_state = 41}, + [1664] = {.lex_state = 538, .external_lex_state = 41}, + [1665] = {.lex_state = 538, .external_lex_state = 41}, + [1666] = {.lex_state = 225, .external_lex_state = 44}, + [1667] = {.lex_state = 195, .external_lex_state = 17}, + [1668] = {.lex_state = 539, .external_lex_state = 41}, + [1669] = {.lex_state = 227, .external_lex_state = 44}, + [1670] = {.lex_state = 213, .external_lex_state = 26}, + [1671] = {.lex_state = 225, .external_lex_state = 44}, + [1672] = {.lex_state = 538, .external_lex_state = 44}, + [1673] = {.lex_state = 527, .external_lex_state = 16}, + [1674] = {.lex_state = 227, .external_lex_state = 44}, + [1675] = {.lex_state = 539, .external_lex_state = 44}, + [1676] = {.lex_state = 227, .external_lex_state = 44}, + [1677] = {.lex_state = 225, .external_lex_state = 44}, + [1678] = {.lex_state = 227, .external_lex_state = 44}, + [1679] = {.lex_state = 261, .external_lex_state = 47}, + [1680] = {.lex_state = 539, .external_lex_state = 41}, + [1681] = {.lex_state = 538, .external_lex_state = 44}, + [1682] = {.lex_state = 539, .external_lex_state = 41}, + [1683] = {.lex_state = 539, .external_lex_state = 41}, + [1684] = {.lex_state = 539, .external_lex_state = 41}, + [1685] = {.lex_state = 261, .external_lex_state = 47}, + [1686] = {.lex_state = 539, .external_lex_state = 41}, + [1687] = {.lex_state = 539, .external_lex_state = 41}, + [1688] = {.lex_state = 539, .external_lex_state = 41}, + [1689] = {.lex_state = 538, .external_lex_state = 41}, + [1690] = {.lex_state = 539, .external_lex_state = 41}, + [1691] = {.lex_state = 538, .external_lex_state = 41}, + [1692] = {.lex_state = 538, .external_lex_state = 41}, + [1693] = {.lex_state = 538, .external_lex_state = 41}, + [1694] = {.lex_state = 539, .external_lex_state = 44}, + [1695] = {.lex_state = 539, .external_lex_state = 44}, + [1696] = {.lex_state = 538, .external_lex_state = 44}, + [1697] = {.lex_state = 538, .external_lex_state = 41}, + [1698] = {.lex_state = 261, .external_lex_state = 47}, + [1699] = {.lex_state = 189, .external_lex_state = 19}, + [1700] = {.lex_state = 539, .external_lex_state = 41}, + [1701] = {.lex_state = 227, .external_lex_state = 44}, + [1702] = {.lex_state = 539, .external_lex_state = 41}, + [1703] = {.lex_state = 195, .external_lex_state = 17}, + [1704] = {.lex_state = 539, .external_lex_state = 44}, + [1705] = {.lex_state = 538, .external_lex_state = 44}, + [1706] = {.lex_state = 198, .external_lex_state = 19}, + [1707] = {.lex_state = 198, .external_lex_state = 19}, + [1708] = {.lex_state = 539, .external_lex_state = 44}, + [1709] = {.lex_state = 227, .external_lex_state = 44}, + [1710] = {.lex_state = 539, .external_lex_state = 44}, + [1711] = {.lex_state = 539, .external_lex_state = 44}, + [1712] = {.lex_state = 527, .external_lex_state = 16}, + [1713] = {.lex_state = 225, .external_lex_state = 44}, + [1714] = {.lex_state = 538, .external_lex_state = 44}, + [1715] = {.lex_state = 217, .external_lex_state = 4}, + [1716] = {.lex_state = 527, .external_lex_state = 16}, + [1717] = {.lex_state = 217, .external_lex_state = 4}, + [1718] = {.lex_state = 225, .external_lex_state = 44}, + [1719] = {.lex_state = 217, .external_lex_state = 4}, + [1720] = {.lex_state = 189, .external_lex_state = 19}, + [1721] = {.lex_state = 217, .external_lex_state = 4}, + [1722] = {.lex_state = 538, .external_lex_state = 44}, + [1723] = {.lex_state = 538, .external_lex_state = 41}, + [1724] = {.lex_state = 527, .external_lex_state = 16}, + [1725] = {.lex_state = 233, .external_lex_state = 44}, + [1726] = {.lex_state = 538, .external_lex_state = 44}, + [1727] = {.lex_state = 538, .external_lex_state = 44}, + [1728] = {.lex_state = 538, .external_lex_state = 44}, + [1729] = {.lex_state = 198, .external_lex_state = 19}, + [1730] = {.lex_state = 261, .external_lex_state = 49}, + [1731] = {.lex_state = 198, .external_lex_state = 19}, + [1732] = {.lex_state = 538, .external_lex_state = 44}, + [1733] = {.lex_state = 538, .external_lex_state = 44}, + [1734] = {.lex_state = 538, .external_lex_state = 44}, + [1735] = {.lex_state = 189, .external_lex_state = 19}, + [1736] = {.lex_state = 530, .external_lex_state = 19}, + [1737] = {.lex_state = 538, .external_lex_state = 44}, + [1738] = {.lex_state = 533, .external_lex_state = 19}, + [1739] = {.lex_state = 533, .external_lex_state = 19}, + [1740] = {.lex_state = 533, .external_lex_state = 19}, + [1741] = {.lex_state = 533, .external_lex_state = 19}, + [1742] = {.lex_state = 533, .external_lex_state = 19}, + [1743] = {.lex_state = 530, .external_lex_state = 19}, + [1744] = {.lex_state = 533, .external_lex_state = 19}, + [1745] = {.lex_state = 217, .external_lex_state = 37}, + [1746] = {.lex_state = 538, .external_lex_state = 44}, + [1747] = {.lex_state = 198, .external_lex_state = 19}, + [1748] = {.lex_state = 189, .external_lex_state = 19}, + [1749] = {.lex_state = 261, .external_lex_state = 50}, + [1750] = {.lex_state = 217, .external_lex_state = 37}, + [1751] = {.lex_state = 533, .external_lex_state = 19}, + [1752] = {.lex_state = 217, .external_lex_state = 37}, + [1753] = {.lex_state = 538, .external_lex_state = 44}, + [1754] = {.lex_state = 539, .external_lex_state = 44}, + [1755] = {.lex_state = 539, .external_lex_state = 44}, + [1756] = {.lex_state = 539, .external_lex_state = 44}, + [1757] = {.lex_state = 261, .external_lex_state = 49}, + [1758] = {.lex_state = 217, .external_lex_state = 37}, + [1759] = {.lex_state = 189, .external_lex_state = 19}, + [1760] = {.lex_state = 233, .external_lex_state = 44}, + [1761] = {.lex_state = 233, .external_lex_state = 44}, + [1762] = {.lex_state = 233, .external_lex_state = 44}, + [1763] = {.lex_state = 233, .external_lex_state = 44}, + [1764] = {.lex_state = 233, .external_lex_state = 44}, + [1765] = {.lex_state = 233, .external_lex_state = 44}, + [1766] = {.lex_state = 539, .external_lex_state = 44}, + [1767] = {.lex_state = 198, .external_lex_state = 19}, + [1768] = {.lex_state = 539, .external_lex_state = 44}, + [1769] = {.lex_state = 539, .external_lex_state = 44}, + [1770] = {.lex_state = 233, .external_lex_state = 44}, + [1771] = {.lex_state = 539, .external_lex_state = 44}, + [1772] = {.lex_state = 233, .external_lex_state = 44}, + [1773] = {.lex_state = 233, .external_lex_state = 44}, + [1774] = {.lex_state = 539, .external_lex_state = 44}, + [1775] = {.lex_state = 233, .external_lex_state = 44}, + [1776] = {.lex_state = 198, .external_lex_state = 19}, + [1777] = {.lex_state = 539, .external_lex_state = 44}, + [1778] = {.lex_state = 261, .external_lex_state = 50}, + [1779] = {.lex_state = 539, .external_lex_state = 44}, + [1780] = {.lex_state = 539, .external_lex_state = 44}, + [1781] = {.lex_state = 233, .external_lex_state = 44}, + [1782] = {.lex_state = 233, .external_lex_state = 44}, + [1783] = {.lex_state = 539, .external_lex_state = 44}, + [1784] = {.lex_state = 217, .external_lex_state = 37}, + [1785] = {.lex_state = 539, .external_lex_state = 44}, + [1786] = {.lex_state = 539, .external_lex_state = 44}, + [1787] = {.lex_state = 217, .external_lex_state = 37}, + [1788] = {.lex_state = 538, .external_lex_state = 44}, + [1789] = {.lex_state = 198, .external_lex_state = 22}, + [1790] = {.lex_state = 539, .external_lex_state = 44}, + [1791] = {.lex_state = 261, .external_lex_state = 49}, + [1792] = {.lex_state = 538, .external_lex_state = 44}, + [1793] = {.lex_state = 538, .external_lex_state = 44}, + [1794] = {.lex_state = 217, .external_lex_state = 37}, + [1795] = {.lex_state = 217, .external_lex_state = 37}, + [1796] = {.lex_state = 538, .external_lex_state = 44}, + [1797] = {.lex_state = 300, .external_lex_state = 51}, + [1798] = {.lex_state = 538, .external_lex_state = 44}, + [1799] = {.lex_state = 300, .external_lex_state = 51}, + [1800] = {.lex_state = 300, .external_lex_state = 51}, + [1801] = {.lex_state = 533, .external_lex_state = 19}, + [1802] = {.lex_state = 233, .external_lex_state = 44}, + [1803] = {.lex_state = 201, .external_lex_state = 21}, + [1804] = {.lex_state = 538, .external_lex_state = 44}, + [1805] = {.lex_state = 538, .external_lex_state = 44}, + [1806] = {.lex_state = 261, .external_lex_state = 49}, + [1807] = {.lex_state = 233, .external_lex_state = 44}, + [1808] = {.lex_state = 296, .external_lex_state = 36}, + [1809] = {.lex_state = 233, .external_lex_state = 44}, + [1810] = {.lex_state = 538, .external_lex_state = 44}, + [1811] = {.lex_state = 298, .external_lex_state = 29}, + [1812] = {.lex_state = 233, .external_lex_state = 44}, + [1813] = {.lex_state = 538, .external_lex_state = 44}, + [1814] = {.lex_state = 189, .external_lex_state = 22}, + [1815] = {.lex_state = 539, .external_lex_state = 44}, + [1816] = {.lex_state = 530, .external_lex_state = 19}, + [1817] = {.lex_state = 539, .external_lex_state = 44}, + [1818] = {.lex_state = 539, .external_lex_state = 44}, + [1819] = {.lex_state = 539, .external_lex_state = 44}, + [1820] = {.lex_state = 539, .external_lex_state = 44}, + [1821] = {.lex_state = 217, .external_lex_state = 37}, + [1822] = {.lex_state = 217, .external_lex_state = 37}, + [1823] = {.lex_state = 217, .external_lex_state = 37}, + [1824] = {.lex_state = 261, .external_lex_state = 49}, + [1825] = {.lex_state = 233, .external_lex_state = 44}, + [1826] = {.lex_state = 533, .external_lex_state = 19}, + [1827] = {.lex_state = 233, .external_lex_state = 44}, + [1828] = {.lex_state = 533, .external_lex_state = 19}, + [1829] = {.lex_state = 533, .external_lex_state = 19}, + [1830] = {.lex_state = 261, .external_lex_state = 49}, + [1831] = {.lex_state = 296, .external_lex_state = 36}, + [1832] = {.lex_state = 540, .external_lex_state = 44}, + [1833] = {.lex_state = 539, .external_lex_state = 44}, + [1834] = {.lex_state = 233, .external_lex_state = 44}, + [1835] = {.lex_state = 189, .external_lex_state = 19}, + [1836] = {.lex_state = 538, .external_lex_state = 44}, + [1837] = {.lex_state = 538, .external_lex_state = 44}, + [1838] = {.lex_state = 538, .external_lex_state = 44}, + [1839] = {.lex_state = 540, .external_lex_state = 44}, + [1840] = {.lex_state = 539, .external_lex_state = 44}, + [1841] = {.lex_state = 539, .external_lex_state = 44}, + [1842] = {.lex_state = 261, .external_lex_state = 49}, + [1843] = {.lex_state = 540, .external_lex_state = 44}, + [1844] = {.lex_state = 198, .external_lex_state = 19}, + [1845] = {.lex_state = 540, .external_lex_state = 44}, + [1846] = {.lex_state = 540, .external_lex_state = 44}, + [1847] = {.lex_state = 538, .external_lex_state = 44}, + [1848] = {.lex_state = 538, .external_lex_state = 44}, + [1849] = {.lex_state = 538, .external_lex_state = 44}, + [1850] = {.lex_state = 261, .external_lex_state = 50}, + [1851] = {.lex_state = 539, .external_lex_state = 44}, + [1852] = {.lex_state = 538, .external_lex_state = 44}, + [1853] = {.lex_state = 538, .external_lex_state = 44}, + [1854] = {.lex_state = 538, .external_lex_state = 44}, + [1855] = {.lex_state = 538, .external_lex_state = 44}, + [1856] = {.lex_state = 538, .external_lex_state = 44}, + [1857] = {.lex_state = 538, .external_lex_state = 44}, + [1858] = {.lex_state = 538, .external_lex_state = 44}, + [1859] = {.lex_state = 538, .external_lex_state = 44}, + [1860] = {.lex_state = 189, .external_lex_state = 22}, + [1861] = {.lex_state = 539, .external_lex_state = 44}, + [1862] = {.lex_state = 539, .external_lex_state = 44}, + [1863] = {.lex_state = 538, .external_lex_state = 44}, + [1864] = {.lex_state = 539, .external_lex_state = 44}, + [1865] = {.lex_state = 539, .external_lex_state = 44}, + [1866] = {.lex_state = 539, .external_lex_state = 44}, + [1867] = {.lex_state = 261, .external_lex_state = 50}, + [1868] = {.lex_state = 296, .external_lex_state = 36}, + [1869] = {.lex_state = 261, .external_lex_state = 49}, + [1870] = {.lex_state = 539, .external_lex_state = 44}, + [1871] = {.lex_state = 261, .external_lex_state = 49}, + [1872] = {.lex_state = 198, .external_lex_state = 19}, + [1873] = {.lex_state = 530, .external_lex_state = 19}, + [1874] = {.lex_state = 538, .external_lex_state = 44}, + [1875] = {.lex_state = 538, .external_lex_state = 44}, + [1876] = {.lex_state = 538, .external_lex_state = 44}, + [1877] = {.lex_state = 539, .external_lex_state = 44}, + [1878] = {.lex_state = 538, .external_lex_state = 44}, + [1879] = {.lex_state = 540, .external_lex_state = 44}, + [1880] = {.lex_state = 538, .external_lex_state = 44}, + [1881] = {.lex_state = 538, .external_lex_state = 44}, + [1882] = {.lex_state = 298, .external_lex_state = 29}, + [1883] = {.lex_state = 198, .external_lex_state = 19}, + [1884] = {.lex_state = 261, .external_lex_state = 49}, + [1885] = {.lex_state = 195, .external_lex_state = 21}, + [1886] = {.lex_state = 201, .external_lex_state = 21}, + [1887] = {.lex_state = 530, .external_lex_state = 19}, + [1888] = {.lex_state = 539, .external_lex_state = 44}, + [1889] = {.lex_state = 540, .external_lex_state = 44}, + [1890] = {.lex_state = 186, .external_lex_state = 21}, + [1891] = {.lex_state = 539, .external_lex_state = 44}, + [1892] = {.lex_state = 198, .external_lex_state = 19}, + [1893] = {.lex_state = 198, .external_lex_state = 19}, + [1894] = {.lex_state = 540, .external_lex_state = 44}, + [1895] = {.lex_state = 533, .external_lex_state = 19}, + [1896] = {.lex_state = 539, .external_lex_state = 44}, + [1897] = {.lex_state = 300, .external_lex_state = 51}, + [1898] = {.lex_state = 533, .external_lex_state = 19}, + [1899] = {.lex_state = 198, .external_lex_state = 22}, + [1900] = {.lex_state = 533, .external_lex_state = 19}, + [1901] = {.lex_state = 300, .external_lex_state = 51}, + [1902] = {.lex_state = 538, .external_lex_state = 44}, + [1903] = {.lex_state = 538, .external_lex_state = 44}, + [1904] = {.lex_state = 300, .external_lex_state = 51}, + [1905] = {.lex_state = 261, .external_lex_state = 49}, + [1906] = {.lex_state = 261, .external_lex_state = 50}, + [1907] = {.lex_state = 298, .external_lex_state = 29}, + [1908] = {.lex_state = 540, .external_lex_state = 44}, + [1909] = {.lex_state = 198, .external_lex_state = 19}, + [1910] = {.lex_state = 540, .external_lex_state = 44}, + [1911] = {.lex_state = 540, .external_lex_state = 44}, + [1912] = {.lex_state = 300, .external_lex_state = 51}, + [1913] = {.lex_state = 261, .external_lex_state = 49}, + [1914] = {.lex_state = 538, .external_lex_state = 44}, + [1915] = {.lex_state = 538, .external_lex_state = 44}, + [1916] = {.lex_state = 540, .external_lex_state = 44}, + [1917] = {.lex_state = 539, .external_lex_state = 44}, + [1918] = {.lex_state = 539, .external_lex_state = 44}, + [1919] = {.lex_state = 539, .external_lex_state = 44}, + [1920] = {.lex_state = 539, .external_lex_state = 44}, + [1921] = {.lex_state = 539, .external_lex_state = 44}, + [1922] = {.lex_state = 539, .external_lex_state = 44}, + [1923] = {.lex_state = 539, .external_lex_state = 44}, + [1924] = {.lex_state = 539, .external_lex_state = 44}, + [1925] = {.lex_state = 261, .external_lex_state = 50}, + [1926] = {.lex_state = 261, .external_lex_state = 50}, + [1927] = {.lex_state = 261, .external_lex_state = 50}, + [1928] = {.lex_state = 539, .external_lex_state = 44}, + [1929] = {.lex_state = 530, .external_lex_state = 19}, + [1930] = {.lex_state = 533, .external_lex_state = 19}, + [1931] = {.lex_state = 533, .external_lex_state = 19}, + [1932] = {.lex_state = 261, .external_lex_state = 49}, + [1933] = {.lex_state = 261, .external_lex_state = 49}, + [1934] = {.lex_state = 261, .external_lex_state = 49}, + [1935] = {.lex_state = 261, .external_lex_state = 49}, + [1936] = {.lex_state = 261, .external_lex_state = 49}, + [1937] = {.lex_state = 261, .external_lex_state = 49}, + [1938] = {.lex_state = 261, .external_lex_state = 49}, + [1939] = {.lex_state = 533, .external_lex_state = 19}, + [1940] = {.lex_state = 261, .external_lex_state = 49}, + [1941] = {.lex_state = 261, .external_lex_state = 49}, + [1942] = {.lex_state = 261, .external_lex_state = 49}, + [1943] = {.lex_state = 261, .external_lex_state = 49}, + [1944] = {.lex_state = 261, .external_lex_state = 49}, + [1945] = {.lex_state = 540, .external_lex_state = 44}, + [1946] = {.lex_state = 540, .external_lex_state = 44}, + [1947] = {.lex_state = 530, .external_lex_state = 19}, + [1948] = {.lex_state = 261, .external_lex_state = 49}, + [1949] = {.lex_state = 261, .external_lex_state = 49}, + [1950] = {.lex_state = 261, .external_lex_state = 49}, + [1951] = {.lex_state = 530, .external_lex_state = 19}, + [1952] = {.lex_state = 533, .external_lex_state = 19}, + [1953] = {.lex_state = 533, .external_lex_state = 19}, + [1954] = {.lex_state = 300, .external_lex_state = 51}, + [1955] = {.lex_state = 300, .external_lex_state = 51}, + [1956] = {.lex_state = 300, .external_lex_state = 51}, + [1957] = {.lex_state = 533, .external_lex_state = 19}, + [1958] = {.lex_state = 533, .external_lex_state = 19}, + [1959] = {.lex_state = 533, .external_lex_state = 19}, + [1960] = {.lex_state = 300, .external_lex_state = 51}, + [1961] = {.lex_state = 530, .external_lex_state = 19}, + [1962] = {.lex_state = 300, .external_lex_state = 51}, + [1963] = {.lex_state = 261, .external_lex_state = 49}, + [1964] = {.lex_state = 530, .external_lex_state = 22}, + [1965] = {.lex_state = 300, .external_lex_state = 51}, + [1966] = {.lex_state = 530, .external_lex_state = 22}, + [1967] = {.lex_state = 261, .external_lex_state = 49}, + [1968] = {.lex_state = 540, .external_lex_state = 44}, + [1969] = {.lex_state = 261, .external_lex_state = 49}, + [1970] = {.lex_state = 261, .external_lex_state = 49}, + [1971] = {.lex_state = 300, .external_lex_state = 51}, + [1972] = {.lex_state = 540, .external_lex_state = 44}, + [1973] = {.lex_state = 300, .external_lex_state = 51}, + [1974] = {.lex_state = 533, .external_lex_state = 19}, + [1975] = {.lex_state = 261, .external_lex_state = 49}, + [1976] = {.lex_state = 261, .external_lex_state = 49}, + [1977] = {.lex_state = 300, .external_lex_state = 51}, + [1978] = {.lex_state = 261, .external_lex_state = 49}, + [1979] = {.lex_state = 540, .external_lex_state = 44}, + [1980] = {.lex_state = 261, .external_lex_state = 49}, + [1981] = {.lex_state = 261, .external_lex_state = 49}, + [1982] = {.lex_state = 261, .external_lex_state = 49}, + [1983] = {.lex_state = 261, .external_lex_state = 49}, + [1984] = {.lex_state = 261, .external_lex_state = 49}, + [1985] = {.lex_state = 261, .external_lex_state = 49}, + [1986] = {.lex_state = 540, .external_lex_state = 44}, + [1987] = {.lex_state = 261, .external_lex_state = 49}, + [1988] = {.lex_state = 261, .external_lex_state = 49}, + [1989] = {.lex_state = 261, .external_lex_state = 49}, + [1990] = {.lex_state = 261, .external_lex_state = 49}, + [1991] = {.lex_state = 261, .external_lex_state = 49}, + [1992] = {.lex_state = 300, .external_lex_state = 51}, + [1993] = {.lex_state = 540, .external_lex_state = 44}, + [1994] = {.lex_state = 533, .external_lex_state = 19}, + [1995] = {.lex_state = 300, .external_lex_state = 51}, + [1996] = {.lex_state = 540, .external_lex_state = 44}, + [1997] = {.lex_state = 540, .external_lex_state = 44}, + [1998] = {.lex_state = 261, .external_lex_state = 49}, + [1999] = {.lex_state = 261, .external_lex_state = 49}, + [2000] = {.lex_state = 261, .external_lex_state = 49}, + [2001] = {.lex_state = 261, .external_lex_state = 49}, + [2002] = {.lex_state = 300, .external_lex_state = 51}, + [2003] = {.lex_state = 261, .external_lex_state = 49}, + [2004] = {.lex_state = 540, .external_lex_state = 44}, + [2005] = {.lex_state = 540, .external_lex_state = 44}, + [2006] = {.lex_state = 540, .external_lex_state = 44}, + [2007] = {.lex_state = 261, .external_lex_state = 49}, + [2008] = {.lex_state = 261, .external_lex_state = 49}, + [2009] = {.lex_state = 261, .external_lex_state = 49}, + [2010] = {.lex_state = 261, .external_lex_state = 49}, + [2011] = {.lex_state = 261, .external_lex_state = 49}, + [2012] = {.lex_state = 540, .external_lex_state = 44}, + [2013] = {.lex_state = 261, .external_lex_state = 49}, + [2014] = {.lex_state = 261, .external_lex_state = 49}, + [2015] = {.lex_state = 530, .external_lex_state = 19}, + [2016] = {.lex_state = 261, .external_lex_state = 49}, + [2017] = {.lex_state = 533, .external_lex_state = 19}, + [2018] = {.lex_state = 261, .external_lex_state = 49}, + [2019] = {.lex_state = 533, .external_lex_state = 19}, + [2020] = {.lex_state = 533, .external_lex_state = 19}, + [2021] = {.lex_state = 261, .external_lex_state = 49}, + [2022] = {.lex_state = 261, .external_lex_state = 49}, + [2023] = {.lex_state = 261, .external_lex_state = 49}, + [2024] = {.lex_state = 533, .external_lex_state = 22}, + [2025] = {.lex_state = 540, .external_lex_state = 44}, + [2026] = {.lex_state = 533, .external_lex_state = 22}, + [2027] = {.lex_state = 261, .external_lex_state = 49}, + [2028] = {.lex_state = 261, .external_lex_state = 49}, + [2029] = {.lex_state = 261, .external_lex_state = 49}, + [2030] = {.lex_state = 261, .external_lex_state = 49}, + [2031] = {.lex_state = 261, .external_lex_state = 49}, + [2032] = {.lex_state = 540, .external_lex_state = 44}, + [2033] = {.lex_state = 300, .external_lex_state = 52}, + [2034] = {.lex_state = 261, .external_lex_state = 49}, + [2035] = {.lex_state = 261, .external_lex_state = 49}, + [2036] = {.lex_state = 261, .external_lex_state = 49}, + [2037] = {.lex_state = 300, .external_lex_state = 51}, + [2038] = {.lex_state = 261, .external_lex_state = 49}, + [2039] = {.lex_state = 261, .external_lex_state = 49}, + [2040] = {.lex_state = 261, .external_lex_state = 49}, + [2041] = {.lex_state = 261, .external_lex_state = 49}, + [2042] = {.lex_state = 261, .external_lex_state = 49}, + [2043] = {.lex_state = 261, .external_lex_state = 49}, + [2044] = {.lex_state = 261, .external_lex_state = 49}, + [2045] = {.lex_state = 261, .external_lex_state = 49}, + [2046] = {.lex_state = 300, .external_lex_state = 51}, + [2047] = {.lex_state = 261, .external_lex_state = 49}, + [2048] = {.lex_state = 261, .external_lex_state = 49}, + [2049] = {.lex_state = 261, .external_lex_state = 49}, + [2050] = {.lex_state = 261, .external_lex_state = 49}, + [2051] = {.lex_state = 261, .external_lex_state = 49}, + [2052] = {.lex_state = 261, .external_lex_state = 49}, + [2053] = {.lex_state = 261, .external_lex_state = 49}, + [2054] = {.lex_state = 261, .external_lex_state = 49}, + [2055] = {.lex_state = 533, .external_lex_state = 19}, + [2056] = {.lex_state = 261, .external_lex_state = 49}, + [2057] = {.lex_state = 300, .external_lex_state = 51}, + [2058] = {.lex_state = 540, .external_lex_state = 44}, + [2059] = {.lex_state = 261, .external_lex_state = 49}, + [2060] = {.lex_state = 533, .external_lex_state = 19}, + [2061] = {.lex_state = 261, .external_lex_state = 49}, + [2062] = {.lex_state = 261, .external_lex_state = 49}, + [2063] = {.lex_state = 261, .external_lex_state = 49}, + [2064] = {.lex_state = 261, .external_lex_state = 49}, + [2065] = {.lex_state = 300, .external_lex_state = 51}, + [2066] = {.lex_state = 261, .external_lex_state = 49}, + [2067] = {.lex_state = 540, .external_lex_state = 44}, + [2068] = {.lex_state = 540, .external_lex_state = 44}, + [2069] = {.lex_state = 261, .external_lex_state = 49}, + [2070] = {.lex_state = 533, .external_lex_state = 19}, + [2071] = {.lex_state = 533, .external_lex_state = 19}, + [2072] = {.lex_state = 261, .external_lex_state = 49}, + [2073] = {.lex_state = 540, .external_lex_state = 44}, + [2074] = {.lex_state = 540, .external_lex_state = 44}, + [2075] = {.lex_state = 300, .external_lex_state = 51}, + [2076] = {.lex_state = 533, .external_lex_state = 19}, + [2077] = {.lex_state = 300, .external_lex_state = 51}, + [2078] = {.lex_state = 533, .external_lex_state = 19}, + [2079] = {.lex_state = 533, .external_lex_state = 19}, + [2080] = {.lex_state = 540, .external_lex_state = 44}, + [2081] = {.lex_state = 540, .external_lex_state = 44}, + [2082] = {.lex_state = 533, .external_lex_state = 19}, + [2083] = {.lex_state = 533, .external_lex_state = 19}, + [2084] = {.lex_state = 533, .external_lex_state = 19}, + [2085] = {.lex_state = 533, .external_lex_state = 19}, + [2086] = {.lex_state = 540, .external_lex_state = 44}, + [2087] = {.lex_state = 261, .external_lex_state = 49}, + [2088] = {.lex_state = 533, .external_lex_state = 19}, + [2089] = {.lex_state = 261, .external_lex_state = 49}, + [2090] = {.lex_state = 261, .external_lex_state = 49}, + [2091] = {.lex_state = 540, .external_lex_state = 44}, + [2092] = {.lex_state = 261, .external_lex_state = 49}, + [2093] = {.lex_state = 300, .external_lex_state = 51}, + [2094] = {.lex_state = 198, .external_lex_state = 22}, + [2095] = {.lex_state = 540, .external_lex_state = 44}, + [2096] = {.lex_state = 533, .external_lex_state = 19}, + [2097] = {.lex_state = 533, .external_lex_state = 19}, + [2098] = {.lex_state = 533, .external_lex_state = 19}, + [2099] = {.lex_state = 533, .external_lex_state = 19}, + [2100] = {.lex_state = 540, .external_lex_state = 44}, + [2101] = {.lex_state = 533, .external_lex_state = 19}, + [2102] = {.lex_state = 533, .external_lex_state = 19}, + [2103] = {.lex_state = 533, .external_lex_state = 19}, + [2104] = {.lex_state = 533, .external_lex_state = 19}, + [2105] = {.lex_state = 540, .external_lex_state = 44}, + [2106] = {.lex_state = 533, .external_lex_state = 19}, + [2107] = {.lex_state = 533, .external_lex_state = 19}, + [2108] = {.lex_state = 540, .external_lex_state = 44}, + [2109] = {.lex_state = 540, .external_lex_state = 44}, + [2110] = {.lex_state = 533, .external_lex_state = 19}, + [2111] = {.lex_state = 540, .external_lex_state = 44}, + [2112] = {.lex_state = 533, .external_lex_state = 19}, + [2113] = {.lex_state = 247, .external_lex_state = 36}, + [2114] = {.lex_state = 540, .external_lex_state = 44}, + [2115] = {.lex_state = 247, .external_lex_state = 36}, + [2116] = {.lex_state = 540, .external_lex_state = 44}, + [2117] = {.lex_state = 533, .external_lex_state = 19}, + [2118] = {.lex_state = 207, .external_lex_state = 22}, + [2119] = {.lex_state = 261, .external_lex_state = 49}, + [2120] = {.lex_state = 533, .external_lex_state = 19}, + [2121] = {.lex_state = 540, .external_lex_state = 44}, + [2122] = {.lex_state = 533, .external_lex_state = 19}, + [2123] = {.lex_state = 296, .external_lex_state = 36}, + [2124] = {.lex_state = 533, .external_lex_state = 22}, + [2125] = {.lex_state = 300, .external_lex_state = 52}, + [2126] = {.lex_state = 300, .external_lex_state = 52}, + [2127] = {.lex_state = 300, .external_lex_state = 52}, + [2128] = {.lex_state = 533, .external_lex_state = 19}, + [2129] = {.lex_state = 261, .external_lex_state = 49}, + [2130] = {.lex_state = 261, .external_lex_state = 49}, + [2131] = {.lex_state = 261, .external_lex_state = 49}, + [2132] = {.lex_state = 261, .external_lex_state = 49}, + [2133] = {.lex_state = 533, .external_lex_state = 19}, + [2134] = {.lex_state = 261, .external_lex_state = 49}, + [2135] = {.lex_state = 300, .external_lex_state = 52}, + [2136] = {.lex_state = 533, .external_lex_state = 19}, + [2137] = {.lex_state = 261, .external_lex_state = 49}, + [2138] = {.lex_state = 296, .external_lex_state = 36}, + [2139] = {.lex_state = 261, .external_lex_state = 49}, + [2140] = {.lex_state = 533, .external_lex_state = 19}, + [2141] = {.lex_state = 533, .external_lex_state = 19}, + [2142] = {.lex_state = 533, .external_lex_state = 19}, + [2143] = {.lex_state = 533, .external_lex_state = 19}, + [2144] = {.lex_state = 533, .external_lex_state = 19}, + [2145] = {.lex_state = 261, .external_lex_state = 49}, + [2146] = {.lex_state = 533, .external_lex_state = 19}, + [2147] = {.lex_state = 207, .external_lex_state = 22}, + [2148] = {.lex_state = 533, .external_lex_state = 19}, + [2149] = {.lex_state = 533, .external_lex_state = 19}, + [2150] = {.lex_state = 533, .external_lex_state = 19}, + [2151] = {.lex_state = 533, .external_lex_state = 19}, + [2152] = {.lex_state = 300, .external_lex_state = 52}, + [2153] = {.lex_state = 533, .external_lex_state = 19}, + [2154] = {.lex_state = 300, .external_lex_state = 52}, + [2155] = {.lex_state = 300, .external_lex_state = 52}, + [2156] = {.lex_state = 533, .external_lex_state = 19}, + [2157] = {.lex_state = 533, .external_lex_state = 19}, + [2158] = {.lex_state = 530, .external_lex_state = 19}, + [2159] = {.lex_state = 533, .external_lex_state = 19}, + [2160] = {.lex_state = 201, .external_lex_state = 21}, + [2161] = {.lex_state = 533, .external_lex_state = 22}, + [2162] = {.lex_state = 540, .external_lex_state = 44}, + [2163] = {.lex_state = 533, .external_lex_state = 19}, + [2164] = {.lex_state = 533, .external_lex_state = 19}, + [2165] = {.lex_state = 533, .external_lex_state = 19}, + [2166] = {.lex_state = 261, .external_lex_state = 49}, + [2167] = {.lex_state = 533, .external_lex_state = 19}, + [2168] = {.lex_state = 533, .external_lex_state = 19}, + [2169] = {.lex_state = 533, .external_lex_state = 19}, + [2170] = {.lex_state = 533, .external_lex_state = 19}, + [2171] = {.lex_state = 533, .external_lex_state = 19}, + [2172] = {.lex_state = 533, .external_lex_state = 19}, + [2173] = {.lex_state = 533, .external_lex_state = 19}, + [2174] = {.lex_state = 261, .external_lex_state = 49}, + [2175] = {.lex_state = 533, .external_lex_state = 19}, + [2176] = {.lex_state = 533, .external_lex_state = 19}, + [2177] = {.lex_state = 533, .external_lex_state = 19}, + [2178] = {.lex_state = 533, .external_lex_state = 19}, + [2179] = {.lex_state = 533, .external_lex_state = 19}, + [2180] = {.lex_state = 533, .external_lex_state = 19}, + [2181] = {.lex_state = 533, .external_lex_state = 19}, + [2182] = {.lex_state = 189, .external_lex_state = 22}, + [2183] = {.lex_state = 533, .external_lex_state = 19}, + [2184] = {.lex_state = 261, .external_lex_state = 49}, + [2185] = {.lex_state = 533, .external_lex_state = 19}, + [2186] = {.lex_state = 533, .external_lex_state = 19}, + [2187] = {.lex_state = 533, .external_lex_state = 19}, + [2188] = {.lex_state = 261, .external_lex_state = 49}, + [2189] = {.lex_state = 533, .external_lex_state = 19}, + [2190] = {.lex_state = 530, .external_lex_state = 22}, + [2191] = {.lex_state = 533, .external_lex_state = 19}, + [2192] = {.lex_state = 261, .external_lex_state = 49}, + [2193] = {.lex_state = 533, .external_lex_state = 19}, + [2194] = {.lex_state = 533, .external_lex_state = 19}, + [2195] = {.lex_state = 533, .external_lex_state = 19}, + [2196] = {.lex_state = 533, .external_lex_state = 19}, + [2197] = {.lex_state = 261, .external_lex_state = 49}, + [2198] = {.lex_state = 261, .external_lex_state = 49}, + [2199] = {.lex_state = 300, .external_lex_state = 52}, + [2200] = {.lex_state = 533, .external_lex_state = 19}, + [2201] = {.lex_state = 533, .external_lex_state = 19}, + [2202] = {.lex_state = 261, .external_lex_state = 49}, + [2203] = {.lex_state = 300, .external_lex_state = 52}, + [2204] = {.lex_state = 300, .external_lex_state = 52}, + [2205] = {.lex_state = 261, .external_lex_state = 49}, + [2206] = {.lex_state = 533, .external_lex_state = 19}, + [2207] = {.lex_state = 533, .external_lex_state = 19}, + [2208] = {.lex_state = 261, .external_lex_state = 49}, + [2209] = {.lex_state = 261, .external_lex_state = 49}, + [2210] = {.lex_state = 540, .external_lex_state = 44}, + [2211] = {.lex_state = 300, .external_lex_state = 52}, + [2212] = {.lex_state = 533, .external_lex_state = 19}, + [2213] = {.lex_state = 261, .external_lex_state = 49}, + [2214] = {.lex_state = 540, .external_lex_state = 44}, + [2215] = {.lex_state = 530, .external_lex_state = 19}, + [2216] = {.lex_state = 540, .external_lex_state = 44}, + [2217] = {.lex_state = 533, .external_lex_state = 19}, + [2218] = {.lex_state = 540, .external_lex_state = 44}, + [2219] = {.lex_state = 533, .external_lex_state = 19}, + [2220] = {.lex_state = 533, .external_lex_state = 19}, + [2221] = {.lex_state = 533, .external_lex_state = 19}, + [2222] = {.lex_state = 540, .external_lex_state = 44}, + [2223] = {.lex_state = 533, .external_lex_state = 19}, + [2224] = {.lex_state = 540, .external_lex_state = 44}, + [2225] = {.lex_state = 261, .external_lex_state = 49}, + [2226] = {.lex_state = 261, .external_lex_state = 49}, + [2227] = {.lex_state = 533, .external_lex_state = 19}, + [2228] = {.lex_state = 533, .external_lex_state = 19}, + [2229] = {.lex_state = 261, .external_lex_state = 49}, + [2230] = {.lex_state = 261, .external_lex_state = 49}, + [2231] = {.lex_state = 261, .external_lex_state = 49}, + [2232] = {.lex_state = 261, .external_lex_state = 49}, + [2233] = {.lex_state = 261, .external_lex_state = 49}, + [2234] = {.lex_state = 261, .external_lex_state = 49}, + [2235] = {.lex_state = 261, .external_lex_state = 49}, + [2236] = {.lex_state = 533, .external_lex_state = 19}, + [2237] = {.lex_state = 533, .external_lex_state = 19}, + [2238] = {.lex_state = 261, .external_lex_state = 49}, + [2239] = {.lex_state = 261, .external_lex_state = 49}, + [2240] = {.lex_state = 261, .external_lex_state = 49}, + [2241] = {.lex_state = 261, .external_lex_state = 49}, + [2242] = {.lex_state = 261, .external_lex_state = 49}, + [2243] = {.lex_state = 261, .external_lex_state = 49}, + [2244] = {.lex_state = 261, .external_lex_state = 49}, + [2245] = {.lex_state = 261, .external_lex_state = 49}, + [2246] = {.lex_state = 261, .external_lex_state = 49}, + [2247] = {.lex_state = 530, .external_lex_state = 19}, + [2248] = {.lex_state = 261, .external_lex_state = 49}, + [2249] = {.lex_state = 261, .external_lex_state = 49}, + [2250] = {.lex_state = 261, .external_lex_state = 49}, + [2251] = {.lex_state = 261, .external_lex_state = 49}, + [2252] = {.lex_state = 261, .external_lex_state = 49}, + [2253] = {.lex_state = 530, .external_lex_state = 19}, + [2254] = {.lex_state = 530, .external_lex_state = 22}, + [2255] = {.lex_state = 533, .external_lex_state = 19}, + [2256] = {.lex_state = 261, .external_lex_state = 49}, + [2257] = {.lex_state = 540, .external_lex_state = 44}, + [2258] = {.lex_state = 261, .external_lex_state = 49}, + [2259] = {.lex_state = 533, .external_lex_state = 19}, + [2260] = {.lex_state = 540, .external_lex_state = 44}, + [2261] = {.lex_state = 261, .external_lex_state = 49}, + [2262] = {.lex_state = 533, .external_lex_state = 19}, + [2263] = {.lex_state = 540, .external_lex_state = 44}, + [2264] = {.lex_state = 533, .external_lex_state = 19}, + [2265] = {.lex_state = 533, .external_lex_state = 19}, + [2266] = {.lex_state = 261, .external_lex_state = 49}, + [2267] = {.lex_state = 261, .external_lex_state = 49}, + [2268] = {.lex_state = 300, .external_lex_state = 52}, + [2269] = {.lex_state = 300, .external_lex_state = 52}, + [2270] = {.lex_state = 534, .external_lex_state = 22}, + [2271] = {.lex_state = 303, .external_lex_state = 53}, + [2272] = {.lex_state = 533, .external_lex_state = 19}, + [2273] = {.lex_state = 533, .external_lex_state = 19}, + [2274] = {.lex_state = 278, .external_lex_state = 54}, + [2275] = {.lex_state = 278, .external_lex_state = 54}, + [2276] = {.lex_state = 278, .external_lex_state = 54}, + [2277] = {.lex_state = 278, .external_lex_state = 54}, + [2278] = {.lex_state = 303, .external_lex_state = 53}, + [2279] = {.lex_state = 227, .external_lex_state = 41}, + [2280] = {.lex_state = 530, .external_lex_state = 22}, + [2281] = {.lex_state = 534, .external_lex_state = 22}, + [2282] = {.lex_state = 227, .external_lex_state = 41}, + [2283] = {.lex_state = 227, .external_lex_state = 41}, + [2284] = {.lex_state = 303, .external_lex_state = 53}, + [2285] = {.lex_state = 303, .external_lex_state = 53}, + [2286] = {.lex_state = 533, .external_lex_state = 19}, + [2287] = {.lex_state = 300, .external_lex_state = 52}, + [2288] = {.lex_state = 227, .external_lex_state = 41}, + [2289] = {.lex_state = 300, .external_lex_state = 52}, + [2290] = {.lex_state = 227, .external_lex_state = 41}, + [2291] = {.lex_state = 227, .external_lex_state = 41}, + [2292] = {.lex_state = 278, .external_lex_state = 54}, + [2293] = {.lex_state = 303, .external_lex_state = 53}, + [2294] = {.lex_state = 300, .external_lex_state = 52}, + [2295] = {.lex_state = 300, .external_lex_state = 52}, + [2296] = {.lex_state = 303, .external_lex_state = 53}, + [2297] = {.lex_state = 227, .external_lex_state = 41}, + [2298] = {.lex_state = 303, .external_lex_state = 53}, + [2299] = {.lex_state = 300, .external_lex_state = 52}, + [2300] = {.lex_state = 303, .external_lex_state = 53}, + [2301] = {.lex_state = 300, .external_lex_state = 52}, + [2302] = {.lex_state = 227, .external_lex_state = 41}, + [2303] = {.lex_state = 303, .external_lex_state = 53}, + [2304] = {.lex_state = 278, .external_lex_state = 54}, + [2305] = {.lex_state = 207, .external_lex_state = 22}, + [2306] = {.lex_state = 533, .external_lex_state = 22}, + [2307] = {.lex_state = 278, .external_lex_state = 54}, + [2308] = {.lex_state = 303, .external_lex_state = 53}, + [2309] = {.lex_state = 303, .external_lex_state = 53}, + [2310] = {.lex_state = 530, .external_lex_state = 22}, + [2311] = {.lex_state = 534, .external_lex_state = 22}, + [2312] = {.lex_state = 278, .external_lex_state = 54}, + [2313] = {.lex_state = 300, .external_lex_state = 52}, + [2314] = {.lex_state = 303, .external_lex_state = 53}, + [2315] = {.lex_state = 278, .external_lex_state = 54}, + [2316] = {.lex_state = 534, .external_lex_state = 22}, + [2317] = {.lex_state = 278, .external_lex_state = 54}, + [2318] = {.lex_state = 300, .external_lex_state = 52}, + [2319] = {.lex_state = 278, .external_lex_state = 54}, + [2320] = {.lex_state = 300, .external_lex_state = 52}, + [2321] = {.lex_state = 278, .external_lex_state = 54}, + [2322] = {.lex_state = 278, .external_lex_state = 54}, + [2323] = {.lex_state = 225, .external_lex_state = 41}, + [2324] = {.lex_state = 225, .external_lex_state = 41}, + [2325] = {.lex_state = 227, .external_lex_state = 41}, + [2326] = {.lex_state = 300, .external_lex_state = 52}, + [2327] = {.lex_state = 227, .external_lex_state = 41}, + [2328] = {.lex_state = 227, .external_lex_state = 41}, + [2329] = {.lex_state = 225, .external_lex_state = 41}, + [2330] = {.lex_state = 225, .external_lex_state = 41}, + [2331] = {.lex_state = 225, .external_lex_state = 41}, + [2332] = {.lex_state = 299, .external_lex_state = 23}, + [2333] = {.lex_state = 300, .external_lex_state = 52}, + [2334] = {.lex_state = 300, .external_lex_state = 52}, + [2335] = {.lex_state = 300, .external_lex_state = 52}, + [2336] = {.lex_state = 225, .external_lex_state = 41}, + [2337] = {.lex_state = 227, .external_lex_state = 41}, + [2338] = {.lex_state = 533, .external_lex_state = 22}, + [2339] = {.lex_state = 300, .external_lex_state = 52}, + [2340] = {.lex_state = 227, .external_lex_state = 41}, + [2341] = {.lex_state = 300, .external_lex_state = 52}, + [2342] = {.lex_state = 225, .external_lex_state = 41}, + [2343] = {.lex_state = 300, .external_lex_state = 52}, + [2344] = {.lex_state = 300, .external_lex_state = 52}, + [2345] = {.lex_state = 299, .external_lex_state = 23}, + [2346] = {.lex_state = 303, .external_lex_state = 53}, + [2347] = {.lex_state = 278, .external_lex_state = 54}, + [2348] = {.lex_state = 303, .external_lex_state = 53}, + [2349] = {.lex_state = 235, .external_lex_state = 55}, + [2350] = {.lex_state = 301, .external_lex_state = 56}, + [2351] = {.lex_state = 299, .external_lex_state = 23}, + [2352] = {.lex_state = 299, .external_lex_state = 25}, + [2353] = {.lex_state = 235, .external_lex_state = 55}, + [2354] = {.lex_state = 278, .external_lex_state = 54}, + [2355] = {.lex_state = 278, .external_lex_state = 54}, + [2356] = {.lex_state = 303, .external_lex_state = 57}, + [2357] = {.lex_state = 301, .external_lex_state = 56}, + [2358] = {.lex_state = 235, .external_lex_state = 55}, + [2359] = {.lex_state = 301, .external_lex_state = 56}, + [2360] = {.lex_state = 235, .external_lex_state = 55}, + [2361] = {.lex_state = 235, .external_lex_state = 55}, + [2362] = {.lex_state = 303, .external_lex_state = 53}, + [2363] = {.lex_state = 303, .external_lex_state = 53}, + [2364] = {.lex_state = 235, .external_lex_state = 55}, + [2365] = {.lex_state = 225, .external_lex_state = 44}, + [2366] = {.lex_state = 299, .external_lex_state = 25}, + [2367] = {.lex_state = 225, .external_lex_state = 44}, + [2368] = {.lex_state = 299, .external_lex_state = 23}, + [2369] = {.lex_state = 301, .external_lex_state = 56}, + [2370] = {.lex_state = 299, .external_lex_state = 25}, + [2371] = {.lex_state = 301, .external_lex_state = 56}, + [2372] = {.lex_state = 235, .external_lex_state = 55}, + [2373] = {.lex_state = 309, .external_lex_state = 56}, + [2374] = {.lex_state = 276, .external_lex_state = 45}, + [2375] = {.lex_state = 303, .external_lex_state = 53}, + [2376] = {.lex_state = 235, .external_lex_state = 55}, + [2377] = {.lex_state = 235, .external_lex_state = 55}, + [2378] = {.lex_state = 235, .external_lex_state = 55}, + [2379] = {.lex_state = 235, .external_lex_state = 55}, + [2380] = {.lex_state = 303, .external_lex_state = 53}, + [2381] = {.lex_state = 534, .external_lex_state = 22}, + [2382] = {.lex_state = 276, .external_lex_state = 45}, + [2383] = {.lex_state = 278, .external_lex_state = 54}, + [2384] = {.lex_state = 303, .external_lex_state = 53}, + [2385] = {.lex_state = 225, .external_lex_state = 44}, + [2386] = {.lex_state = 225, .external_lex_state = 44}, + [2387] = {.lex_state = 278, .external_lex_state = 54}, + [2388] = {.lex_state = 303, .external_lex_state = 53}, + [2389] = {.lex_state = 227, .external_lex_state = 44}, + [2390] = {.lex_state = 303, .external_lex_state = 53}, + [2391] = {.lex_state = 227, .external_lex_state = 44}, + [2392] = {.lex_state = 278, .external_lex_state = 54}, + [2393] = {.lex_state = 278, .external_lex_state = 54}, + [2394] = {.lex_state = 299, .external_lex_state = 25}, + [2395] = {.lex_state = 309, .external_lex_state = 56}, + [2396] = {.lex_state = 301, .external_lex_state = 56}, + [2397] = {.lex_state = 278, .external_lex_state = 54}, + [2398] = {.lex_state = 303, .external_lex_state = 53}, + [2399] = {.lex_state = 303, .external_lex_state = 53}, + [2400] = {.lex_state = 303, .external_lex_state = 53}, + [2401] = {.lex_state = 303, .external_lex_state = 53}, + [2402] = {.lex_state = 303, .external_lex_state = 53}, + [2403] = {.lex_state = 225, .external_lex_state = 44}, + [2404] = {.lex_state = 227, .external_lex_state = 44}, + [2405] = {.lex_state = 309, .external_lex_state = 56}, + [2406] = {.lex_state = 309, .external_lex_state = 56}, + [2407] = {.lex_state = 309, .external_lex_state = 56}, + [2408] = {.lex_state = 281, .external_lex_state = 54}, + [2409] = {.lex_state = 281, .external_lex_state = 54}, + [2410] = {.lex_state = 235, .external_lex_state = 55}, + [2411] = {.lex_state = 235, .external_lex_state = 55}, + [2412] = {.lex_state = 303, .external_lex_state = 53}, + [2413] = {.lex_state = 301, .external_lex_state = 56}, + [2414] = {.lex_state = 235, .external_lex_state = 55}, + [2415] = {.lex_state = 301, .external_lex_state = 56}, + [2416] = {.lex_state = 235, .external_lex_state = 55}, + [2417] = {.lex_state = 299, .external_lex_state = 25}, + [2418] = {.lex_state = 534, .external_lex_state = 22}, + [2419] = {.lex_state = 309, .external_lex_state = 56}, + [2420] = {.lex_state = 303, .external_lex_state = 53}, + [2421] = {.lex_state = 303, .external_lex_state = 53}, + [2422] = {.lex_state = 227, .external_lex_state = 44}, + [2423] = {.lex_state = 303, .external_lex_state = 53}, + [2424] = {.lex_state = 303, .external_lex_state = 57}, + [2425] = {.lex_state = 303, .external_lex_state = 57}, + [2426] = {.lex_state = 309, .external_lex_state = 56}, + [2427] = {.lex_state = 301, .external_lex_state = 56}, + [2428] = {.lex_state = 235, .external_lex_state = 55}, + [2429] = {.lex_state = 301, .external_lex_state = 56}, + [2430] = {.lex_state = 303, .external_lex_state = 53}, + [2431] = {.lex_state = 227, .external_lex_state = 44}, + [2432] = {.lex_state = 301, .external_lex_state = 56}, + [2433] = {.lex_state = 277, .external_lex_state = 54}, + [2434] = {.lex_state = 301, .external_lex_state = 56}, + [2435] = {.lex_state = 309, .external_lex_state = 56}, + [2436] = {.lex_state = 301, .external_lex_state = 56}, + [2437] = {.lex_state = 303, .external_lex_state = 57}, + [2438] = {.lex_state = 303, .external_lex_state = 57}, + [2439] = {.lex_state = 278, .external_lex_state = 54}, + [2440] = {.lex_state = 301, .external_lex_state = 56}, + [2441] = {.lex_state = 303, .external_lex_state = 57}, + [2442] = {.lex_state = 278, .external_lex_state = 54}, + [2443] = {.lex_state = 271, .external_lex_state = 58}, + [2444] = {.lex_state = 309, .external_lex_state = 56}, + [2445] = {.lex_state = 273, .external_lex_state = 45}, + [2446] = {.lex_state = 303, .external_lex_state = 57}, + [2447] = {.lex_state = 303, .external_lex_state = 57}, + [2448] = {.lex_state = 303, .external_lex_state = 57}, + [2449] = {.lex_state = 303, .external_lex_state = 57}, + [2450] = {.lex_state = 303, .external_lex_state = 57}, + [2451] = {.lex_state = 276, .external_lex_state = 45}, + [2452] = {.lex_state = 309, .external_lex_state = 56}, + [2453] = {.lex_state = 309, .external_lex_state = 59}, + [2454] = {.lex_state = 309, .external_lex_state = 56}, + [2455] = {.lex_state = 276, .external_lex_state = 45}, + [2456] = {.lex_state = 278, .external_lex_state = 54}, + [2457] = {.lex_state = 302, .external_lex_state = 31}, + [2458] = {.lex_state = 301, .external_lex_state = 59}, + [2459] = {.lex_state = 278, .external_lex_state = 54}, + [2460] = {.lex_state = 304, .external_lex_state = 57}, + [2461] = {.lex_state = 276, .external_lex_state = 45}, + [2462] = {.lex_state = 303, .external_lex_state = 57}, + [2463] = {.lex_state = 273, .external_lex_state = 45}, + [2464] = {.lex_state = 276, .external_lex_state = 54}, + [2465] = {.lex_state = 309, .external_lex_state = 56}, + [2466] = {.lex_state = 278, .external_lex_state = 54}, + [2467] = {.lex_state = 309, .external_lex_state = 56}, + [2468] = {.lex_state = 309, .external_lex_state = 56}, + [2469] = {.lex_state = 309, .external_lex_state = 56}, + [2470] = {.lex_state = 233, .external_lex_state = 44}, + [2471] = {.lex_state = 233, .external_lex_state = 44}, + [2472] = {.lex_state = 273, .external_lex_state = 45}, + [2473] = {.lex_state = 278, .external_lex_state = 54}, + [2474] = {.lex_state = 273, .external_lex_state = 45}, + [2475] = {.lex_state = 276, .external_lex_state = 54}, + [2476] = {.lex_state = 302, .external_lex_state = 31}, + [2477] = {.lex_state = 309, .external_lex_state = 56}, + [2478] = {.lex_state = 303, .external_lex_state = 57}, + [2479] = {.lex_state = 301, .external_lex_state = 56}, + [2480] = {.lex_state = 233, .external_lex_state = 44}, + [2481] = {.lex_state = 301, .external_lex_state = 56}, + [2482] = {.lex_state = 303, .external_lex_state = 57}, + [2483] = {.lex_state = 301, .external_lex_state = 59}, + [2484] = {.lex_state = 281, .external_lex_state = 42}, + [2485] = {.lex_state = 271, .external_lex_state = 58}, + [2486] = {.lex_state = 304, .external_lex_state = 57}, + [2487] = {.lex_state = 301, .external_lex_state = 59}, + [2488] = {.lex_state = 304, .external_lex_state = 57}, + [2489] = {.lex_state = 304, .external_lex_state = 57}, + [2490] = {.lex_state = 304, .external_lex_state = 57}, + [2491] = {.lex_state = 276, .external_lex_state = 54}, + [2492] = {.lex_state = 299, .external_lex_state = 25}, + [2493] = {.lex_state = 301, .external_lex_state = 59}, + [2494] = {.lex_state = 304, .external_lex_state = 57}, + [2495] = {.lex_state = 278, .external_lex_state = 54}, + [2496] = {.lex_state = 303, .external_lex_state = 57}, + [2497] = {.lex_state = 276, .external_lex_state = 45}, + [2498] = {.lex_state = 301, .external_lex_state = 56}, + [2499] = {.lex_state = 309, .external_lex_state = 56}, + [2500] = {.lex_state = 276, .external_lex_state = 54}, + [2501] = {.lex_state = 273, .external_lex_state = 45}, + [2502] = {.lex_state = 301, .external_lex_state = 56}, + [2503] = {.lex_state = 278, .external_lex_state = 54}, + [2504] = {.lex_state = 303, .external_lex_state = 57}, + [2505] = {.lex_state = 271, .external_lex_state = 58}, + [2506] = {.lex_state = 276, .external_lex_state = 54}, + [2507] = {.lex_state = 301, .external_lex_state = 56}, + [2508] = {.lex_state = 301, .external_lex_state = 56}, + [2509] = {.lex_state = 276, .external_lex_state = 54}, + [2510] = {.lex_state = 301, .external_lex_state = 56}, + [2511] = {.lex_state = 276, .external_lex_state = 45}, + [2512] = {.lex_state = 301, .external_lex_state = 56}, + [2513] = {.lex_state = 301, .external_lex_state = 56}, + [2514] = {.lex_state = 301, .external_lex_state = 56}, + [2515] = {.lex_state = 301, .external_lex_state = 56}, + [2516] = {.lex_state = 301, .external_lex_state = 56}, + [2517] = {.lex_state = 301, .external_lex_state = 56}, + [2518] = {.lex_state = 301, .external_lex_state = 56}, + [2519] = {.lex_state = 271, .external_lex_state = 58}, + [2520] = {.lex_state = 301, .external_lex_state = 56}, + [2521] = {.lex_state = 276, .external_lex_state = 45}, + [2522] = {.lex_state = 299, .external_lex_state = 25}, + [2523] = {.lex_state = 303, .external_lex_state = 57}, + [2524] = {.lex_state = 271, .external_lex_state = 58}, + [2525] = {.lex_state = 301, .external_lex_state = 56}, + [2526] = {.lex_state = 309, .external_lex_state = 56}, + [2527] = {.lex_state = 309, .external_lex_state = 56}, + [2528] = {.lex_state = 309, .external_lex_state = 56}, + [2529] = {.lex_state = 271, .external_lex_state = 58}, + [2530] = {.lex_state = 271, .external_lex_state = 58}, + [2531] = {.lex_state = 271, .external_lex_state = 58}, + [2532] = {.lex_state = 302, .external_lex_state = 31}, + [2533] = {.lex_state = 276, .external_lex_state = 45}, + [2534] = {.lex_state = 299, .external_lex_state = 25}, + [2535] = {.lex_state = 301, .external_lex_state = 56}, + [2536] = {.lex_state = 303, .external_lex_state = 57}, + [2537] = {.lex_state = 281, .external_lex_state = 54}, + [2538] = {.lex_state = 309, .external_lex_state = 59}, + [2539] = {.lex_state = 309, .external_lex_state = 59}, + [2540] = {.lex_state = 276, .external_lex_state = 45}, + [2541] = {.lex_state = 302, .external_lex_state = 31}, + [2542] = {.lex_state = 301, .external_lex_state = 56}, + [2543] = {.lex_state = 301, .external_lex_state = 59}, + [2544] = {.lex_state = 309, .external_lex_state = 56}, + [2545] = {.lex_state = 309, .external_lex_state = 56}, + [2546] = {.lex_state = 276, .external_lex_state = 45}, + [2547] = {.lex_state = 273, .external_lex_state = 45}, + [2548] = {.lex_state = 309, .external_lex_state = 59}, + [2549] = {.lex_state = 276, .external_lex_state = 45}, + [2550] = {.lex_state = 301, .external_lex_state = 59}, + [2551] = {.lex_state = 276, .external_lex_state = 45}, + [2552] = {.lex_state = 273, .external_lex_state = 45}, + [2553] = {.lex_state = 309, .external_lex_state = 59}, + [2554] = {.lex_state = 301, .external_lex_state = 56}, + [2555] = {.lex_state = 276, .external_lex_state = 45}, + [2556] = {.lex_state = 299, .external_lex_state = 25}, + [2557] = {.lex_state = 281, .external_lex_state = 42}, + [2558] = {.lex_state = 299, .external_lex_state = 25}, + [2559] = {.lex_state = 271, .external_lex_state = 58}, + [2560] = {.lex_state = 303, .external_lex_state = 57}, + [2561] = {.lex_state = 273, .external_lex_state = 45}, + [2562] = {.lex_state = 299, .external_lex_state = 25}, + [2563] = {.lex_state = 276, .external_lex_state = 45}, + [2564] = {.lex_state = 309, .external_lex_state = 59}, + [2565] = {.lex_state = 309, .external_lex_state = 56}, + [2566] = {.lex_state = 309, .external_lex_state = 56}, + [2567] = {.lex_state = 303, .external_lex_state = 57}, + [2568] = {.lex_state = 302, .external_lex_state = 31}, + [2569] = {.lex_state = 302, .external_lex_state = 31}, + [2570] = {.lex_state = 303, .external_lex_state = 57}, + [2571] = {.lex_state = 303, .external_lex_state = 57}, + [2572] = {.lex_state = 233, .external_lex_state = 44}, + [2573] = {.lex_state = 278, .external_lex_state = 54}, + [2574] = {.lex_state = 309, .external_lex_state = 56}, + [2575] = {.lex_state = 278, .external_lex_state = 54}, + [2576] = {.lex_state = 303, .external_lex_state = 57}, + [2577] = {.lex_state = 303, .external_lex_state = 57}, + [2578] = {.lex_state = 233, .external_lex_state = 44}, + [2579] = {.lex_state = 309, .external_lex_state = 56}, + [2580] = {.lex_state = 309, .external_lex_state = 56}, + [2581] = {.lex_state = 303, .external_lex_state = 57}, + [2582] = {.lex_state = 278, .external_lex_state = 54}, + [2583] = {.lex_state = 301, .external_lex_state = 59}, + [2584] = {.lex_state = 273, .external_lex_state = 45}, + [2585] = {.lex_state = 304, .external_lex_state = 57}, + [2586] = {.lex_state = 276, .external_lex_state = 54}, + [2587] = {.lex_state = 304, .external_lex_state = 57}, + [2588] = {.lex_state = 278, .external_lex_state = 54}, + [2589] = {.lex_state = 271, .external_lex_state = 60}, + [2590] = {.lex_state = 304, .external_lex_state = 57}, + [2591] = {.lex_state = 304, .external_lex_state = 57}, + [2592] = {.lex_state = 304, .external_lex_state = 57}, + [2593] = {.lex_state = 276, .external_lex_state = 54}, + [2594] = {.lex_state = 271, .external_lex_state = 42}, + [2595] = {.lex_state = 298, .external_lex_state = 29}, + [2596] = {.lex_state = 276, .external_lex_state = 45}, + [2597] = {.lex_state = 276, .external_lex_state = 45}, + [2598] = {.lex_state = 276, .external_lex_state = 45}, + [2599] = {.lex_state = 304, .external_lex_state = 57}, + [2600] = {.lex_state = 304, .external_lex_state = 57}, + [2601] = {.lex_state = 273, .external_lex_state = 61}, + [2602] = {.lex_state = 302, .external_lex_state = 33}, + [2603] = {.lex_state = 276, .external_lex_state = 54}, + [2604] = {.lex_state = 304, .external_lex_state = 57}, + [2605] = {.lex_state = 304, .external_lex_state = 57}, + [2606] = {.lex_state = 304, .external_lex_state = 57}, + [2607] = {.lex_state = 304, .external_lex_state = 57}, + [2608] = {.lex_state = 304, .external_lex_state = 57}, + [2609] = {.lex_state = 304, .external_lex_state = 57}, + [2610] = {.lex_state = 304, .external_lex_state = 57}, + [2611] = {.lex_state = 304, .external_lex_state = 57}, + [2612] = {.lex_state = 307, .external_lex_state = 59}, + [2613] = {.lex_state = 307, .external_lex_state = 59}, + [2614] = {.lex_state = 304, .external_lex_state = 57}, + [2615] = {.lex_state = 304, .external_lex_state = 57}, + [2616] = {.lex_state = 304, .external_lex_state = 57}, + [2617] = {.lex_state = 304, .external_lex_state = 57}, + [2618] = {.lex_state = 307, .external_lex_state = 59}, + [2619] = {.lex_state = 307, .external_lex_state = 59}, + [2620] = {.lex_state = 307, .external_lex_state = 59}, + [2621] = {.lex_state = 271, .external_lex_state = 42}, + [2622] = {.lex_state = 302, .external_lex_state = 31}, + [2623] = {.lex_state = 302, .external_lex_state = 31}, + [2624] = {.lex_state = 276, .external_lex_state = 54}, + [2625] = {.lex_state = 276, .external_lex_state = 54}, + [2626] = {.lex_state = 309, .external_lex_state = 59}, + [2627] = {.lex_state = 271, .external_lex_state = 42}, + [2628] = {.lex_state = 309, .external_lex_state = 59}, + [2629] = {.lex_state = 309, .external_lex_state = 59}, + [2630] = {.lex_state = 276, .external_lex_state = 54}, + [2631] = {.lex_state = 276, .external_lex_state = 54}, + [2632] = {.lex_state = 307, .external_lex_state = 59}, + [2633] = {.lex_state = 301, .external_lex_state = 59}, + [2634] = {.lex_state = 301, .external_lex_state = 59}, + [2635] = {.lex_state = 302, .external_lex_state = 31}, + [2636] = {.lex_state = 271, .external_lex_state = 42}, + [2637] = {.lex_state = 302, .external_lex_state = 31}, + [2638] = {.lex_state = 301, .external_lex_state = 59}, + [2639] = {.lex_state = 301, .external_lex_state = 59}, + [2640] = {.lex_state = 301, .external_lex_state = 59}, + [2641] = {.lex_state = 273, .external_lex_state = 48}, + [2642] = {.lex_state = 309, .external_lex_state = 59}, + [2643] = {.lex_state = 301, .external_lex_state = 59}, + [2644] = {.lex_state = 301, .external_lex_state = 59}, + [2645] = {.lex_state = 309, .external_lex_state = 59}, + [2646] = {.lex_state = 309, .external_lex_state = 59}, + [2647] = {.lex_state = 276, .external_lex_state = 45}, + [2648] = {.lex_state = 271, .external_lex_state = 42}, + [2649] = {.lex_state = 309, .external_lex_state = 59}, + [2650] = {.lex_state = 309, .external_lex_state = 59}, + [2651] = {.lex_state = 301, .external_lex_state = 59}, + [2652] = {.lex_state = 309, .external_lex_state = 59}, + [2653] = {.lex_state = 301, .external_lex_state = 59}, + [2654] = {.lex_state = 276, .external_lex_state = 54}, + [2655] = {.lex_state = 301, .external_lex_state = 59}, + [2656] = {.lex_state = 273, .external_lex_state = 61}, + [2657] = {.lex_state = 273, .external_lex_state = 61}, + [2658] = {.lex_state = 273, .external_lex_state = 61}, + [2659] = {.lex_state = 271, .external_lex_state = 42}, + [2660] = {.lex_state = 273, .external_lex_state = 61}, + [2661] = {.lex_state = 276, .external_lex_state = 45}, + [2662] = {.lex_state = 273, .external_lex_state = 61}, + [2663] = {.lex_state = 309, .external_lex_state = 59}, + [2664] = {.lex_state = 276, .external_lex_state = 45}, + [2665] = {.lex_state = 276, .external_lex_state = 45}, + [2666] = {.lex_state = 309, .external_lex_state = 59}, + [2667] = {.lex_state = 309, .external_lex_state = 59}, + [2668] = {.lex_state = 273, .external_lex_state = 61}, + [2669] = {.lex_state = 273, .external_lex_state = 61}, + [2670] = {.lex_state = 273, .external_lex_state = 61}, + [2671] = {.lex_state = 298, .external_lex_state = 29}, + [2672] = {.lex_state = 301, .external_lex_state = 59}, + [2673] = {.lex_state = 276, .external_lex_state = 45}, + [2674] = {.lex_state = 301, .external_lex_state = 59}, + [2675] = {.lex_state = 276, .external_lex_state = 54}, + [2676] = {.lex_state = 301, .external_lex_state = 59}, + [2677] = {.lex_state = 301, .external_lex_state = 59}, + [2678] = {.lex_state = 298, .external_lex_state = 29}, + [2679] = {.lex_state = 276, .external_lex_state = 45}, + [2680] = {.lex_state = 276, .external_lex_state = 45}, + [2681] = {.lex_state = 276, .external_lex_state = 54}, + [2682] = {.lex_state = 301, .external_lex_state = 59}, + [2683] = {.lex_state = 309, .external_lex_state = 59}, + [2684] = {.lex_state = 301, .external_lex_state = 59}, + [2685] = {.lex_state = 309, .external_lex_state = 59}, + [2686] = {.lex_state = 301, .external_lex_state = 59}, + [2687] = {.lex_state = 301, .external_lex_state = 59}, + [2688] = {.lex_state = 308, .external_lex_state = 29}, + [2689] = {.lex_state = 298, .external_lex_state = 29}, + [2690] = {.lex_state = 277, .external_lex_state = 42}, + [2691] = {.lex_state = 302, .external_lex_state = 31}, + [2692] = {.lex_state = 308, .external_lex_state = 29}, + [2693] = {.lex_state = 302, .external_lex_state = 31}, + [2694] = {.lex_state = 271, .external_lex_state = 62}, + [2695] = {.lex_state = 277, .external_lex_state = 42}, + [2696] = {.lex_state = 271, .external_lex_state = 62}, + [2697] = {.lex_state = 276, .external_lex_state = 45}, + [2698] = {.lex_state = 276, .external_lex_state = 45}, + [2699] = {.lex_state = 278, .external_lex_state = 42}, + [2700] = {.lex_state = 309, .external_lex_state = 59}, + [2701] = {.lex_state = 309, .external_lex_state = 59}, + [2702] = {.lex_state = 271, .external_lex_state = 62}, + [2703] = {.lex_state = 298, .external_lex_state = 29}, + [2704] = {.lex_state = 271, .external_lex_state = 62}, + [2705] = {.lex_state = 150, .external_lex_state = 63}, + [2706] = {.lex_state = 150, .external_lex_state = 63}, + [2707] = {.lex_state = 309, .external_lex_state = 59}, + [2708] = {.lex_state = 276, .external_lex_state = 54}, + [2709] = {.lex_state = 276, .external_lex_state = 54}, + [2710] = {.lex_state = 276, .external_lex_state = 54}, + [2711] = {.lex_state = 309, .external_lex_state = 59}, + [2712] = {.lex_state = 309, .external_lex_state = 59}, + [2713] = {.lex_state = 281, .external_lex_state = 42}, + [2714] = {.lex_state = 308, .external_lex_state = 29}, + [2715] = {.lex_state = 302, .external_lex_state = 33}, + [2716] = {.lex_state = 276, .external_lex_state = 45}, + [2717] = {.lex_state = 278, .external_lex_state = 42}, + [2718] = {.lex_state = 298, .external_lex_state = 29}, + [2719] = {.lex_state = 276, .external_lex_state = 54}, + [2720] = {.lex_state = 278, .external_lex_state = 54}, + [2721] = {.lex_state = 276, .external_lex_state = 45}, + [2722] = {.lex_state = 276, .external_lex_state = 54}, + [2723] = {.lex_state = 278, .external_lex_state = 54}, + [2724] = {.lex_state = 271, .external_lex_state = 42}, + [2725] = {.lex_state = 302, .external_lex_state = 31}, + [2726] = {.lex_state = 298, .external_lex_state = 29}, + [2727] = {.lex_state = 273, .external_lex_state = 48}, + [2728] = {.lex_state = 276, .external_lex_state = 54}, + [2729] = {.lex_state = 276, .external_lex_state = 45}, + [2730] = {.lex_state = 276, .external_lex_state = 45}, + [2731] = {.lex_state = 276, .external_lex_state = 45}, + [2732] = {.lex_state = 276, .external_lex_state = 54}, + [2733] = {.lex_state = 276, .external_lex_state = 54}, + [2734] = {.lex_state = 276, .external_lex_state = 54}, + [2735] = {.lex_state = 276, .external_lex_state = 45}, + [2736] = {.lex_state = 276, .external_lex_state = 45}, + [2737] = {.lex_state = 273, .external_lex_state = 58}, + [2738] = {.lex_state = 273, .external_lex_state = 45}, + [2739] = {.lex_state = 271, .external_lex_state = 60}, + [2740] = {.lex_state = 271, .external_lex_state = 60}, + [2741] = {.lex_state = 271, .external_lex_state = 60}, + [2742] = {.lex_state = 271, .external_lex_state = 60}, + [2743] = {.lex_state = 271, .external_lex_state = 60}, + [2744] = {.lex_state = 271, .external_lex_state = 60}, + [2745] = {.lex_state = 271, .external_lex_state = 60}, + [2746] = {.lex_state = 271, .external_lex_state = 60}, + [2747] = {.lex_state = 271, .external_lex_state = 60}, + [2748] = {.lex_state = 271, .external_lex_state = 60}, + [2749] = {.lex_state = 271, .external_lex_state = 60}, + [2750] = {.lex_state = 271, .external_lex_state = 60}, + [2751] = {.lex_state = 271, .external_lex_state = 60}, + [2752] = {.lex_state = 271, .external_lex_state = 60}, + [2753] = {.lex_state = 271, .external_lex_state = 60}, + [2754] = {.lex_state = 271, .external_lex_state = 60}, + [2755] = {.lex_state = 271, .external_lex_state = 60}, + [2756] = {.lex_state = 271, .external_lex_state = 60}, + [2757] = {.lex_state = 271, .external_lex_state = 60}, + [2758] = {.lex_state = 271, .external_lex_state = 60}, + [2759] = {.lex_state = 271, .external_lex_state = 60}, + [2760] = {.lex_state = 271, .external_lex_state = 60}, + [2761] = {.lex_state = 271, .external_lex_state = 60}, + [2762] = {.lex_state = 271, .external_lex_state = 60}, + [2763] = {.lex_state = 271, .external_lex_state = 60}, + [2764] = {.lex_state = 271, .external_lex_state = 60}, + [2765] = {.lex_state = 271, .external_lex_state = 60}, + [2766] = {.lex_state = 271, .external_lex_state = 60}, + [2767] = {.lex_state = 271, .external_lex_state = 60}, + [2768] = {.lex_state = 271, .external_lex_state = 60}, + [2769] = {.lex_state = 271, .external_lex_state = 60}, + [2770] = {.lex_state = 271, .external_lex_state = 60}, + [2771] = {.lex_state = 271, .external_lex_state = 60}, + [2772] = {.lex_state = 271, .external_lex_state = 60}, + [2773] = {.lex_state = 271, .external_lex_state = 60}, + [2774] = {.lex_state = 271, .external_lex_state = 60}, + [2775] = {.lex_state = 271, .external_lex_state = 60}, + [2776] = {.lex_state = 305, .external_lex_state = 33}, + [2777] = {.lex_state = 271, .external_lex_state = 60}, + [2778] = {.lex_state = 271, .external_lex_state = 60}, + [2779] = {.lex_state = 271, .external_lex_state = 60}, + [2780] = {.lex_state = 298, .external_lex_state = 29}, + [2781] = {.lex_state = 271, .external_lex_state = 60}, + [2782] = {.lex_state = 271, .external_lex_state = 60}, + [2783] = {.lex_state = 271, .external_lex_state = 60}, + [2784] = {.lex_state = 271, .external_lex_state = 60}, + [2785] = {.lex_state = 271, .external_lex_state = 60}, + [2786] = {.lex_state = 271, .external_lex_state = 60}, + [2787] = {.lex_state = 271, .external_lex_state = 60}, + [2788] = {.lex_state = 271, .external_lex_state = 60}, + [2789] = {.lex_state = 271, .external_lex_state = 60}, + [2790] = {.lex_state = 271, .external_lex_state = 60}, + [2791] = {.lex_state = 271, .external_lex_state = 60}, + [2792] = {.lex_state = 271, .external_lex_state = 60}, + [2793] = {.lex_state = 271, .external_lex_state = 60}, + [2794] = {.lex_state = 271, .external_lex_state = 60}, + [2795] = {.lex_state = 271, .external_lex_state = 60}, + [2796] = {.lex_state = 273, .external_lex_state = 48}, + [2797] = {.lex_state = 271, .external_lex_state = 60}, + [2798] = {.lex_state = 298, .external_lex_state = 29}, + [2799] = {.lex_state = 271, .external_lex_state = 60}, + [2800] = {.lex_state = 271, .external_lex_state = 60}, + [2801] = {.lex_state = 271, .external_lex_state = 60}, + [2802] = {.lex_state = 273, .external_lex_state = 45}, + [2803] = {.lex_state = 271, .external_lex_state = 60}, + [2804] = {.lex_state = 271, .external_lex_state = 60}, + [2805] = {.lex_state = 273, .external_lex_state = 45}, + [2806] = {.lex_state = 305, .external_lex_state = 33}, + [2807] = {.lex_state = 308, .external_lex_state = 29}, + [2808] = {.lex_state = 273, .external_lex_state = 45}, + [2809] = {.lex_state = 271, .external_lex_state = 60}, + [2810] = {.lex_state = 273, .external_lex_state = 45}, + [2811] = {.lex_state = 271, .external_lex_state = 60}, + [2812] = {.lex_state = 273, .external_lex_state = 45}, + [2813] = {.lex_state = 273, .external_lex_state = 45}, + [2814] = {.lex_state = 273, .external_lex_state = 45}, + [2815] = {.lex_state = 273, .external_lex_state = 45}, + [2816] = {.lex_state = 273, .external_lex_state = 45}, + [2817] = {.lex_state = 308, .external_lex_state = 29}, + [2818] = {.lex_state = 271, .external_lex_state = 60}, + [2819] = {.lex_state = 302, .external_lex_state = 33}, + [2820] = {.lex_state = 271, .external_lex_state = 60}, + [2821] = {.lex_state = 271, .external_lex_state = 60}, + [2822] = {.lex_state = 271, .external_lex_state = 60}, + [2823] = {.lex_state = 271, .external_lex_state = 60}, + [2824] = {.lex_state = 271, .external_lex_state = 60}, + [2825] = {.lex_state = 271, .external_lex_state = 60}, + [2826] = {.lex_state = 271, .external_lex_state = 60}, + [2827] = {.lex_state = 273, .external_lex_state = 45}, + [2828] = {.lex_state = 273, .external_lex_state = 45}, + [2829] = {.lex_state = 273, .external_lex_state = 45}, + [2830] = {.lex_state = 273, .external_lex_state = 45}, + [2831] = {.lex_state = 273, .external_lex_state = 45}, + [2832] = {.lex_state = 273, .external_lex_state = 45}, + [2833] = {.lex_state = 273, .external_lex_state = 45}, + [2834] = {.lex_state = 273, .external_lex_state = 45}, + [2835] = {.lex_state = 273, .external_lex_state = 45}, + [2836] = {.lex_state = 271, .external_lex_state = 60}, + [2837] = {.lex_state = 273, .external_lex_state = 45}, + [2838] = {.lex_state = 64, .external_lex_state = 64}, + [2839] = {.lex_state = 273, .external_lex_state = 45}, + [2840] = {.lex_state = 271, .external_lex_state = 60}, + [2841] = {.lex_state = 307, .external_lex_state = 59}, + [2842] = {.lex_state = 307, .external_lex_state = 59}, + [2843] = {.lex_state = 271, .external_lex_state = 60}, + [2844] = {.lex_state = 271, .external_lex_state = 60}, + [2845] = {.lex_state = 271, .external_lex_state = 60}, + [2846] = {.lex_state = 298, .external_lex_state = 29}, + [2847] = {.lex_state = 271, .external_lex_state = 60}, + [2848] = {.lex_state = 271, .external_lex_state = 60}, + [2849] = {.lex_state = 271, .external_lex_state = 60}, + [2850] = {.lex_state = 307, .external_lex_state = 59}, + [2851] = {.lex_state = 273, .external_lex_state = 45}, + [2852] = {.lex_state = 271, .external_lex_state = 60}, + [2853] = {.lex_state = 271, .external_lex_state = 60}, + [2854] = {.lex_state = 307, .external_lex_state = 59}, + [2855] = {.lex_state = 271, .external_lex_state = 60}, + [2856] = {.lex_state = 271, .external_lex_state = 60}, + [2857] = {.lex_state = 307, .external_lex_state = 59}, + [2858] = {.lex_state = 271, .external_lex_state = 60}, + [2859] = {.lex_state = 307, .external_lex_state = 59}, + [2860] = {.lex_state = 271, .external_lex_state = 60}, + [2861] = {.lex_state = 307, .external_lex_state = 59}, + [2862] = {.lex_state = 273, .external_lex_state = 58}, + [2863] = {.lex_state = 273, .external_lex_state = 45}, + [2864] = {.lex_state = 298, .external_lex_state = 29}, + [2865] = {.lex_state = 273, .external_lex_state = 65}, + [2866] = {.lex_state = 271, .external_lex_state = 60}, + [2867] = {.lex_state = 298, .external_lex_state = 34}, + [2868] = {.lex_state = 273, .external_lex_state = 45}, + [2869] = {.lex_state = 307, .external_lex_state = 59}, + [2870] = {.lex_state = 307, .external_lex_state = 59}, + [2871] = {.lex_state = 273, .external_lex_state = 65}, + [2872] = {.lex_state = 273, .external_lex_state = 65}, + [2873] = {.lex_state = 273, .external_lex_state = 65}, + [2874] = {.lex_state = 273, .external_lex_state = 45}, + [2875] = {.lex_state = 273, .external_lex_state = 65}, + [2876] = {.lex_state = 273, .external_lex_state = 65}, + [2877] = {.lex_state = 307, .external_lex_state = 59}, + [2878] = {.lex_state = 308, .external_lex_state = 29}, + [2879] = {.lex_state = 307, .external_lex_state = 59}, + [2880] = {.lex_state = 271, .external_lex_state = 60}, + [2881] = {.lex_state = 273, .external_lex_state = 65}, + [2882] = {.lex_state = 273, .external_lex_state = 65}, + [2883] = {.lex_state = 273, .external_lex_state = 65}, + [2884] = {.lex_state = 298, .external_lex_state = 29}, + [2885] = {.lex_state = 273, .external_lex_state = 58}, + [2886] = {.lex_state = 298, .external_lex_state = 29}, + [2887] = {.lex_state = 175, .external_lex_state = 66}, + [2888] = {.lex_state = 175, .external_lex_state = 66}, + [2889] = {.lex_state = 273, .external_lex_state = 45}, + [2890] = {.lex_state = 271, .external_lex_state = 60}, + [2891] = {.lex_state = 273, .external_lex_state = 58}, + [2892] = {.lex_state = 273, .external_lex_state = 58}, + [2893] = {.lex_state = 273, .external_lex_state = 58}, + [2894] = {.lex_state = 271, .external_lex_state = 60}, + [2895] = {.lex_state = 178, .external_lex_state = 63}, + [2896] = {.lex_state = 178, .external_lex_state = 63}, + [2897] = {.lex_state = 273, .external_lex_state = 45}, + [2898] = {.lex_state = 271, .external_lex_state = 60}, + [2899] = {.lex_state = 271, .external_lex_state = 60}, + [2900] = {.lex_state = 273, .external_lex_state = 45}, + [2901] = {.lex_state = 307, .external_lex_state = 59}, + [2902] = {.lex_state = 178, .external_lex_state = 63}, + [2903] = {.lex_state = 178, .external_lex_state = 63}, + [2904] = {.lex_state = 307, .external_lex_state = 59}, + [2905] = {.lex_state = 298, .external_lex_state = 29}, + [2906] = {.lex_state = 307, .external_lex_state = 59}, + [2907] = {.lex_state = 307, .external_lex_state = 59}, + [2908] = {.lex_state = 273, .external_lex_state = 58}, + [2909] = {.lex_state = 273, .external_lex_state = 58}, + [2910] = {.lex_state = 273, .external_lex_state = 58}, + [2911] = {.lex_state = 307, .external_lex_state = 59}, + [2912] = {.lex_state = 308, .external_lex_state = 34}, + [2913] = {.lex_state = 298, .external_lex_state = 29}, + [2914] = {.lex_state = 298, .external_lex_state = 34}, + [2915] = {.lex_state = 271, .external_lex_state = 60}, + [2916] = {.lex_state = 271, .external_lex_state = 60}, + [2917] = {.lex_state = 271, .external_lex_state = 60}, + [2918] = {.lex_state = 307, .external_lex_state = 59}, + [2919] = {.lex_state = 307, .external_lex_state = 59}, + [2920] = {.lex_state = 307, .external_lex_state = 59}, + [2921] = {.lex_state = 271, .external_lex_state = 60}, + [2922] = {.lex_state = 271, .external_lex_state = 60}, + [2923] = {.lex_state = 271, .external_lex_state = 60}, + [2924] = {.lex_state = 273, .external_lex_state = 45}, + [2925] = {.lex_state = 273, .external_lex_state = 45}, + [2926] = {.lex_state = 271, .external_lex_state = 60}, + [2927] = {.lex_state = 277, .external_lex_state = 42}, + [2928] = {.lex_state = 278, .external_lex_state = 42}, + [2929] = {.lex_state = 271, .external_lex_state = 60}, + [2930] = {.lex_state = 271, .external_lex_state = 60}, + [2931] = {.lex_state = 271, .external_lex_state = 60}, + [2932] = {.lex_state = 271, .external_lex_state = 60}, + [2933] = {.lex_state = 273, .external_lex_state = 45}, + [2934] = {.lex_state = 298, .external_lex_state = 29}, + [2935] = {.lex_state = 308, .external_lex_state = 29}, + [2936] = {.lex_state = 271, .external_lex_state = 60}, + [2937] = {.lex_state = 271, .external_lex_state = 60}, + [2938] = {.lex_state = 271, .external_lex_state = 60}, + [2939] = {.lex_state = 308, .external_lex_state = 34}, + [2940] = {.lex_state = 298, .external_lex_state = 29}, + [2941] = {.lex_state = 298, .external_lex_state = 29}, + [2942] = {.lex_state = 271, .external_lex_state = 42}, + [2943] = {.lex_state = 271, .external_lex_state = 42}, + [2944] = {.lex_state = 311, .external_lex_state = 67}, + [2945] = {.lex_state = 275, .external_lex_state = 60}, + [2946] = {.lex_state = 64, .external_lex_state = 64}, + [2947] = {.lex_state = 64, .external_lex_state = 64}, + [2948] = {.lex_state = 64, .external_lex_state = 64}, + [2949] = {.lex_state = 279, .external_lex_state = 60}, + [2950] = {.lex_state = 273, .external_lex_state = 48}, + [2951] = {.lex_state = 273, .external_lex_state = 48}, + [2952] = {.lex_state = 64, .external_lex_state = 64}, + [2953] = {.lex_state = 273, .external_lex_state = 48}, + [2954] = {.lex_state = 273, .external_lex_state = 42}, + [2955] = {.lex_state = 271, .external_lex_state = 42}, + [2956] = {.lex_state = 64, .external_lex_state = 64}, + [2957] = {.lex_state = 273, .external_lex_state = 48}, + [2958] = {.lex_state = 273, .external_lex_state = 48}, + [2959] = {.lex_state = 273, .external_lex_state = 48}, + [2960] = {.lex_state = 273, .external_lex_state = 48}, + [2961] = {.lex_state = 273, .external_lex_state = 48}, + [2962] = {.lex_state = 273, .external_lex_state = 48}, + [2963] = {.lex_state = 273, .external_lex_state = 48}, + [2964] = {.lex_state = 273, .external_lex_state = 48}, + [2965] = {.lex_state = 64, .external_lex_state = 64}, + [2966] = {.lex_state = 273, .external_lex_state = 48}, + [2967] = {.lex_state = 271, .external_lex_state = 42}, + [2968] = {.lex_state = 271, .external_lex_state = 42}, + [2969] = {.lex_state = 271, .external_lex_state = 42}, + [2970] = {.lex_state = 271, .external_lex_state = 42}, + [2971] = {.lex_state = 271, .external_lex_state = 42}, + [2972] = {.lex_state = 271, .external_lex_state = 42}, + [2973] = {.lex_state = 271, .external_lex_state = 42}, + [2974] = {.lex_state = 271, .external_lex_state = 42}, + [2975] = {.lex_state = 271, .external_lex_state = 42}, + [2976] = {.lex_state = 271, .external_lex_state = 42}, + [2977] = {.lex_state = 271, .external_lex_state = 42}, + [2978] = {.lex_state = 271, .external_lex_state = 42}, + [2979] = {.lex_state = 271, .external_lex_state = 42}, + [2980] = {.lex_state = 308, .external_lex_state = 34}, + [2981] = {.lex_state = 273, .external_lex_state = 48}, + [2982] = {.lex_state = 311, .external_lex_state = 67}, + [2983] = {.lex_state = 273, .external_lex_state = 68}, + [2984] = {.lex_state = 273, .external_lex_state = 68}, + [2985] = {.lex_state = 273, .external_lex_state = 48}, + [2986] = {.lex_state = 273, .external_lex_state = 48}, + [2987] = {.lex_state = 271, .external_lex_state = 42}, + [2988] = {.lex_state = 273, .external_lex_state = 48}, + [2989] = {.lex_state = 273, .external_lex_state = 48}, + [2990] = {.lex_state = 273, .external_lex_state = 48}, + [2991] = {.lex_state = 64, .external_lex_state = 64}, + [2992] = {.lex_state = 64, .external_lex_state = 64}, + [2993] = {.lex_state = 64, .external_lex_state = 64}, + [2994] = {.lex_state = 271, .external_lex_state = 42}, + [2995] = {.lex_state = 271, .external_lex_state = 42}, + [2996] = {.lex_state = 271, .external_lex_state = 42}, + [2997] = {.lex_state = 64, .external_lex_state = 64}, + [2998] = {.lex_state = 273, .external_lex_state = 48}, + [2999] = {.lex_state = 64, .external_lex_state = 64}, + [3000] = {.lex_state = 271, .external_lex_state = 42}, + [3001] = {.lex_state = 271, .external_lex_state = 42}, + [3002] = {.lex_state = 271, .external_lex_state = 42}, + [3003] = {.lex_state = 271, .external_lex_state = 42}, + [3004] = {.lex_state = 271, .external_lex_state = 42}, + [3005] = {.lex_state = 64, .external_lex_state = 64}, + [3006] = {.lex_state = 273, .external_lex_state = 48}, + [3007] = {.lex_state = 271, .external_lex_state = 42}, + [3008] = {.lex_state = 271, .external_lex_state = 42}, + [3009] = {.lex_state = 273, .external_lex_state = 48}, + [3010] = {.lex_state = 271, .external_lex_state = 42}, + [3011] = {.lex_state = 273, .external_lex_state = 48}, + [3012] = {.lex_state = 273, .external_lex_state = 48}, + [3013] = {.lex_state = 271, .external_lex_state = 42}, + [3014] = {.lex_state = 271, .external_lex_state = 42}, + [3015] = {.lex_state = 181, .external_lex_state = 66}, + [3016] = {.lex_state = 181, .external_lex_state = 66}, + [3017] = {.lex_state = 271, .external_lex_state = 60}, + [3018] = {.lex_state = 181, .external_lex_state = 66}, + [3019] = {.lex_state = 64, .external_lex_state = 64}, + [3020] = {.lex_state = 64, .external_lex_state = 64}, + [3021] = {.lex_state = 64, .external_lex_state = 64}, + [3022] = {.lex_state = 271, .external_lex_state = 42}, + [3023] = {.lex_state = 271, .external_lex_state = 42}, + [3024] = {.lex_state = 64, .external_lex_state = 64}, + [3025] = {.lex_state = 64, .external_lex_state = 64}, + [3026] = {.lex_state = 64, .external_lex_state = 64}, + [3027] = {.lex_state = 181, .external_lex_state = 66}, + [3028] = {.lex_state = 273, .external_lex_state = 68}, + [3029] = {.lex_state = 273, .external_lex_state = 68}, + [3030] = {.lex_state = 271, .external_lex_state = 42}, + [3031] = {.lex_state = 274, .external_lex_state = 60}, + [3032] = {.lex_state = 311, .external_lex_state = 67}, + [3033] = {.lex_state = 271, .external_lex_state = 42}, + [3034] = {.lex_state = 271, .external_lex_state = 42}, + [3035] = {.lex_state = 275, .external_lex_state = 69}, + [3036] = {.lex_state = 64, .external_lex_state = 64}, + [3037] = {.lex_state = 271, .external_lex_state = 42}, + [3038] = {.lex_state = 311, .external_lex_state = 67}, + [3039] = {.lex_state = 271, .external_lex_state = 42}, + [3040] = {.lex_state = 271, .external_lex_state = 42}, + [3041] = {.lex_state = 271, .external_lex_state = 42}, + [3042] = {.lex_state = 273, .external_lex_state = 42}, + [3043] = {.lex_state = 271, .external_lex_state = 42}, + [3044] = {.lex_state = 184, .external_lex_state = 66}, + [3045] = {.lex_state = 64, .external_lex_state = 64}, + [3046] = {.lex_state = 271, .external_lex_state = 42}, + [3047] = {.lex_state = 184, .external_lex_state = 66}, + [3048] = {.lex_state = 271, .external_lex_state = 42}, + [3049] = {.lex_state = 273, .external_lex_state = 48}, + [3050] = {.lex_state = 271, .external_lex_state = 42}, + [3051] = {.lex_state = 271, .external_lex_state = 42}, + [3052] = {.lex_state = 273, .external_lex_state = 48}, + [3053] = {.lex_state = 273, .external_lex_state = 42}, + [3054] = {.lex_state = 271, .external_lex_state = 42}, + [3055] = {.lex_state = 298, .external_lex_state = 34}, + [3056] = {.lex_state = 64, .external_lex_state = 64}, + [3057] = {.lex_state = 311, .external_lex_state = 67}, + [3058] = {.lex_state = 273, .external_lex_state = 42}, + [3059] = {.lex_state = 271, .external_lex_state = 42}, + [3060] = {.lex_state = 271, .external_lex_state = 42}, + [3061] = {.lex_state = 271, .external_lex_state = 42}, + [3062] = {.lex_state = 271, .external_lex_state = 42}, + [3063] = {.lex_state = 271, .external_lex_state = 42}, + [3064] = {.lex_state = 271, .external_lex_state = 42}, + [3065] = {.lex_state = 306, .external_lex_state = 34}, + [3066] = {.lex_state = 311, .external_lex_state = 67}, + [3067] = {.lex_state = 271, .external_lex_state = 42}, + [3068] = {.lex_state = 271, .external_lex_state = 42}, + [3069] = {.lex_state = 273, .external_lex_state = 62}, + [3070] = {.lex_state = 311, .external_lex_state = 67}, + [3071] = {.lex_state = 273, .external_lex_state = 48}, + [3072] = {.lex_state = 273, .external_lex_state = 62}, + [3073] = {.lex_state = 271, .external_lex_state = 42}, + [3074] = {.lex_state = 64, .external_lex_state = 64}, + [3075] = {.lex_state = 64, .external_lex_state = 64}, + [3076] = {.lex_state = 64, .external_lex_state = 64}, + [3077] = {.lex_state = 273, .external_lex_state = 42}, + [3078] = {.lex_state = 273, .external_lex_state = 42}, + [3079] = {.lex_state = 273, .external_lex_state = 42}, + [3080] = {.lex_state = 273, .external_lex_state = 42}, + [3081] = {.lex_state = 273, .external_lex_state = 42}, + [3082] = {.lex_state = 273, .external_lex_state = 42}, + [3083] = {.lex_state = 273, .external_lex_state = 42}, + [3084] = {.lex_state = 273, .external_lex_state = 42}, + [3085] = {.lex_state = 273, .external_lex_state = 48}, + [3086] = {.lex_state = 273, .external_lex_state = 42}, + [3087] = {.lex_state = 271, .external_lex_state = 42}, + [3088] = {.lex_state = 273, .external_lex_state = 42}, + [3089] = {.lex_state = 271, .external_lex_state = 42}, + [3090] = {.lex_state = 273, .external_lex_state = 42}, + [3091] = {.lex_state = 273, .external_lex_state = 42}, + [3092] = {.lex_state = 236, .external_lex_state = 70}, + [3093] = {.lex_state = 236, .external_lex_state = 70}, + [3094] = {.lex_state = 273, .external_lex_state = 42}, + [3095] = {.lex_state = 273, .external_lex_state = 42}, + [3096] = {.lex_state = 271, .external_lex_state = 42}, + [3097] = {.lex_state = 273, .external_lex_state = 42}, + [3098] = {.lex_state = 273, .external_lex_state = 42}, + [3099] = {.lex_state = 273, .external_lex_state = 62}, + [3100] = {.lex_state = 273, .external_lex_state = 42}, + [3101] = {.lex_state = 271, .external_lex_state = 42}, + [3102] = {.lex_state = 271, .external_lex_state = 42}, + [3103] = {.lex_state = 273, .external_lex_state = 62}, + [3104] = {.lex_state = 271, .external_lex_state = 42}, + [3105] = {.lex_state = 311, .external_lex_state = 67}, + [3106] = {.lex_state = 311, .external_lex_state = 67}, + [3107] = {.lex_state = 273, .external_lex_state = 42}, + [3108] = {.lex_state = 271, .external_lex_state = 42}, + [3109] = {.lex_state = 311, .external_lex_state = 67}, + [3110] = {.lex_state = 236, .external_lex_state = 70}, + [3111] = {.lex_state = 273, .external_lex_state = 42}, + [3112] = {.lex_state = 271, .external_lex_state = 42}, + [3113] = {.lex_state = 64, .external_lex_state = 64}, + [3114] = {.lex_state = 306, .external_lex_state = 34}, + [3115] = {.lex_state = 236, .external_lex_state = 70}, + [3116] = {.lex_state = 64, .external_lex_state = 64}, + [3117] = {.lex_state = 236, .external_lex_state = 70}, + [3118] = {.lex_state = 64, .external_lex_state = 64}, + [3119] = {.lex_state = 64, .external_lex_state = 64}, + [3120] = {.lex_state = 236, .external_lex_state = 70}, + [3121] = {.lex_state = 273, .external_lex_state = 42}, + [3122] = {.lex_state = 311, .external_lex_state = 67}, + [3123] = {.lex_state = 271, .external_lex_state = 42}, + [3124] = {.lex_state = 273, .external_lex_state = 48}, + [3125] = {.lex_state = 271, .external_lex_state = 42}, + [3126] = {.lex_state = 273, .external_lex_state = 42}, + [3127] = {.lex_state = 296, .external_lex_state = 36}, + [3128] = {.lex_state = 271, .external_lex_state = 42}, + [3129] = {.lex_state = 271, .external_lex_state = 42}, + [3130] = {.lex_state = 273, .external_lex_state = 42}, + [3131] = {.lex_state = 273, .external_lex_state = 48}, + [3132] = {.lex_state = 187, .external_lex_state = 66}, + [3133] = {.lex_state = 311, .external_lex_state = 67}, + [3134] = {.lex_state = 187, .external_lex_state = 66}, + [3135] = {.lex_state = 311, .external_lex_state = 67}, + [3136] = {.lex_state = 311, .external_lex_state = 67}, + [3137] = {.lex_state = 311, .external_lex_state = 67}, + [3138] = {.lex_state = 273, .external_lex_state = 42}, + [3139] = {.lex_state = 271, .external_lex_state = 42}, + [3140] = {.lex_state = 273, .external_lex_state = 48}, + [3141] = {.lex_state = 271, .external_lex_state = 42}, + [3142] = {.lex_state = 273, .external_lex_state = 42}, + [3143] = {.lex_state = 271, .external_lex_state = 42}, + [3144] = {.lex_state = 271, .external_lex_state = 42}, + [3145] = {.lex_state = 273, .external_lex_state = 48}, + [3146] = {.lex_state = 273, .external_lex_state = 42}, + [3147] = {.lex_state = 271, .external_lex_state = 42}, + [3148] = {.lex_state = 271, .external_lex_state = 42}, + [3149] = {.lex_state = 305, .external_lex_state = 33}, + [3150] = {.lex_state = 271, .external_lex_state = 42}, + [3151] = {.lex_state = 273, .external_lex_state = 42}, + [3152] = {.lex_state = 273, .external_lex_state = 48}, + [3153] = {.lex_state = 271, .external_lex_state = 42}, + [3154] = {.lex_state = 271, .external_lex_state = 42}, + [3155] = {.lex_state = 273, .external_lex_state = 48}, + [3156] = {.lex_state = 271, .external_lex_state = 42}, + [3157] = {.lex_state = 64, .external_lex_state = 64}, + [3158] = {.lex_state = 271, .external_lex_state = 42}, + [3159] = {.lex_state = 64, .external_lex_state = 64}, + [3160] = {.lex_state = 64, .external_lex_state = 64}, + [3161] = {.lex_state = 64, .external_lex_state = 64}, + [3162] = {.lex_state = 529, .external_lex_state = 66}, + [3163] = {.lex_state = 529, .external_lex_state = 66}, + [3164] = {.lex_state = 311, .external_lex_state = 67}, + [3165] = {.lex_state = 273, .external_lex_state = 69}, + [3166] = {.lex_state = 273, .external_lex_state = 69}, + [3167] = {.lex_state = 279, .external_lex_state = 60}, + [3168] = {.lex_state = 273, .external_lex_state = 60}, + [3169] = {.lex_state = 273, .external_lex_state = 60}, + [3170] = {.lex_state = 279, .external_lex_state = 60}, + [3171] = {.lex_state = 279, .external_lex_state = 60}, + [3172] = {.lex_state = 279, .external_lex_state = 60}, + [3173] = {.lex_state = 279, .external_lex_state = 60}, + [3174] = {.lex_state = 279, .external_lex_state = 60}, + [3175] = {.lex_state = 236, .external_lex_state = 70}, + [3176] = {.lex_state = 279, .external_lex_state = 60}, + [3177] = {.lex_state = 236, .external_lex_state = 70}, + [3178] = {.lex_state = 273, .external_lex_state = 60}, + [3179] = {.lex_state = 273, .external_lex_state = 60}, + [3180] = {.lex_state = 273, .external_lex_state = 60}, + [3181] = {.lex_state = 236, .external_lex_state = 70}, + [3182] = {.lex_state = 273, .external_lex_state = 69}, + [3183] = {.lex_state = 271, .external_lex_state = 42}, + [3184] = {.lex_state = 236, .external_lex_state = 70}, + [3185] = {.lex_state = 273, .external_lex_state = 69}, + [3186] = {.lex_state = 193, .external_lex_state = 66}, + [3187] = {.lex_state = 193, .external_lex_state = 66}, + [3188] = {.lex_state = 273, .external_lex_state = 60}, + [3189] = {.lex_state = 279, .external_lex_state = 60}, + [3190] = {.lex_state = 273, .external_lex_state = 69}, + [3191] = {.lex_state = 273, .external_lex_state = 69}, + [3192] = {.lex_state = 273, .external_lex_state = 69}, + [3193] = {.lex_state = 271, .external_lex_state = 42}, + [3194] = {.lex_state = 273, .external_lex_state = 69}, + [3195] = {.lex_state = 271, .external_lex_state = 60}, + [3196] = {.lex_state = 279, .external_lex_state = 60}, + [3197] = {.lex_state = 271, .external_lex_state = 42}, + [3198] = {.lex_state = 279, .external_lex_state = 60}, + [3199] = {.lex_state = 279, .external_lex_state = 60}, + [3200] = {.lex_state = 279, .external_lex_state = 60}, + [3201] = {.lex_state = 279, .external_lex_state = 60}, + [3202] = {.lex_state = 279, .external_lex_state = 60}, + [3203] = {.lex_state = 273, .external_lex_state = 69}, + [3204] = {.lex_state = 273, .external_lex_state = 69}, + [3205] = {.lex_state = 279, .external_lex_state = 60}, + [3206] = {.lex_state = 306, .external_lex_state = 34}, + [3207] = {.lex_state = 279, .external_lex_state = 60}, + [3208] = {.lex_state = 273, .external_lex_state = 60}, + [3209] = {.lex_state = 273, .external_lex_state = 69}, + [3210] = {.lex_state = 279, .external_lex_state = 60}, + [3211] = {.lex_state = 273, .external_lex_state = 69}, + [3212] = {.lex_state = 273, .external_lex_state = 69}, + [3213] = {.lex_state = 279, .external_lex_state = 60}, + [3214] = {.lex_state = 279, .external_lex_state = 60}, + [3215] = {.lex_state = 273, .external_lex_state = 69}, + [3216] = {.lex_state = 279, .external_lex_state = 60}, + [3217] = {.lex_state = 279, .external_lex_state = 60}, + [3218] = {.lex_state = 279, .external_lex_state = 60}, + [3219] = {.lex_state = 273, .external_lex_state = 60}, + [3220] = {.lex_state = 236, .external_lex_state = 70}, + [3221] = {.lex_state = 236, .external_lex_state = 70}, + [3222] = {.lex_state = 273, .external_lex_state = 69}, + [3223] = {.lex_state = 273, .external_lex_state = 69}, + [3224] = {.lex_state = 273, .external_lex_state = 69}, + [3225] = {.lex_state = 236, .external_lex_state = 70}, + [3226] = {.lex_state = 236, .external_lex_state = 70}, + [3227] = {.lex_state = 532, .external_lex_state = 66}, + [3228] = {.lex_state = 279, .external_lex_state = 60}, + [3229] = {.lex_state = 236, .external_lex_state = 70}, + [3230] = {.lex_state = 532, .external_lex_state = 66}, + [3231] = {.lex_state = 273, .external_lex_state = 69}, + [3232] = {.lex_state = 273, .external_lex_state = 69}, + [3233] = {.lex_state = 298, .external_lex_state = 47}, + [3234] = {.lex_state = 273, .external_lex_state = 69}, + [3235] = {.lex_state = 273, .external_lex_state = 69}, + [3236] = {.lex_state = 298, .external_lex_state = 47}, + [3237] = {.lex_state = 199, .external_lex_state = 66}, + [3238] = {.lex_state = 199, .external_lex_state = 66}, + [3239] = {.lex_state = 273, .external_lex_state = 69}, + [3240] = {.lex_state = 532, .external_lex_state = 66}, + [3241] = {.lex_state = 273, .external_lex_state = 69}, + [3242] = {.lex_state = 273, .external_lex_state = 60}, + [3243] = {.lex_state = 532, .external_lex_state = 66}, + [3244] = {.lex_state = 273, .external_lex_state = 69}, + [3245] = {.lex_state = 279, .external_lex_state = 60}, + [3246] = {.lex_state = 273, .external_lex_state = 60}, + [3247] = {.lex_state = 273, .external_lex_state = 60}, + [3248] = {.lex_state = 273, .external_lex_state = 60}, + [3249] = {.lex_state = 273, .external_lex_state = 60}, + [3250] = {.lex_state = 236, .external_lex_state = 70}, + [3251] = {.lex_state = 273, .external_lex_state = 69}, + [3252] = {.lex_state = 273, .external_lex_state = 69}, + [3253] = {.lex_state = 236, .external_lex_state = 70}, + [3254] = {.lex_state = 279, .external_lex_state = 60}, + [3255] = {.lex_state = 273, .external_lex_state = 60}, + [3256] = {.lex_state = 236, .external_lex_state = 70}, + [3257] = {.lex_state = 273, .external_lex_state = 69}, + [3258] = {.lex_state = 273, .external_lex_state = 60}, + [3259] = {.lex_state = 273, .external_lex_state = 60}, + [3260] = {.lex_state = 273, .external_lex_state = 69}, + [3261] = {.lex_state = 273, .external_lex_state = 60}, + [3262] = {.lex_state = 273, .external_lex_state = 60}, + [3263] = {.lex_state = 273, .external_lex_state = 60}, + [3264] = {.lex_state = 273, .external_lex_state = 60}, + [3265] = {.lex_state = 273, .external_lex_state = 60}, + [3266] = {.lex_state = 273, .external_lex_state = 60}, + [3267] = {.lex_state = 273, .external_lex_state = 69}, + [3268] = {.lex_state = 273, .external_lex_state = 69}, + [3269] = {.lex_state = 193, .external_lex_state = 66}, + [3270] = {.lex_state = 193, .external_lex_state = 66}, + [3271] = {.lex_state = 273, .external_lex_state = 60}, + [3272] = {.lex_state = 279, .external_lex_state = 60}, + [3273] = {.lex_state = 273, .external_lex_state = 69}, + [3274] = {.lex_state = 273, .external_lex_state = 69}, + [3275] = {.lex_state = 274, .external_lex_state = 60}, + [3276] = {.lex_state = 279, .external_lex_state = 60}, + [3277] = {.lex_state = 273, .external_lex_state = 60}, + [3278] = {.lex_state = 273, .external_lex_state = 60}, + [3279] = {.lex_state = 273, .external_lex_state = 69}, + [3280] = {.lex_state = 274, .external_lex_state = 60}, + [3281] = {.lex_state = 273, .external_lex_state = 60}, + [3282] = {.lex_state = 274, .external_lex_state = 60}, + [3283] = {.lex_state = 273, .external_lex_state = 60}, + [3284] = {.lex_state = 273, .external_lex_state = 69}, + [3285] = {.lex_state = 279, .external_lex_state = 60}, + [3286] = {.lex_state = 279, .external_lex_state = 60}, + [3287] = {.lex_state = 273, .external_lex_state = 60}, + [3288] = {.lex_state = 273, .external_lex_state = 69}, + [3289] = {.lex_state = 273, .external_lex_state = 69}, + [3290] = {.lex_state = 279, .external_lex_state = 60}, + [3291] = {.lex_state = 274, .external_lex_state = 60}, + [3292] = {.lex_state = 279, .external_lex_state = 60}, + [3293] = {.lex_state = 273, .external_lex_state = 69}, + [3294] = {.lex_state = 273, .external_lex_state = 60}, + [3295] = {.lex_state = 273, .external_lex_state = 60}, + [3296] = {.lex_state = 273, .external_lex_state = 69}, + [3297] = {.lex_state = 279, .external_lex_state = 60}, + [3298] = {.lex_state = 529, .external_lex_state = 66}, + [3299] = {.lex_state = 273, .external_lex_state = 69}, + [3300] = {.lex_state = 274, .external_lex_state = 60}, + [3301] = {.lex_state = 273, .external_lex_state = 69}, + [3302] = {.lex_state = 273, .external_lex_state = 69}, + [3303] = {.lex_state = 273, .external_lex_state = 69}, + [3304] = {.lex_state = 273, .external_lex_state = 69}, + [3305] = {.lex_state = 271, .external_lex_state = 42}, + [3306] = {.lex_state = 274, .external_lex_state = 60}, + [3307] = {.lex_state = 274, .external_lex_state = 60}, + [3308] = {.lex_state = 273, .external_lex_state = 69}, + [3309] = {.lex_state = 273, .external_lex_state = 69}, + [3310] = {.lex_state = 298, .external_lex_state = 47}, + [3311] = {.lex_state = 236, .external_lex_state = 70}, + [3312] = {.lex_state = 274, .external_lex_state = 60}, + [3313] = {.lex_state = 529, .external_lex_state = 66}, + [3314] = {.lex_state = 271, .external_lex_state = 42}, + [3315] = {.lex_state = 273, .external_lex_state = 69}, + [3316] = {.lex_state = 273, .external_lex_state = 69}, + [3317] = {.lex_state = 273, .external_lex_state = 69}, + [3318] = {.lex_state = 271, .external_lex_state = 42}, + [3319] = {.lex_state = 271, .external_lex_state = 42}, + [3320] = {.lex_state = 273, .external_lex_state = 69}, + [3321] = {.lex_state = 273, .external_lex_state = 69}, + [3322] = {.lex_state = 274, .external_lex_state = 60}, + [3323] = {.lex_state = 271, .external_lex_state = 42}, + [3324] = {.lex_state = 273, .external_lex_state = 69}, + [3325] = {.lex_state = 273, .external_lex_state = 69}, + [3326] = {.lex_state = 273, .external_lex_state = 69}, + [3327] = {.lex_state = 271, .external_lex_state = 42}, + [3328] = {.lex_state = 273, .external_lex_state = 69}, + [3329] = {.lex_state = 273, .external_lex_state = 69}, + [3330] = {.lex_state = 271, .external_lex_state = 42}, + [3331] = {.lex_state = 236, .external_lex_state = 70}, + [3332] = {.lex_state = 271, .external_lex_state = 42}, + [3333] = {.lex_state = 271, .external_lex_state = 42}, + [3334] = {.lex_state = 273, .external_lex_state = 69}, + [3335] = {.lex_state = 271, .external_lex_state = 42}, + [3336] = {.lex_state = 273, .external_lex_state = 69}, + [3337] = {.lex_state = 273, .external_lex_state = 69}, + [3338] = {.lex_state = 273, .external_lex_state = 69}, + [3339] = {.lex_state = 273, .external_lex_state = 69}, + [3340] = {.lex_state = 273, .external_lex_state = 69}, + [3341] = {.lex_state = 273, .external_lex_state = 69}, + [3342] = {.lex_state = 273, .external_lex_state = 69}, + [3343] = {.lex_state = 273, .external_lex_state = 69}, + [3344] = {.lex_state = 273, .external_lex_state = 69}, + [3345] = {.lex_state = 271, .external_lex_state = 42}, + [3346] = {.lex_state = 273, .external_lex_state = 69}, + [3347] = {.lex_state = 271, .external_lex_state = 42}, + [3348] = {.lex_state = 273, .external_lex_state = 69}, + [3349] = {.lex_state = 273, .external_lex_state = 69}, + [3350] = {.lex_state = 271, .external_lex_state = 60}, + [3351] = {.lex_state = 271, .external_lex_state = 42}, + [3352] = {.lex_state = 274, .external_lex_state = 60}, + [3353] = {.lex_state = 274, .external_lex_state = 60}, + [3354] = {.lex_state = 274, .external_lex_state = 60}, + [3355] = {.lex_state = 273, .external_lex_state = 69}, + [3356] = {.lex_state = 271, .external_lex_state = 42}, + [3357] = {.lex_state = 273, .external_lex_state = 69}, + [3358] = {.lex_state = 271, .external_lex_state = 42}, + [3359] = {.lex_state = 273, .external_lex_state = 60}, + [3360] = {.lex_state = 236, .external_lex_state = 70}, + [3361] = {.lex_state = 273, .external_lex_state = 60}, + [3362] = {.lex_state = 273, .external_lex_state = 69}, + [3363] = {.lex_state = 273, .external_lex_state = 69}, + [3364] = {.lex_state = 273, .external_lex_state = 69}, + [3365] = {.lex_state = 273, .external_lex_state = 60}, + [3366] = {.lex_state = 273, .external_lex_state = 69}, + [3367] = {.lex_state = 273, .external_lex_state = 60}, + [3368] = {.lex_state = 273, .external_lex_state = 60}, + [3369] = {.lex_state = 273, .external_lex_state = 69}, + [3370] = {.lex_state = 273, .external_lex_state = 69}, + [3371] = {.lex_state = 273, .external_lex_state = 69}, + [3372] = {.lex_state = 273, .external_lex_state = 69}, + [3373] = {.lex_state = 273, .external_lex_state = 69}, + [3374] = {.lex_state = 273, .external_lex_state = 69}, + [3375] = {.lex_state = 273, .external_lex_state = 60}, + [3376] = {.lex_state = 236, .external_lex_state = 70}, + [3377] = {.lex_state = 298, .external_lex_state = 47}, + [3378] = {.lex_state = 298, .external_lex_state = 47}, + [3379] = {.lex_state = 273, .external_lex_state = 69}, + [3380] = {.lex_state = 274, .external_lex_state = 60}, + [3381] = {.lex_state = 274, .external_lex_state = 60}, + [3382] = {.lex_state = 298, .external_lex_state = 47}, + [3383] = {.lex_state = 298, .external_lex_state = 47}, + [3384] = {.lex_state = 274, .external_lex_state = 60}, + [3385] = {.lex_state = 298, .external_lex_state = 47}, + [3386] = {.lex_state = 298, .external_lex_state = 47}, + [3387] = {.lex_state = 274, .external_lex_state = 60}, + [3388] = {.lex_state = 298, .external_lex_state = 47}, + [3389] = {.lex_state = 298, .external_lex_state = 47}, + [3390] = {.lex_state = 274, .external_lex_state = 60}, + [3391] = {.lex_state = 273, .external_lex_state = 69}, + [3392] = {.lex_state = 274, .external_lex_state = 60}, + [3393] = {.lex_state = 236, .external_lex_state = 70}, + [3394] = {.lex_state = 274, .external_lex_state = 60}, + [3395] = {.lex_state = 274, .external_lex_state = 60}, + [3396] = {.lex_state = 273, .external_lex_state = 69}, + [3397] = {.lex_state = 271, .external_lex_state = 42}, + [3398] = {.lex_state = 273, .external_lex_state = 69}, + [3399] = {.lex_state = 274, .external_lex_state = 60}, + [3400] = {.lex_state = 273, .external_lex_state = 69}, + [3401] = {.lex_state = 271, .external_lex_state = 60}, + [3402] = {.lex_state = 274, .external_lex_state = 60}, + [3403] = {.lex_state = 274, .external_lex_state = 60}, + [3404] = {.lex_state = 274, .external_lex_state = 60}, + [3405] = {.lex_state = 274, .external_lex_state = 60}, + [3406] = {.lex_state = 274, .external_lex_state = 60}, + [3407] = {.lex_state = 298, .external_lex_state = 47}, + [3408] = {.lex_state = 273, .external_lex_state = 60}, + [3409] = {.lex_state = 273, .external_lex_state = 69}, + [3410] = {.lex_state = 273, .external_lex_state = 69}, + [3411] = {.lex_state = 298, .external_lex_state = 47}, + [3412] = {.lex_state = 273, .external_lex_state = 69}, + [3413] = {.lex_state = 273, .external_lex_state = 69}, + [3414] = {.lex_state = 199, .external_lex_state = 66}, + [3415] = {.lex_state = 236, .external_lex_state = 70}, + [3416] = {.lex_state = 298, .external_lex_state = 47}, + [3417] = {.lex_state = 199, .external_lex_state = 66}, + [3418] = {.lex_state = 236, .external_lex_state = 70}, + [3419] = {.lex_state = 298, .external_lex_state = 47}, + [3420] = {.lex_state = 298, .external_lex_state = 47}, + [3421] = {.lex_state = 273, .external_lex_state = 69}, + [3422] = {.lex_state = 298, .external_lex_state = 47}, + [3423] = {.lex_state = 298, .external_lex_state = 47}, + [3424] = {.lex_state = 298, .external_lex_state = 47}, + [3425] = {.lex_state = 273, .external_lex_state = 69}, + [3426] = {.lex_state = 273, .external_lex_state = 69}, + [3427] = {.lex_state = 273, .external_lex_state = 60}, + [3428] = {.lex_state = 273, .external_lex_state = 69}, + [3429] = {.lex_state = 273, .external_lex_state = 69}, + [3430] = {.lex_state = 273, .external_lex_state = 69}, + [3431] = {.lex_state = 273, .external_lex_state = 69}, + [3432] = {.lex_state = 273, .external_lex_state = 69}, + [3433] = {.lex_state = 273, .external_lex_state = 69}, + [3434] = {.lex_state = 273, .external_lex_state = 69}, + [3435] = {.lex_state = 273, .external_lex_state = 69}, + [3436] = {.lex_state = 273, .external_lex_state = 69}, + [3437] = {.lex_state = 298, .external_lex_state = 47}, + [3438] = {.lex_state = 298, .external_lex_state = 47}, + [3439] = {.lex_state = 273, .external_lex_state = 60}, + [3440] = {.lex_state = 298, .external_lex_state = 47}, + [3441] = {.lex_state = 274, .external_lex_state = 60}, + [3442] = {.lex_state = 274, .external_lex_state = 60}, + [3443] = {.lex_state = 274, .external_lex_state = 60}, + [3444] = {.lex_state = 274, .external_lex_state = 60}, + [3445] = {.lex_state = 273, .external_lex_state = 60}, + [3446] = {.lex_state = 273, .external_lex_state = 69}, + [3447] = {.lex_state = 273, .external_lex_state = 69}, + [3448] = {.lex_state = 273, .external_lex_state = 60}, + [3449] = {.lex_state = 273, .external_lex_state = 69}, + [3450] = {.lex_state = 273, .external_lex_state = 69}, + [3451] = {.lex_state = 298, .external_lex_state = 47}, + [3452] = {.lex_state = 298, .external_lex_state = 47}, + [3453] = {.lex_state = 273, .external_lex_state = 60}, + [3454] = {.lex_state = 274, .external_lex_state = 60}, + [3455] = {.lex_state = 274, .external_lex_state = 60}, + [3456] = {.lex_state = 297, .external_lex_state = 71}, + [3457] = {.lex_state = 228, .external_lex_state = 72}, + [3458] = {.lex_state = 237, .external_lex_state = 73}, + [3459] = {.lex_state = 297, .external_lex_state = 71}, + [3460] = {.lex_state = 237, .external_lex_state = 73}, + [3461] = {.lex_state = 297, .external_lex_state = 71}, + [3462] = {.lex_state = 310, .external_lex_state = 74}, + [3463] = {.lex_state = 532, .external_lex_state = 66}, + [3464] = {.lex_state = 532, .external_lex_state = 66}, + [3465] = {.lex_state = 297, .external_lex_state = 71}, + [3466] = {.lex_state = 297, .external_lex_state = 71}, + [3467] = {.lex_state = 297, .external_lex_state = 71}, + [3468] = {.lex_state = 297, .external_lex_state = 71}, + [3469] = {.lex_state = 213, .external_lex_state = 26}, + [3470] = {.lex_state = 310, .external_lex_state = 74}, + [3471] = {.lex_state = 297, .external_lex_state = 71}, + [3472] = {.lex_state = 297, .external_lex_state = 71}, + [3473] = {.lex_state = 213, .external_lex_state = 26}, + [3474] = {.lex_state = 228, .external_lex_state = 72}, + [3475] = {.lex_state = 237, .external_lex_state = 73}, + [3476] = {.lex_state = 297, .external_lex_state = 71}, + [3477] = {.lex_state = 298, .external_lex_state = 47}, + [3478] = {.lex_state = 237, .external_lex_state = 73}, + [3479] = {.lex_state = 297, .external_lex_state = 71}, + [3480] = {.lex_state = 297, .external_lex_state = 71}, + [3481] = {.lex_state = 297, .external_lex_state = 71}, + [3482] = {.lex_state = 532, .external_lex_state = 66}, + [3483] = {.lex_state = 297, .external_lex_state = 71}, + [3484] = {.lex_state = 237, .external_lex_state = 73}, + [3485] = {.lex_state = 532, .external_lex_state = 66}, + [3486] = {.lex_state = 310, .external_lex_state = 74}, + [3487] = {.lex_state = 316, .external_lex_state = 75}, + [3488] = {.lex_state = 297, .external_lex_state = 71}, + [3489] = {.lex_state = 316, .external_lex_state = 75}, + [3490] = {.lex_state = 297, .external_lex_state = 71}, + [3491] = {.lex_state = 319, .external_lex_state = 76}, + [3492] = {.lex_state = 297, .external_lex_state = 71}, + [3493] = {.lex_state = 316, .external_lex_state = 75}, + [3494] = {.lex_state = 297, .external_lex_state = 71}, + [3495] = {.lex_state = 316, .external_lex_state = 75}, + [3496] = {.lex_state = 316, .external_lex_state = 75}, + [3497] = {.lex_state = 316, .external_lex_state = 75}, + [3498] = {.lex_state = 297, .external_lex_state = 71}, + [3499] = {.lex_state = 316, .external_lex_state = 75}, + [3500] = {.lex_state = 316, .external_lex_state = 75}, + [3501] = {.lex_state = 297, .external_lex_state = 71}, + [3502] = {.lex_state = 316, .external_lex_state = 75}, + [3503] = {.lex_state = 316, .external_lex_state = 75}, + [3504] = {.lex_state = 297, .external_lex_state = 71}, + [3505] = {.lex_state = 297, .external_lex_state = 71}, + [3506] = {.lex_state = 297, .external_lex_state = 71}, + [3507] = {.lex_state = 316, .external_lex_state = 75}, + [3508] = {.lex_state = 297, .external_lex_state = 71}, + [3509] = {.lex_state = 316, .external_lex_state = 75}, + [3510] = {.lex_state = 297, .external_lex_state = 71}, + [3511] = {.lex_state = 213, .external_lex_state = 26}, + [3512] = {.lex_state = 297, .external_lex_state = 71}, + [3513] = {.lex_state = 297, .external_lex_state = 71}, + [3514] = {.lex_state = 316, .external_lex_state = 75}, + [3515] = {.lex_state = 297, .external_lex_state = 71}, + [3516] = {.lex_state = 297, .external_lex_state = 71}, + [3517] = {.lex_state = 316, .external_lex_state = 75}, + [3518] = {.lex_state = 316, .external_lex_state = 75}, + [3519] = {.lex_state = 316, .external_lex_state = 75}, + [3520] = {.lex_state = 316, .external_lex_state = 75}, + [3521] = {.lex_state = 316, .external_lex_state = 75}, + [3522] = {.lex_state = 297, .external_lex_state = 71}, + [3523] = {.lex_state = 316, .external_lex_state = 75}, + [3524] = {.lex_state = 316, .external_lex_state = 75}, + [3525] = {.lex_state = 297, .external_lex_state = 71}, + [3526] = {.lex_state = 316, .external_lex_state = 75}, + [3527] = {.lex_state = 316, .external_lex_state = 75}, + [3528] = {.lex_state = 297, .external_lex_state = 71}, + [3529] = {.lex_state = 297, .external_lex_state = 71}, + [3530] = {.lex_state = 316, .external_lex_state = 75}, + [3531] = {.lex_state = 319, .external_lex_state = 76}, + [3532] = {.lex_state = 319, .external_lex_state = 76}, + [3533] = {.lex_state = 319, .external_lex_state = 76}, + [3534] = {.lex_state = 319, .external_lex_state = 76}, + [3535] = {.lex_state = 202, .external_lex_state = 66}, + [3536] = {.lex_state = 296, .external_lex_state = 36}, + [3537] = {.lex_state = 282, .external_lex_state = 77}, + [3538] = {.lex_state = 282, .external_lex_state = 77}, + [3539] = {.lex_state = 296, .external_lex_state = 36}, + [3540] = {.lex_state = 202, .external_lex_state = 66}, + [3541] = {.lex_state = 296, .external_lex_state = 36}, + [3542] = {.lex_state = 296, .external_lex_state = 36}, + [3543] = {.lex_state = 296, .external_lex_state = 36}, + [3544] = {.lex_state = 296, .external_lex_state = 36}, + [3545] = {.lex_state = 296, .external_lex_state = 36}, + [3546] = {.lex_state = 298, .external_lex_state = 78}, + [3547] = {.lex_state = 296, .external_lex_state = 36}, + [3548] = {.lex_state = 298, .external_lex_state = 78}, + [3549] = {.lex_state = 298, .external_lex_state = 78}, + [3550] = {.lex_state = 298, .external_lex_state = 78}, + [3551] = {.lex_state = 298, .external_lex_state = 78}, + [3552] = {.lex_state = 296, .external_lex_state = 36}, + [3553] = {.lex_state = 298, .external_lex_state = 78}, + [3554] = {.lex_state = 298, .external_lex_state = 78}, + [3555] = {.lex_state = 298, .external_lex_state = 79}, + [3556] = {.lex_state = 296, .external_lex_state = 36}, + [3557] = {.lex_state = 298, .external_lex_state = 78}, + [3558] = {.lex_state = 298, .external_lex_state = 78}, + [3559] = {.lex_state = 254, .external_lex_state = 80}, + [3560] = {.lex_state = 254, .external_lex_state = 80}, + [3561] = {.lex_state = 298, .external_lex_state = 78}, + [3562] = {.lex_state = 230, .external_lex_state = 72}, + [3563] = {.lex_state = 298, .external_lex_state = 78}, + [3564] = {.lex_state = 298, .external_lex_state = 78}, + [3565] = {.lex_state = 198, .external_lex_state = 73}, + [3566] = {.lex_state = 298, .external_lex_state = 78}, + [3567] = {.lex_state = 198, .external_lex_state = 73}, + [3568] = {.lex_state = 298, .external_lex_state = 78}, + [3569] = {.lex_state = 296, .external_lex_state = 36}, + [3570] = {.lex_state = 198, .external_lex_state = 73}, + [3571] = {.lex_state = 198, .external_lex_state = 73}, + [3572] = {.lex_state = 284, .external_lex_state = 77}, + [3573] = {.lex_state = 296, .external_lex_state = 36}, + [3574] = {.lex_state = 298, .external_lex_state = 79}, + [3575] = {.lex_state = 298, .external_lex_state = 78}, + [3576] = {.lex_state = 298, .external_lex_state = 78}, + [3577] = {.lex_state = 298, .external_lex_state = 78}, + [3578] = {.lex_state = 296, .external_lex_state = 36}, + [3579] = {.lex_state = 205, .external_lex_state = 66}, + [3580] = {.lex_state = 283, .external_lex_state = 81}, + [3581] = {.lex_state = 296, .external_lex_state = 36}, + [3582] = {.lex_state = 283, .external_lex_state = 81}, + [3583] = {.lex_state = 198, .external_lex_state = 73}, + [3584] = {.lex_state = 230, .external_lex_state = 72}, + [3585] = {.lex_state = 198, .external_lex_state = 73}, + [3586] = {.lex_state = 298, .external_lex_state = 78}, + [3587] = {.lex_state = 298, .external_lex_state = 78}, + [3588] = {.lex_state = 298, .external_lex_state = 78}, + [3589] = {.lex_state = 298, .external_lex_state = 78}, + [3590] = {.lex_state = 298, .external_lex_state = 78}, + [3591] = {.lex_state = 198, .external_lex_state = 73}, + [3592] = {.lex_state = 298, .external_lex_state = 78}, + [3593] = {.lex_state = 298, .external_lex_state = 78}, + [3594] = {.lex_state = 298, .external_lex_state = 78}, + [3595] = {.lex_state = 298, .external_lex_state = 78}, + [3596] = {.lex_state = 198, .external_lex_state = 73}, + [3597] = {.lex_state = 296, .external_lex_state = 36}, + [3598] = {.lex_state = 284, .external_lex_state = 77}, + [3599] = {.lex_state = 298, .external_lex_state = 78}, + [3600] = {.lex_state = 205, .external_lex_state = 66}, + [3601] = {.lex_state = 296, .external_lex_state = 36}, + [3602] = {.lex_state = 298, .external_lex_state = 78}, + [3603] = {.lex_state = 198, .external_lex_state = 73}, + [3604] = {.lex_state = 298, .external_lex_state = 78}, + [3605] = {.lex_state = 198, .external_lex_state = 73}, + [3606] = {.lex_state = 298, .external_lex_state = 78}, + [3607] = {.lex_state = 205, .external_lex_state = 66}, + [3608] = {.lex_state = 198, .external_lex_state = 73}, + [3609] = {.lex_state = 298, .external_lex_state = 79}, + [3610] = {.lex_state = 298, .external_lex_state = 78}, + [3611] = {.lex_state = 298, .external_lex_state = 78}, + [3612] = {.lex_state = 205, .external_lex_state = 66}, + [3613] = {.lex_state = 298, .external_lex_state = 78}, + [3614] = {.lex_state = 298, .external_lex_state = 78}, + [3615] = {.lex_state = 317, .external_lex_state = 82}, + [3616] = {.lex_state = 317, .external_lex_state = 82}, + [3617] = {.lex_state = 298, .external_lex_state = 78}, + [3618] = {.lex_state = 298, .external_lex_state = 78}, + [3619] = {.lex_state = 285, .external_lex_state = 81}, + [3620] = {.lex_state = 298, .external_lex_state = 83}, + [3621] = {.lex_state = 298, .external_lex_state = 78}, + [3622] = {.lex_state = 298, .external_lex_state = 78}, + [3623] = {.lex_state = 298, .external_lex_state = 78}, + [3624] = {.lex_state = 298, .external_lex_state = 78}, + [3625] = {.lex_state = 298, .external_lex_state = 78}, + [3626] = {.lex_state = 298, .external_lex_state = 78}, + [3627] = {.lex_state = 298, .external_lex_state = 78}, + [3628] = {.lex_state = 319, .external_lex_state = 84}, + [3629] = {.lex_state = 298, .external_lex_state = 78}, + [3630] = {.lex_state = 298, .external_lex_state = 78}, + [3631] = {.lex_state = 298, .external_lex_state = 78}, + [3632] = {.lex_state = 298, .external_lex_state = 78}, + [3633] = {.lex_state = 298, .external_lex_state = 78}, + [3634] = {.lex_state = 298, .external_lex_state = 78}, + [3635] = {.lex_state = 298, .external_lex_state = 78}, + [3636] = {.lex_state = 285, .external_lex_state = 81}, + [3637] = {.lex_state = 298, .external_lex_state = 78}, + [3638] = {.lex_state = 298, .external_lex_state = 78}, + [3639] = {.lex_state = 298, .external_lex_state = 78}, + [3640] = {.lex_state = 298, .external_lex_state = 78}, + [3641] = {.lex_state = 298, .external_lex_state = 78}, + [3642] = {.lex_state = 298, .external_lex_state = 78}, + [3643] = {.lex_state = 317, .external_lex_state = 82}, + [3644] = {.lex_state = 317, .external_lex_state = 82}, + [3645] = {.lex_state = 298, .external_lex_state = 78}, + [3646] = {.lex_state = 298, .external_lex_state = 78}, + [3647] = {.lex_state = 298, .external_lex_state = 78}, + [3648] = {.lex_state = 298, .external_lex_state = 78}, + [3649] = {.lex_state = 298, .external_lex_state = 78}, + [3650] = {.lex_state = 298, .external_lex_state = 78}, + [3651] = {.lex_state = 298, .external_lex_state = 78}, + [3652] = {.lex_state = 298, .external_lex_state = 78}, + [3653] = {.lex_state = 298, .external_lex_state = 78}, + [3654] = {.lex_state = 298, .external_lex_state = 78}, + [3655] = {.lex_state = 298, .external_lex_state = 78}, + [3656] = {.lex_state = 317, .external_lex_state = 82}, + [3657] = {.lex_state = 317, .external_lex_state = 82}, + [3658] = {.lex_state = 317, .external_lex_state = 82}, + [3659] = {.lex_state = 298, .external_lex_state = 78}, + [3660] = {.lex_state = 298, .external_lex_state = 83}, + [3661] = {.lex_state = 298, .external_lex_state = 78}, + [3662] = {.lex_state = 298, .external_lex_state = 78}, + [3663] = {.lex_state = 317, .external_lex_state = 82}, + [3664] = {.lex_state = 285, .external_lex_state = 81}, + [3665] = {.lex_state = 298, .external_lex_state = 78}, + [3666] = {.lex_state = 285, .external_lex_state = 81}, + [3667] = {.lex_state = 298, .external_lex_state = 78}, + [3668] = {.lex_state = 317, .external_lex_state = 82}, + [3669] = {.lex_state = 298, .external_lex_state = 78}, + [3670] = {.lex_state = 298, .external_lex_state = 78}, + [3671] = {.lex_state = 317, .external_lex_state = 82}, + [3672] = {.lex_state = 298, .external_lex_state = 83}, + [3673] = {.lex_state = 298, .external_lex_state = 78}, + [3674] = {.lex_state = 298, .external_lex_state = 78}, + [3675] = {.lex_state = 298, .external_lex_state = 78}, + [3676] = {.lex_state = 298, .external_lex_state = 78}, + [3677] = {.lex_state = 298, .external_lex_state = 78}, + [3678] = {.lex_state = 298, .external_lex_state = 78}, + [3679] = {.lex_state = 298, .external_lex_state = 78}, + [3680] = {.lex_state = 298, .external_lex_state = 78}, + [3681] = {.lex_state = 298, .external_lex_state = 78}, + [3682] = {.lex_state = 298, .external_lex_state = 83}, + [3683] = {.lex_state = 317, .external_lex_state = 82}, + [3684] = {.lex_state = 298, .external_lex_state = 78}, + [3685] = {.lex_state = 317, .external_lex_state = 82}, + [3686] = {.lex_state = 298, .external_lex_state = 83}, + [3687] = {.lex_state = 298, .external_lex_state = 78}, + [3688] = {.lex_state = 298, .external_lex_state = 78}, + [3689] = {.lex_state = 298, .external_lex_state = 78}, + [3690] = {.lex_state = 298, .external_lex_state = 78}, + [3691] = {.lex_state = 298, .external_lex_state = 78}, + [3692] = {.lex_state = 298, .external_lex_state = 78}, + [3693] = {.lex_state = 298, .external_lex_state = 78}, + [3694] = {.lex_state = 298, .external_lex_state = 78}, + [3695] = {.lex_state = 298, .external_lex_state = 83}, + [3696] = {.lex_state = 298, .external_lex_state = 78}, + [3697] = {.lex_state = 298, .external_lex_state = 83}, + [3698] = {.lex_state = 316, .external_lex_state = 85}, + [3699] = {.lex_state = 289, .external_lex_state = 86}, + [3700] = {.lex_state = 316, .external_lex_state = 85}, + [3701] = {.lex_state = 316, .external_lex_state = 85}, + [3702] = {.lex_state = 316, .external_lex_state = 85}, + [3703] = {.lex_state = 298, .external_lex_state = 78}, + [3704] = {.lex_state = 316, .external_lex_state = 85}, + [3705] = {.lex_state = 289, .external_lex_state = 86}, + [3706] = {.lex_state = 298, .external_lex_state = 78}, + [3707] = {.lex_state = 316, .external_lex_state = 85}, + [3708] = {.lex_state = 289, .external_lex_state = 86}, + [3709] = {.lex_state = 289, .external_lex_state = 86}, + [3710] = {.lex_state = 289, .external_lex_state = 86}, + [3711] = {.lex_state = 316, .external_lex_state = 85}, + [3712] = {.lex_state = 316, .external_lex_state = 85}, + [3713] = {.lex_state = 289, .external_lex_state = 86}, + [3714] = {.lex_state = 289, .external_lex_state = 86}, + [3715] = {.lex_state = 298, .external_lex_state = 78}, + [3716] = {.lex_state = 298, .external_lex_state = 78}, + [3717] = {.lex_state = 316, .external_lex_state = 85}, + [3718] = {.lex_state = 298, .external_lex_state = 78}, + [3719] = {.lex_state = 316, .external_lex_state = 85}, + [3720] = {.lex_state = 298, .external_lex_state = 78}, + [3721] = {.lex_state = 298, .external_lex_state = 78}, + [3722] = {.lex_state = 289, .external_lex_state = 86}, + [3723] = {.lex_state = 316, .external_lex_state = 85}, + [3724] = {.lex_state = 289, .external_lex_state = 86}, + [3725] = {.lex_state = 298, .external_lex_state = 78}, + [3726] = {.lex_state = 289, .external_lex_state = 86}, + [3727] = {.lex_state = 316, .external_lex_state = 85}, + [3728] = {.lex_state = 289, .external_lex_state = 86}, + [3729] = {.lex_state = 289, .external_lex_state = 86}, + [3730] = {.lex_state = 289, .external_lex_state = 86}, + [3731] = {.lex_state = 289, .external_lex_state = 86}, + [3732] = {.lex_state = 316, .external_lex_state = 85}, + [3733] = {.lex_state = 316, .external_lex_state = 85}, + [3734] = {.lex_state = 298, .external_lex_state = 78}, + [3735] = {.lex_state = 316, .external_lex_state = 85}, + [3736] = {.lex_state = 298, .external_lex_state = 78}, + [3737] = {.lex_state = 316, .external_lex_state = 85}, + [3738] = {.lex_state = 316, .external_lex_state = 85}, + [3739] = {.lex_state = 298, .external_lex_state = 78}, + [3740] = {.lex_state = 298, .external_lex_state = 78}, + [3741] = {.lex_state = 289, .external_lex_state = 86}, + [3742] = {.lex_state = 289, .external_lex_state = 86}, + [3743] = {.lex_state = 289, .external_lex_state = 86}, + [3744] = {.lex_state = 289, .external_lex_state = 86}, + [3745] = {.lex_state = 316, .external_lex_state = 85}, + [3746] = {.lex_state = 316, .external_lex_state = 85}, + [3747] = {.lex_state = 316, .external_lex_state = 85}, + [3748] = {.lex_state = 289, .external_lex_state = 86}, + [3749] = {.lex_state = 289, .external_lex_state = 86}, + [3750] = {.lex_state = 316, .external_lex_state = 85}, + [3751] = {.lex_state = 289, .external_lex_state = 86}, + [3752] = {.lex_state = 316, .external_lex_state = 85}, + [3753] = {.lex_state = 289, .external_lex_state = 86}, + [3754] = {.lex_state = 289, .external_lex_state = 86}, + [3755] = {.lex_state = 289, .external_lex_state = 86}, + [3756] = {.lex_state = 316, .external_lex_state = 85}, + [3757] = {.lex_state = 316, .external_lex_state = 85}, + [3758] = {.lex_state = 316, .external_lex_state = 85}, + [3759] = {.lex_state = 289, .external_lex_state = 86}, + [3760] = {.lex_state = 316, .external_lex_state = 85}, + [3761] = {.lex_state = 298, .external_lex_state = 78}, + [3762] = {.lex_state = 298, .external_lex_state = 78}, + [3763] = {.lex_state = 298, .external_lex_state = 78}, + [3764] = {.lex_state = 289, .external_lex_state = 86}, + [3765] = {.lex_state = 298, .external_lex_state = 78}, + [3766] = {.lex_state = 316, .external_lex_state = 85}, + [3767] = {.lex_state = 316, .external_lex_state = 85}, + [3768] = {.lex_state = 316, .external_lex_state = 85}, + [3769] = {.lex_state = 298, .external_lex_state = 78}, + [3770] = {.lex_state = 316, .external_lex_state = 85}, + [3771] = {.lex_state = 316, .external_lex_state = 85}, + [3772] = {.lex_state = 298, .external_lex_state = 78}, + [3773] = {.lex_state = 316, .external_lex_state = 85}, + [3774] = {.lex_state = 316, .external_lex_state = 85}, + [3775] = {.lex_state = 298, .external_lex_state = 78}, + [3776] = {.lex_state = 316, .external_lex_state = 85}, + [3777] = {.lex_state = 298, .external_lex_state = 78}, + [3778] = {.lex_state = 316, .external_lex_state = 85}, + [3779] = {.lex_state = 298, .external_lex_state = 78}, + [3780] = {.lex_state = 298, .external_lex_state = 78}, + [3781] = {.lex_state = 316, .external_lex_state = 85}, + [3782] = {.lex_state = 298, .external_lex_state = 78}, + [3783] = {.lex_state = 289, .external_lex_state = 86}, + [3784] = {.lex_state = 289, .external_lex_state = 86}, + [3785] = {.lex_state = 316, .external_lex_state = 85}, + [3786] = {.lex_state = 289, .external_lex_state = 86}, + [3787] = {.lex_state = 298, .external_lex_state = 78}, + [3788] = {.lex_state = 316, .external_lex_state = 85}, + [3789] = {.lex_state = 289, .external_lex_state = 86}, + [3790] = {.lex_state = 316, .external_lex_state = 85}, + [3791] = {.lex_state = 316, .external_lex_state = 85}, + [3792] = {.lex_state = 316, .external_lex_state = 85}, + [3793] = {.lex_state = 289, .external_lex_state = 86}, + [3794] = {.lex_state = 316, .external_lex_state = 85}, + [3795] = {.lex_state = 316, .external_lex_state = 85}, + [3796] = {.lex_state = 316, .external_lex_state = 85}, + [3797] = {.lex_state = 289, .external_lex_state = 86}, + [3798] = {.lex_state = 316, .external_lex_state = 85}, + [3799] = {.lex_state = 298, .external_lex_state = 78}, + [3800] = {.lex_state = 289, .external_lex_state = 86}, + [3801] = {.lex_state = 298, .external_lex_state = 78}, + [3802] = {.lex_state = 316, .external_lex_state = 85}, + [3803] = {.lex_state = 316, .external_lex_state = 85}, + [3804] = {.lex_state = 289, .external_lex_state = 86}, + [3805] = {.lex_state = 298, .external_lex_state = 78}, + [3806] = {.lex_state = 316, .external_lex_state = 85}, + [3807] = {.lex_state = 298, .external_lex_state = 78}, + [3808] = {.lex_state = 298, .external_lex_state = 78}, + [3809] = {.lex_state = 289, .external_lex_state = 86}, + [3810] = {.lex_state = 316, .external_lex_state = 85}, + [3811] = {.lex_state = 316, .external_lex_state = 85}, + [3812] = {.lex_state = 289, .external_lex_state = 86}, + [3813] = {.lex_state = 316, .external_lex_state = 85}, + [3814] = {.lex_state = 316, .external_lex_state = 85}, + [3815] = {.lex_state = 316, .external_lex_state = 85}, + [3816] = {.lex_state = 289, .external_lex_state = 86}, + [3817] = {.lex_state = 289, .external_lex_state = 86}, + [3818] = {.lex_state = 289, .external_lex_state = 86}, + [3819] = {.lex_state = 316, .external_lex_state = 85}, + [3820] = {.lex_state = 289, .external_lex_state = 86}, + [3821] = {.lex_state = 298, .external_lex_state = 78}, + [3822] = {.lex_state = 298, .external_lex_state = 78}, + [3823] = {.lex_state = 316, .external_lex_state = 85}, + [3824] = {.lex_state = 289, .external_lex_state = 86}, + [3825] = {.lex_state = 289, .external_lex_state = 86}, + [3826] = {.lex_state = 316, .external_lex_state = 85}, + [3827] = {.lex_state = 298, .external_lex_state = 78}, + [3828] = {.lex_state = 298, .external_lex_state = 78}, + [3829] = {.lex_state = 316, .external_lex_state = 85}, + [3830] = {.lex_state = 289, .external_lex_state = 86}, + [3831] = {.lex_state = 289, .external_lex_state = 86}, + [3832] = {.lex_state = 298, .external_lex_state = 78}, + [3833] = {.lex_state = 298, .external_lex_state = 78}, + [3834] = {.lex_state = 316, .external_lex_state = 85}, + [3835] = {.lex_state = 289, .external_lex_state = 86}, + [3836] = {.lex_state = 298, .external_lex_state = 78}, + [3837] = {.lex_state = 316, .external_lex_state = 85}, + [3838] = {.lex_state = 298, .external_lex_state = 78}, + [3839] = {.lex_state = 316, .external_lex_state = 85}, + [3840] = {.lex_state = 298, .external_lex_state = 78}, + [3841] = {.lex_state = 316, .external_lex_state = 85}, + [3842] = {.lex_state = 289, .external_lex_state = 86}, + [3843] = {.lex_state = 316, .external_lex_state = 85}, + [3844] = {.lex_state = 316, .external_lex_state = 85}, + [3845] = {.lex_state = 316, .external_lex_state = 85}, + [3846] = {.lex_state = 316, .external_lex_state = 85}, + [3847] = {.lex_state = 316, .external_lex_state = 85}, + [3848] = {.lex_state = 316, .external_lex_state = 85}, + [3849] = {.lex_state = 289, .external_lex_state = 86}, + [3850] = {.lex_state = 289, .external_lex_state = 86}, + [3851] = {.lex_state = 316, .external_lex_state = 85}, + [3852] = {.lex_state = 316, .external_lex_state = 85}, + [3853] = {.lex_state = 316, .external_lex_state = 85}, + [3854] = {.lex_state = 316, .external_lex_state = 85}, + [3855] = {.lex_state = 289, .external_lex_state = 86}, + [3856] = {.lex_state = 316, .external_lex_state = 85}, + [3857] = {.lex_state = 289, .external_lex_state = 86}, + [3858] = {.lex_state = 316, .external_lex_state = 85}, + [3859] = {.lex_state = 298, .external_lex_state = 78}, + [3860] = {.lex_state = 316, .external_lex_state = 85}, + [3861] = {.lex_state = 316, .external_lex_state = 85}, + [3862] = {.lex_state = 289, .external_lex_state = 86}, + [3863] = {.lex_state = 289, .external_lex_state = 86}, + [3864] = {.lex_state = 316, .external_lex_state = 85}, + [3865] = {.lex_state = 316, .external_lex_state = 85}, + [3866] = {.lex_state = 316, .external_lex_state = 85}, + [3867] = {.lex_state = 316, .external_lex_state = 85}, + [3868] = {.lex_state = 316, .external_lex_state = 85}, + [3869] = {.lex_state = 316, .external_lex_state = 85}, + [3870] = {.lex_state = 316, .external_lex_state = 85}, + [3871] = {.lex_state = 316, .external_lex_state = 85}, + [3872] = {.lex_state = 316, .external_lex_state = 85}, + [3873] = {.lex_state = 316, .external_lex_state = 85}, + [3874] = {.lex_state = 289, .external_lex_state = 86}, + [3875] = {.lex_state = 289, .external_lex_state = 86}, + [3876] = {.lex_state = 289, .external_lex_state = 86}, + [3877] = {.lex_state = 316, .external_lex_state = 85}, + [3878] = {.lex_state = 316, .external_lex_state = 85}, + [3879] = {.lex_state = 289, .external_lex_state = 86}, + [3880] = {.lex_state = 316, .external_lex_state = 85}, + [3881] = {.lex_state = 316, .external_lex_state = 85}, + [3882] = {.lex_state = 316, .external_lex_state = 85}, + [3883] = {.lex_state = 316, .external_lex_state = 85}, + [3884] = {.lex_state = 316, .external_lex_state = 85}, + [3885] = {.lex_state = 316, .external_lex_state = 85}, + [3886] = {.lex_state = 316, .external_lex_state = 85}, + [3887] = {.lex_state = 316, .external_lex_state = 85}, + [3888] = {.lex_state = 289, .external_lex_state = 86}, + [3889] = {.lex_state = 316, .external_lex_state = 85}, + [3890] = {.lex_state = 316, .external_lex_state = 85}, + [3891] = {.lex_state = 316, .external_lex_state = 85}, + [3892] = {.lex_state = 289, .external_lex_state = 86}, + [3893] = {.lex_state = 289, .external_lex_state = 86}, + [3894] = {.lex_state = 316, .external_lex_state = 85}, + [3895] = {.lex_state = 316, .external_lex_state = 85}, + [3896] = {.lex_state = 316, .external_lex_state = 85}, + [3897] = {.lex_state = 316, .external_lex_state = 85}, + [3898] = {.lex_state = 298, .external_lex_state = 78}, + [3899] = {.lex_state = 316, .external_lex_state = 85}, + [3900] = {.lex_state = 316, .external_lex_state = 85}, + [3901] = {.lex_state = 316, .external_lex_state = 85}, + [3902] = {.lex_state = 298, .external_lex_state = 78}, + [3903] = {.lex_state = 316, .external_lex_state = 85}, + [3904] = {.lex_state = 316, .external_lex_state = 85}, + [3905] = {.lex_state = 316, .external_lex_state = 85}, + [3906] = {.lex_state = 316, .external_lex_state = 85}, + [3907] = {.lex_state = 298, .external_lex_state = 78}, + [3908] = {.lex_state = 316, .external_lex_state = 85}, + [3909] = {.lex_state = 316, .external_lex_state = 85}, + [3910] = {.lex_state = 316, .external_lex_state = 85}, + [3911] = {.lex_state = 316, .external_lex_state = 85}, + [3912] = {.lex_state = 316, .external_lex_state = 85}, + [3913] = {.lex_state = 316, .external_lex_state = 85}, + [3914] = {.lex_state = 316, .external_lex_state = 85}, + [3915] = {.lex_state = 289, .external_lex_state = 86}, + [3916] = {.lex_state = 289, .external_lex_state = 86}, + [3917] = {.lex_state = 316, .external_lex_state = 85}, + [3918] = {.lex_state = 316, .external_lex_state = 85}, + [3919] = {.lex_state = 289, .external_lex_state = 86}, + [3920] = {.lex_state = 289, .external_lex_state = 86}, + [3921] = {.lex_state = 316, .external_lex_state = 85}, + [3922] = {.lex_state = 316, .external_lex_state = 85}, + [3923] = {.lex_state = 316, .external_lex_state = 85}, + [3924] = {.lex_state = 316, .external_lex_state = 85}, + [3925] = {.lex_state = 316, .external_lex_state = 85}, + [3926] = {.lex_state = 316, .external_lex_state = 85}, + [3927] = {.lex_state = 316, .external_lex_state = 85}, + [3928] = {.lex_state = 316, .external_lex_state = 85}, + [3929] = {.lex_state = 316, .external_lex_state = 85}, + [3930] = {.lex_state = 316, .external_lex_state = 85}, + [3931] = {.lex_state = 316, .external_lex_state = 85}, + [3932] = {.lex_state = 289, .external_lex_state = 86}, + [3933] = {.lex_state = 289, .external_lex_state = 86}, + [3934] = {.lex_state = 289, .external_lex_state = 86}, + [3935] = {.lex_state = 316, .external_lex_state = 85}, + [3936] = {.lex_state = 316, .external_lex_state = 85}, + [3937] = {.lex_state = 316, .external_lex_state = 85}, + [3938] = {.lex_state = 316, .external_lex_state = 85}, + [3939] = {.lex_state = 316, .external_lex_state = 85}, + [3940] = {.lex_state = 316, .external_lex_state = 85}, + [3941] = {.lex_state = 316, .external_lex_state = 85}, + [3942] = {.lex_state = 316, .external_lex_state = 85}, + [3943] = {.lex_state = 316, .external_lex_state = 85}, + [3944] = {.lex_state = 289, .external_lex_state = 86}, + [3945] = {.lex_state = 289, .external_lex_state = 86}, + [3946] = {.lex_state = 316, .external_lex_state = 85}, + [3947] = {.lex_state = 316, .external_lex_state = 85}, + [3948] = {.lex_state = 316, .external_lex_state = 85}, + [3949] = {.lex_state = 316, .external_lex_state = 85}, + [3950] = {.lex_state = 316, .external_lex_state = 85}, + [3951] = {.lex_state = 316, .external_lex_state = 85}, + [3952] = {.lex_state = 316, .external_lex_state = 85}, + [3953] = {.lex_state = 316, .external_lex_state = 85}, + [3954] = {.lex_state = 316, .external_lex_state = 85}, + [3955] = {.lex_state = 316, .external_lex_state = 85}, + [3956] = {.lex_state = 316, .external_lex_state = 85}, + [3957] = {.lex_state = 316, .external_lex_state = 85}, + [3958] = {.lex_state = 316, .external_lex_state = 85}, + [3959] = {.lex_state = 316, .external_lex_state = 85}, + [3960] = {.lex_state = 289, .external_lex_state = 86}, + [3961] = {.lex_state = 316, .external_lex_state = 85}, + [3962] = {.lex_state = 316, .external_lex_state = 85}, + [3963] = {.lex_state = 298, .external_lex_state = 78}, + [3964] = {.lex_state = 316, .external_lex_state = 85}, + [3965] = {.lex_state = 298, .external_lex_state = 78}, + [3966] = {.lex_state = 289, .external_lex_state = 86}, + [3967] = {.lex_state = 289, .external_lex_state = 86}, + [3968] = {.lex_state = 316, .external_lex_state = 85}, + [3969] = {.lex_state = 316, .external_lex_state = 85}, + [3970] = {.lex_state = 289, .external_lex_state = 86}, + [3971] = {.lex_state = 316, .external_lex_state = 85}, + [3972] = {.lex_state = 316, .external_lex_state = 85}, + [3973] = {.lex_state = 289, .external_lex_state = 86}, + [3974] = {.lex_state = 289, .external_lex_state = 86}, + [3975] = {.lex_state = 316, .external_lex_state = 85}, + [3976] = {.lex_state = 316, .external_lex_state = 85}, + [3977] = {.lex_state = 289, .external_lex_state = 86}, + [3978] = {.lex_state = 289, .external_lex_state = 86}, + [3979] = {.lex_state = 316, .external_lex_state = 85}, + [3980] = {.lex_state = 316, .external_lex_state = 85}, + [3981] = {.lex_state = 289, .external_lex_state = 86}, + [3982] = {.lex_state = 289, .external_lex_state = 86}, + [3983] = {.lex_state = 289, .external_lex_state = 86}, + [3984] = {.lex_state = 316, .external_lex_state = 85}, + [3985] = {.lex_state = 289, .external_lex_state = 86}, + [3986] = {.lex_state = 289, .external_lex_state = 86}, + [3987] = {.lex_state = 289, .external_lex_state = 86}, + [3988] = {.lex_state = 316, .external_lex_state = 85}, + [3989] = {.lex_state = 316, .external_lex_state = 85}, + [3990] = {.lex_state = 316, .external_lex_state = 85}, + [3991] = {.lex_state = 316, .external_lex_state = 85}, + [3992] = {.lex_state = 316, .external_lex_state = 85}, + [3993] = {.lex_state = 316, .external_lex_state = 85}, + [3994] = {.lex_state = 289, .external_lex_state = 86}, + [3995] = {.lex_state = 289, .external_lex_state = 86}, + [3996] = {.lex_state = 316, .external_lex_state = 85}, + [3997] = {.lex_state = 289, .external_lex_state = 86}, + [3998] = {.lex_state = 316, .external_lex_state = 85}, + [3999] = {.lex_state = 316, .external_lex_state = 85}, + [4000] = {.lex_state = 289, .external_lex_state = 86}, + [4001] = {.lex_state = 289, .external_lex_state = 86}, + [4002] = {.lex_state = 316, .external_lex_state = 85}, + [4003] = {.lex_state = 316, .external_lex_state = 85}, + [4004] = {.lex_state = 316, .external_lex_state = 85}, + [4005] = {.lex_state = 289, .external_lex_state = 86}, + [4006] = {.lex_state = 289, .external_lex_state = 86}, + [4007] = {.lex_state = 316, .external_lex_state = 85}, + [4008] = {.lex_state = 289, .external_lex_state = 86}, + [4009] = {.lex_state = 316, .external_lex_state = 85}, + [4010] = {.lex_state = 316, .external_lex_state = 85}, + [4011] = {.lex_state = 316, .external_lex_state = 85}, + [4012] = {.lex_state = 289, .external_lex_state = 86}, + [4013] = {.lex_state = 316, .external_lex_state = 85}, + [4014] = {.lex_state = 316, .external_lex_state = 85}, + [4015] = {.lex_state = 316, .external_lex_state = 85}, + [4016] = {.lex_state = 316, .external_lex_state = 85}, + [4017] = {.lex_state = 316, .external_lex_state = 85}, + [4018] = {.lex_state = 298, .external_lex_state = 78}, + [4019] = {.lex_state = 316, .external_lex_state = 85}, + [4020] = {.lex_state = 316, .external_lex_state = 85}, + [4021] = {.lex_state = 289, .external_lex_state = 86}, + [4022] = {.lex_state = 316, .external_lex_state = 85}, + [4023] = {.lex_state = 316, .external_lex_state = 85}, + [4024] = {.lex_state = 298, .external_lex_state = 78}, + [4025] = {.lex_state = 289, .external_lex_state = 86}, + [4026] = {.lex_state = 316, .external_lex_state = 85}, + [4027] = {.lex_state = 316, .external_lex_state = 85}, + [4028] = {.lex_state = 316, .external_lex_state = 85}, + [4029] = {.lex_state = 316, .external_lex_state = 85}, + [4030] = {.lex_state = 298, .external_lex_state = 78}, + [4031] = {.lex_state = 298, .external_lex_state = 78}, + [4032] = {.lex_state = 289, .external_lex_state = 86}, + [4033] = {.lex_state = 289, .external_lex_state = 86}, + [4034] = {.lex_state = 316, .external_lex_state = 85}, + [4035] = {.lex_state = 289, .external_lex_state = 86}, + [4036] = {.lex_state = 298, .external_lex_state = 78}, + [4037] = {.lex_state = 289, .external_lex_state = 86}, + [4038] = {.lex_state = 316, .external_lex_state = 85}, + [4039] = {.lex_state = 298, .external_lex_state = 78}, + [4040] = {.lex_state = 289, .external_lex_state = 86}, + [4041] = {.lex_state = 289, .external_lex_state = 86}, + [4042] = {.lex_state = 316, .external_lex_state = 85}, + [4043] = {.lex_state = 289, .external_lex_state = 86}, + [4044] = {.lex_state = 289, .external_lex_state = 86}, + [4045] = {.lex_state = 298, .external_lex_state = 78}, + [4046] = {.lex_state = 316, .external_lex_state = 85}, + [4047] = {.lex_state = 289, .external_lex_state = 86}, + [4048] = {.lex_state = 289, .external_lex_state = 86}, + [4049] = {.lex_state = 289, .external_lex_state = 86}, + [4050] = {.lex_state = 298, .external_lex_state = 78}, + [4051] = {.lex_state = 289, .external_lex_state = 86}, + [4052] = {.lex_state = 298, .external_lex_state = 78}, + [4053] = {.lex_state = 298, .external_lex_state = 78}, + [4054] = {.lex_state = 289, .external_lex_state = 86}, + [4055] = {.lex_state = 316, .external_lex_state = 85}, + [4056] = {.lex_state = 289, .external_lex_state = 86}, + [4057] = {.lex_state = 289, .external_lex_state = 86}, + [4058] = {.lex_state = 289, .external_lex_state = 86}, + [4059] = {.lex_state = 316, .external_lex_state = 85}, + [4060] = {.lex_state = 289, .external_lex_state = 86}, + [4061] = {.lex_state = 289, .external_lex_state = 86}, + [4062] = {.lex_state = 289, .external_lex_state = 86}, + [4063] = {.lex_state = 289, .external_lex_state = 86}, + [4064] = {.lex_state = 289, .external_lex_state = 86}, + [4065] = {.lex_state = 316, .external_lex_state = 85}, + [4066] = {.lex_state = 289, .external_lex_state = 86}, + [4067] = {.lex_state = 289, .external_lex_state = 86}, + [4068] = {.lex_state = 289, .external_lex_state = 86}, + [4069] = {.lex_state = 289, .external_lex_state = 86}, + [4070] = {.lex_state = 289, .external_lex_state = 86}, + [4071] = {.lex_state = 316, .external_lex_state = 85}, + [4072] = {.lex_state = 289, .external_lex_state = 86}, + [4073] = {.lex_state = 289, .external_lex_state = 86}, + [4074] = {.lex_state = 289, .external_lex_state = 86}, + [4075] = {.lex_state = 316, .external_lex_state = 85}, + [4076] = {.lex_state = 289, .external_lex_state = 86}, + [4077] = {.lex_state = 316, .external_lex_state = 85}, + [4078] = {.lex_state = 298, .external_lex_state = 78}, + [4079] = {.lex_state = 289, .external_lex_state = 86}, + [4080] = {.lex_state = 316, .external_lex_state = 85}, + [4081] = {.lex_state = 316, .external_lex_state = 85}, + [4082] = {.lex_state = 289, .external_lex_state = 86}, + [4083] = {.lex_state = 289, .external_lex_state = 86}, + [4084] = {.lex_state = 289, .external_lex_state = 86}, + [4085] = {.lex_state = 289, .external_lex_state = 86}, + [4086] = {.lex_state = 316, .external_lex_state = 85}, + [4087] = {.lex_state = 316, .external_lex_state = 85}, + [4088] = {.lex_state = 316, .external_lex_state = 85}, + [4089] = {.lex_state = 316, .external_lex_state = 85}, + [4090] = {.lex_state = 289, .external_lex_state = 86}, + [4091] = {.lex_state = 289, .external_lex_state = 86}, + [4092] = {.lex_state = 316, .external_lex_state = 85}, + [4093] = {.lex_state = 289, .external_lex_state = 86}, + [4094] = {.lex_state = 316, .external_lex_state = 85}, + [4095] = {.lex_state = 316, .external_lex_state = 85}, + [4096] = {.lex_state = 289, .external_lex_state = 86}, + [4097] = {.lex_state = 316, .external_lex_state = 85}, + [4098] = {.lex_state = 289, .external_lex_state = 86}, + [4099] = {.lex_state = 316, .external_lex_state = 85}, + [4100] = {.lex_state = 316, .external_lex_state = 85}, + [4101] = {.lex_state = 289, .external_lex_state = 86}, + [4102] = {.lex_state = 289, .external_lex_state = 86}, + [4103] = {.lex_state = 289, .external_lex_state = 86}, + [4104] = {.lex_state = 316, .external_lex_state = 85}, + [4105] = {.lex_state = 316, .external_lex_state = 85}, + [4106] = {.lex_state = 316, .external_lex_state = 85}, + [4107] = {.lex_state = 298, .external_lex_state = 78}, + [4108] = {.lex_state = 289, .external_lex_state = 86}, + [4109] = {.lex_state = 298, .external_lex_state = 78}, + [4110] = {.lex_state = 289, .external_lex_state = 86}, + [4111] = {.lex_state = 298, .external_lex_state = 78}, + [4112] = {.lex_state = 289, .external_lex_state = 86}, + [4113] = {.lex_state = 316, .external_lex_state = 85}, + [4114] = {.lex_state = 289, .external_lex_state = 86}, + [4115] = {.lex_state = 298, .external_lex_state = 78}, + [4116] = {.lex_state = 316, .external_lex_state = 85}, + [4117] = {.lex_state = 316, .external_lex_state = 85}, + [4118] = {.lex_state = 298, .external_lex_state = 78}, + [4119] = {.lex_state = 298, .external_lex_state = 78}, + [4120] = {.lex_state = 289, .external_lex_state = 86}, + [4121] = {.lex_state = 289, .external_lex_state = 86}, + [4122] = {.lex_state = 298, .external_lex_state = 78}, + [4123] = {.lex_state = 289, .external_lex_state = 86}, + [4124] = {.lex_state = 289, .external_lex_state = 86}, + [4125] = {.lex_state = 298, .external_lex_state = 78}, + [4126] = {.lex_state = 298, .external_lex_state = 78}, + [4127] = {.lex_state = 316, .external_lex_state = 85}, + [4128] = {.lex_state = 316, .external_lex_state = 85}, + [4129] = {.lex_state = 316, .external_lex_state = 85}, + [4130] = {.lex_state = 289, .external_lex_state = 86}, + [4131] = {.lex_state = 289, .external_lex_state = 86}, + [4132] = {.lex_state = 289, .external_lex_state = 86}, + [4133] = {.lex_state = 316, .external_lex_state = 85}, + [4134] = {.lex_state = 289, .external_lex_state = 86}, + [4135] = {.lex_state = 289, .external_lex_state = 86}, + [4136] = {.lex_state = 289, .external_lex_state = 86}, + [4137] = {.lex_state = 289, .external_lex_state = 86}, + [4138] = {.lex_state = 298, .external_lex_state = 78}, + [4139] = {.lex_state = 316, .external_lex_state = 85}, + [4140] = {.lex_state = 316, .external_lex_state = 85}, + [4141] = {.lex_state = 316, .external_lex_state = 85}, + [4142] = {.lex_state = 289, .external_lex_state = 86}, + [4143] = {.lex_state = 289, .external_lex_state = 86}, + [4144] = {.lex_state = 289, .external_lex_state = 86}, + [4145] = {.lex_state = 289, .external_lex_state = 86}, + [4146] = {.lex_state = 289, .external_lex_state = 86}, + [4147] = {.lex_state = 289, .external_lex_state = 86}, + [4148] = {.lex_state = 289, .external_lex_state = 86}, + [4149] = {.lex_state = 289, .external_lex_state = 86}, + [4150] = {.lex_state = 289, .external_lex_state = 86}, + [4151] = {.lex_state = 289, .external_lex_state = 86}, + [4152] = {.lex_state = 298, .external_lex_state = 78}, + [4153] = {.lex_state = 316, .external_lex_state = 85}, + [4154] = {.lex_state = 289, .external_lex_state = 86}, + [4155] = {.lex_state = 289, .external_lex_state = 86}, + [4156] = {.lex_state = 316, .external_lex_state = 85}, + [4157] = {.lex_state = 316, .external_lex_state = 85}, + [4158] = {.lex_state = 316, .external_lex_state = 85}, + [4159] = {.lex_state = 316, .external_lex_state = 85}, + [4160] = {.lex_state = 316, .external_lex_state = 85}, + [4161] = {.lex_state = 316, .external_lex_state = 85}, + [4162] = {.lex_state = 316, .external_lex_state = 85}, + [4163] = {.lex_state = 316, .external_lex_state = 85}, + [4164] = {.lex_state = 289, .external_lex_state = 86}, + [4165] = {.lex_state = 298, .external_lex_state = 78}, + [4166] = {.lex_state = 289, .external_lex_state = 86}, + [4167] = {.lex_state = 298, .external_lex_state = 78}, + [4168] = {.lex_state = 316, .external_lex_state = 85}, + [4169] = {.lex_state = 289, .external_lex_state = 86}, + [4170] = {.lex_state = 298, .external_lex_state = 78}, + [4171] = {.lex_state = 316, .external_lex_state = 85}, + [4172] = {.lex_state = 316, .external_lex_state = 85}, + [4173] = {.lex_state = 316, .external_lex_state = 85}, + [4174] = {.lex_state = 298, .external_lex_state = 78}, + [4175] = {.lex_state = 289, .external_lex_state = 86}, + [4176] = {.lex_state = 289, .external_lex_state = 86}, + [4177] = {.lex_state = 316, .external_lex_state = 85}, + [4178] = {.lex_state = 316, .external_lex_state = 85}, + [4179] = {.lex_state = 316, .external_lex_state = 85}, + [4180] = {.lex_state = 316, .external_lex_state = 85}, + [4181] = {.lex_state = 316, .external_lex_state = 85}, + [4182] = {.lex_state = 298, .external_lex_state = 78}, + [4183] = {.lex_state = 289, .external_lex_state = 86}, + [4184] = {.lex_state = 289, .external_lex_state = 86}, + [4185] = {.lex_state = 289, .external_lex_state = 86}, + [4186] = {.lex_state = 298, .external_lex_state = 78}, + [4187] = {.lex_state = 316, .external_lex_state = 85}, + [4188] = {.lex_state = 298, .external_lex_state = 78}, + [4189] = {.lex_state = 298, .external_lex_state = 78}, + [4190] = {.lex_state = 289, .external_lex_state = 86}, + [4191] = {.lex_state = 316, .external_lex_state = 85}, + [4192] = {.lex_state = 289, .external_lex_state = 86}, + [4193] = {.lex_state = 289, .external_lex_state = 86}, + [4194] = {.lex_state = 289, .external_lex_state = 86}, + [4195] = {.lex_state = 289, .external_lex_state = 86}, + [4196] = {.lex_state = 289, .external_lex_state = 86}, + [4197] = {.lex_state = 316, .external_lex_state = 85}, + [4198] = {.lex_state = 316, .external_lex_state = 85}, + [4199] = {.lex_state = 316, .external_lex_state = 85}, + [4200] = {.lex_state = 289, .external_lex_state = 86}, + [4201] = {.lex_state = 289, .external_lex_state = 86}, + [4202] = {.lex_state = 289, .external_lex_state = 86}, + [4203] = {.lex_state = 316, .external_lex_state = 85}, + [4204] = {.lex_state = 289, .external_lex_state = 86}, + [4205] = {.lex_state = 289, .external_lex_state = 86}, + [4206] = {.lex_state = 289, .external_lex_state = 86}, + [4207] = {.lex_state = 289, .external_lex_state = 86}, + [4208] = {.lex_state = 289, .external_lex_state = 86}, + [4209] = {.lex_state = 289, .external_lex_state = 86}, + [4210] = {.lex_state = 289, .external_lex_state = 86}, + [4211] = {.lex_state = 289, .external_lex_state = 86}, + [4212] = {.lex_state = 289, .external_lex_state = 86}, + [4213] = {.lex_state = 316, .external_lex_state = 85}, + [4214] = {.lex_state = 316, .external_lex_state = 85}, + [4215] = {.lex_state = 289, .external_lex_state = 86}, + [4216] = {.lex_state = 208, .external_lex_state = 87}, + [4217] = {.lex_state = 65, .external_lex_state = 88}, + [4218] = {.lex_state = 67, .external_lex_state = 89}, + [4219] = {.lex_state = 65, .external_lex_state = 88}, + [4220] = {.lex_state = 65, .external_lex_state = 88}, + [4221] = {.lex_state = 319, .external_lex_state = 90}, + [4222] = {.lex_state = 68, .external_lex_state = 91}, + [4223] = {.lex_state = 67, .external_lex_state = 92}, + [4224] = {.lex_state = 67, .external_lex_state = 92}, + [4225] = {.lex_state = 67, .external_lex_state = 92}, + [4226] = {.lex_state = 65, .external_lex_state = 88}, + [4227] = {.lex_state = 67, .external_lex_state = 92}, + [4228] = {.lex_state = 208, .external_lex_state = 87}, + [4229] = {.lex_state = 68, .external_lex_state = 91}, + [4230] = {.lex_state = 68, .external_lex_state = 63}, + [4231] = {.lex_state = 67, .external_lex_state = 89}, + [4232] = {.lex_state = 67, .external_lex_state = 89}, + [4233] = {.lex_state = 67, .external_lex_state = 93}, + [4234] = {.lex_state = 67, .external_lex_state = 94}, + [4235] = {.lex_state = 67, .external_lex_state = 92}, + [4236] = {.lex_state = 65, .external_lex_state = 88}, + [4237] = {.lex_state = 68, .external_lex_state = 63}, + [4238] = {.lex_state = 68, .external_lex_state = 91}, + [4239] = {.lex_state = 67, .external_lex_state = 94}, + [4240] = {.lex_state = 67, .external_lex_state = 89}, + [4241] = {.lex_state = 65, .external_lex_state = 88}, + [4242] = {.lex_state = 67, .external_lex_state = 89}, + [4243] = {.lex_state = 65, .external_lex_state = 88}, + [4244] = {.lex_state = 521, .external_lex_state = 95}, + [4245] = {.lex_state = 67, .external_lex_state = 89}, + [4246] = {.lex_state = 67, .external_lex_state = 89}, + [4247] = {.lex_state = 67, .external_lex_state = 89}, + [4248] = {.lex_state = 67, .external_lex_state = 89}, + [4249] = {.lex_state = 67, .external_lex_state = 94}, + [4250] = {.lex_state = 67, .external_lex_state = 92}, + [4251] = {.lex_state = 68, .external_lex_state = 91}, + [4252] = {.lex_state = 67, .external_lex_state = 89}, + [4253] = {.lex_state = 519, .external_lex_state = 93}, + [4254] = {.lex_state = 67, .external_lex_state = 94}, + [4255] = {.lex_state = 68, .external_lex_state = 95}, + [4256] = {.lex_state = 68, .external_lex_state = 91}, + [4257] = {.lex_state = 67, .external_lex_state = 89}, + [4258] = {.lex_state = 68, .external_lex_state = 91}, + [4259] = {.lex_state = 68, .external_lex_state = 89}, + [4260] = {.lex_state = 67, .external_lex_state = 89}, + [4261] = {.lex_state = 522, .external_lex_state = 66}, + [4262] = {.lex_state = 67, .external_lex_state = 92}, + [4263] = {.lex_state = 67, .external_lex_state = 89}, + [4264] = {.lex_state = 519, .external_lex_state = 93}, + [4265] = {.lex_state = 67, .external_lex_state = 89}, + [4266] = {.lex_state = 67, .external_lex_state = 93}, + [4267] = {.lex_state = 67, .external_lex_state = 89}, + [4268] = {.lex_state = 521, .external_lex_state = 93}, + [4269] = {.lex_state = 520, .external_lex_state = 94}, + [4270] = {.lex_state = 68, .external_lex_state = 89}, + [4271] = {.lex_state = 68, .external_lex_state = 89}, + [4272] = {.lex_state = 68, .external_lex_state = 89}, + [4273] = {.lex_state = 67, .external_lex_state = 92}, + [4274] = {.lex_state = 67, .external_lex_state = 93}, + [4275] = {.lex_state = 519, .external_lex_state = 93}, + [4276] = {.lex_state = 67, .external_lex_state = 93}, + [4277] = {.lex_state = 520, .external_lex_state = 94}, + [4278] = {.lex_state = 68, .external_lex_state = 92}, + [4279] = {.lex_state = 67, .external_lex_state = 94}, + [4280] = {.lex_state = 519, .external_lex_state = 93}, + [4281] = {.lex_state = 519, .external_lex_state = 94}, + [4282] = {.lex_state = 68, .external_lex_state = 66}, + [4283] = {.lex_state = 68, .external_lex_state = 92}, + [4284] = {.lex_state = 67, .external_lex_state = 93}, + [4285] = {.lex_state = 68, .external_lex_state = 91}, + [4286] = {.lex_state = 68, .external_lex_state = 89}, + [4287] = {.lex_state = 522, .external_lex_state = 66}, + [4288] = {.lex_state = 521, .external_lex_state = 95}, + [4289] = {.lex_state = 520, .external_lex_state = 94}, + [4290] = {.lex_state = 67, .external_lex_state = 92}, + [4291] = {.lex_state = 319, .external_lex_state = 96}, + [4292] = {.lex_state = 68, .external_lex_state = 89}, + [4293] = {.lex_state = 319, .external_lex_state = 96}, + [4294] = {.lex_state = 520, .external_lex_state = 94}, + [4295] = {.lex_state = 67, .external_lex_state = 89}, + [4296] = {.lex_state = 68, .external_lex_state = 89}, + [4297] = {.lex_state = 68, .external_lex_state = 89}, + [4298] = {.lex_state = 67, .external_lex_state = 89}, + [4299] = {.lex_state = 67, .external_lex_state = 93}, + [4300] = {.lex_state = 67, .external_lex_state = 89}, + [4301] = {.lex_state = 67, .external_lex_state = 89}, + [4302] = {.lex_state = 67, .external_lex_state = 89}, + [4303] = {.lex_state = 68, .external_lex_state = 91}, + [4304] = {.lex_state = 68, .external_lex_state = 89}, + [4305] = {.lex_state = 520, .external_lex_state = 94}, + [4306] = {.lex_state = 67, .external_lex_state = 89}, + [4307] = {.lex_state = 67, .external_lex_state = 89}, + [4308] = {.lex_state = 67, .external_lex_state = 89}, + [4309] = {.lex_state = 67, .external_lex_state = 93}, + [4310] = {.lex_state = 67, .external_lex_state = 93}, + [4311] = {.lex_state = 519, .external_lex_state = 93}, + [4312] = {.lex_state = 519, .external_lex_state = 94}, + [4313] = {.lex_state = 521, .external_lex_state = 95}, + [4314] = {.lex_state = 520, .external_lex_state = 94}, + [4315] = {.lex_state = 68, .external_lex_state = 93}, + [4316] = {.lex_state = 521, .external_lex_state = 95}, + [4317] = {.lex_state = 67, .external_lex_state = 89}, + [4318] = {.lex_state = 521, .external_lex_state = 95}, + [4319] = {.lex_state = 67, .external_lex_state = 93}, + [4320] = {.lex_state = 521, .external_lex_state = 95}, + [4321] = {.lex_state = 519, .external_lex_state = 94}, + [4322] = {.lex_state = 68, .external_lex_state = 91}, + [4323] = {.lex_state = 68, .external_lex_state = 91}, + [4324] = {.lex_state = 67, .external_lex_state = 92}, + [4325] = {.lex_state = 68, .external_lex_state = 91}, + [4326] = {.lex_state = 68, .external_lex_state = 91}, + [4327] = {.lex_state = 68, .external_lex_state = 91}, + [4328] = {.lex_state = 67, .external_lex_state = 89}, + [4329] = {.lex_state = 67, .external_lex_state = 89}, + [4330] = {.lex_state = 67, .external_lex_state = 89}, + [4331] = {.lex_state = 67, .external_lex_state = 93}, + [4332] = {.lex_state = 68, .external_lex_state = 91}, + [4333] = {.lex_state = 521, .external_lex_state = 95}, + [4334] = {.lex_state = 521, .external_lex_state = 95}, + [4335] = {.lex_state = 68, .external_lex_state = 91}, + [4336] = {.lex_state = 68, .external_lex_state = 91}, + [4337] = {.lex_state = 519, .external_lex_state = 93}, + [4338] = {.lex_state = 519, .external_lex_state = 93}, + [4339] = {.lex_state = 68, .external_lex_state = 92}, + [4340] = {.lex_state = 68, .external_lex_state = 91}, + [4341] = {.lex_state = 68, .external_lex_state = 92}, + [4342] = {.lex_state = 68, .external_lex_state = 92}, + [4343] = {.lex_state = 68, .external_lex_state = 91}, + [4344] = {.lex_state = 319, .external_lex_state = 96}, + [4345] = {.lex_state = 521, .external_lex_state = 95}, + [4346] = {.lex_state = 67, .external_lex_state = 92}, + [4347] = {.lex_state = 520, .external_lex_state = 94}, + [4348] = {.lex_state = 519, .external_lex_state = 93}, + [4349] = {.lex_state = 68, .external_lex_state = 92}, + [4350] = {.lex_state = 521, .external_lex_state = 95}, + [4351] = {.lex_state = 67, .external_lex_state = 92}, + [4352] = {.lex_state = 67, .external_lex_state = 93}, + [4353] = {.lex_state = 519, .external_lex_state = 94}, + [4354] = {.lex_state = 68, .external_lex_state = 91}, + [4355] = {.lex_state = 68, .external_lex_state = 91}, + [4356] = {.lex_state = 68, .external_lex_state = 91}, + [4357] = {.lex_state = 521, .external_lex_state = 95}, + [4358] = {.lex_state = 68, .external_lex_state = 66}, + [4359] = {.lex_state = 519, .external_lex_state = 93}, + [4360] = {.lex_state = 521, .external_lex_state = 95}, + [4361] = {.lex_state = 521, .external_lex_state = 95}, + [4362] = {.lex_state = 519, .external_lex_state = 93}, + [4363] = {.lex_state = 319, .external_lex_state = 96}, + [4364] = {.lex_state = 68, .external_lex_state = 89}, + [4365] = {.lex_state = 521, .external_lex_state = 95}, + [4366] = {.lex_state = 519, .external_lex_state = 93}, + [4367] = {.lex_state = 519, .external_lex_state = 93}, + [4368] = {.lex_state = 68, .external_lex_state = 63}, + [4369] = {.lex_state = 519, .external_lex_state = 93}, + [4370] = {.lex_state = 68, .external_lex_state = 89}, + [4371] = {.lex_state = 67, .external_lex_state = 94}, + [4372] = {.lex_state = 519, .external_lex_state = 93}, + [4373] = {.lex_state = 521, .external_lex_state = 95}, + [4374] = {.lex_state = 521, .external_lex_state = 95}, + [4375] = {.lex_state = 67, .external_lex_state = 93}, + [4376] = {.lex_state = 519, .external_lex_state = 94}, + [4377] = {.lex_state = 521, .external_lex_state = 95}, + [4378] = {.lex_state = 521, .external_lex_state = 95}, + [4379] = {.lex_state = 519, .external_lex_state = 93}, + [4380] = {.lex_state = 68, .external_lex_state = 95}, + [4381] = {.lex_state = 519, .external_lex_state = 94}, + [4382] = {.lex_state = 67, .external_lex_state = 92}, + [4383] = {.lex_state = 68, .external_lex_state = 63}, + [4384] = {.lex_state = 68, .external_lex_state = 91}, + [4385] = {.lex_state = 68, .external_lex_state = 91}, + [4386] = {.lex_state = 519, .external_lex_state = 93}, + [4387] = {.lex_state = 67, .external_lex_state = 92}, + [4388] = {.lex_state = 67, .external_lex_state = 89}, + [4389] = {.lex_state = 519, .external_lex_state = 93}, + [4390] = {.lex_state = 68, .external_lex_state = 95}, + [4391] = {.lex_state = 519, .external_lex_state = 93}, + [4392] = {.lex_state = 519, .external_lex_state = 93}, + [4393] = {.lex_state = 521, .external_lex_state = 95}, + [4394] = {.lex_state = 520, .external_lex_state = 94}, + [4395] = {.lex_state = 519, .external_lex_state = 93}, + [4396] = {.lex_state = 519, .external_lex_state = 94}, + [4397] = {.lex_state = 520, .external_lex_state = 94}, + [4398] = {.lex_state = 521, .external_lex_state = 95}, + [4399] = {.lex_state = 67, .external_lex_state = 89}, + [4400] = {.lex_state = 519, .external_lex_state = 94}, + [4401] = {.lex_state = 519, .external_lex_state = 93}, + [4402] = {.lex_state = 521, .external_lex_state = 95}, + [4403] = {.lex_state = 519, .external_lex_state = 93}, + [4404] = {.lex_state = 67, .external_lex_state = 89}, + [4405] = {.lex_state = 68, .external_lex_state = 91}, + [4406] = {.lex_state = 68, .external_lex_state = 89}, + [4407] = {.lex_state = 521, .external_lex_state = 95}, + [4408] = {.lex_state = 521, .external_lex_state = 95}, + [4409] = {.lex_state = 67, .external_lex_state = 89}, + [4410] = {.lex_state = 68, .external_lex_state = 95}, + [4411] = {.lex_state = 519, .external_lex_state = 93}, + [4412] = {.lex_state = 68, .external_lex_state = 91}, + [4413] = {.lex_state = 68, .external_lex_state = 95}, + [4414] = {.lex_state = 68, .external_lex_state = 95}, + [4415] = {.lex_state = 519, .external_lex_state = 94}, + [4416] = {.lex_state = 68, .external_lex_state = 94}, + [4417] = {.lex_state = 68, .external_lex_state = 89}, + [4418] = {.lex_state = 519, .external_lex_state = 93}, + [4419] = {.lex_state = 68, .external_lex_state = 95}, + [4420] = {.lex_state = 67, .external_lex_state = 94}, + [4421] = {.lex_state = 522, .external_lex_state = 94}, + [4422] = {.lex_state = 238, .external_lex_state = 97}, + [4423] = {.lex_state = 520, .external_lex_state = 94}, + [4424] = {.lex_state = 67, .external_lex_state = 93}, + [4425] = {.lex_state = 67, .external_lex_state = 93}, + [4426] = {.lex_state = 67, .external_lex_state = 93}, + [4427] = {.lex_state = 67, .external_lex_state = 93}, + [4428] = {.lex_state = 68, .external_lex_state = 94}, + [4429] = {.lex_state = 521, .external_lex_state = 93}, + [4430] = {.lex_state = 68, .external_lex_state = 93}, + [4431] = {.lex_state = 68, .external_lex_state = 66}, + [4432] = {.lex_state = 67, .external_lex_state = 93}, + [4433] = {.lex_state = 68, .external_lex_state = 94}, + [4434] = {.lex_state = 68, .external_lex_state = 95}, + [4435] = {.lex_state = 68, .external_lex_state = 95}, + [4436] = {.lex_state = 68, .external_lex_state = 95}, + [4437] = {.lex_state = 68, .external_lex_state = 95}, + [4438] = {.lex_state = 67, .external_lex_state = 93}, + [4439] = {.lex_state = 521, .external_lex_state = 66}, + [4440] = {.lex_state = 519, .external_lex_state = 93}, + [4441] = {.lex_state = 68, .external_lex_state = 95}, + [4442] = {.lex_state = 68, .external_lex_state = 89}, + [4443] = {.lex_state = 67, .external_lex_state = 93}, + [4444] = {.lex_state = 67, .external_lex_state = 93}, + [4445] = {.lex_state = 67, .external_lex_state = 93}, + [4446] = {.lex_state = 67, .external_lex_state = 93}, + [4447] = {.lex_state = 68, .external_lex_state = 95}, + [4448] = {.lex_state = 68, .external_lex_state = 95}, + [4449] = {.lex_state = 68, .external_lex_state = 95}, + [4450] = {.lex_state = 519, .external_lex_state = 93}, + [4451] = {.lex_state = 521, .external_lex_state = 93}, + [4452] = {.lex_state = 519, .external_lex_state = 93}, + [4453] = {.lex_state = 68, .external_lex_state = 93}, + [4454] = {.lex_state = 67, .external_lex_state = 93}, + [4455] = {.lex_state = 68, .external_lex_state = 94}, + [4456] = {.lex_state = 521, .external_lex_state = 93}, + [4457] = {.lex_state = 68, .external_lex_state = 95}, + [4458] = {.lex_state = 238, .external_lex_state = 97}, + [4459] = {.lex_state = 519, .external_lex_state = 93}, + [4460] = {.lex_state = 238, .external_lex_state = 97}, + [4461] = {.lex_state = 68, .external_lex_state = 89}, + [4462] = {.lex_state = 68, .external_lex_state = 92}, + [4463] = {.lex_state = 519, .external_lex_state = 93}, + [4464] = {.lex_state = 67, .external_lex_state = 93}, + [4465] = {.lex_state = 68, .external_lex_state = 94}, + [4466] = {.lex_state = 519, .external_lex_state = 93}, + [4467] = {.lex_state = 519, .external_lex_state = 93}, + [4468] = {.lex_state = 68, .external_lex_state = 93}, + [4469] = {.lex_state = 68, .external_lex_state = 89}, + [4470] = {.lex_state = 68, .external_lex_state = 89}, + [4471] = {.lex_state = 68, .external_lex_state = 93}, + [4472] = {.lex_state = 519, .external_lex_state = 93}, + [4473] = {.lex_state = 521, .external_lex_state = 93}, + [4474] = {.lex_state = 68, .external_lex_state = 89}, + [4475] = {.lex_state = 521, .external_lex_state = 93}, + [4476] = {.lex_state = 519, .external_lex_state = 93}, + [4477] = {.lex_state = 519, .external_lex_state = 93}, + [4478] = {.lex_state = 68, .external_lex_state = 95}, + [4479] = {.lex_state = 519, .external_lex_state = 93}, + [4480] = {.lex_state = 519, .external_lex_state = 94}, + [4481] = {.lex_state = 519, .external_lex_state = 93}, + [4482] = {.lex_state = 67, .external_lex_state = 93}, + [4483] = {.lex_state = 68, .external_lex_state = 92}, + [4484] = {.lex_state = 519, .external_lex_state = 93}, + [4485] = {.lex_state = 522, .external_lex_state = 94}, + [4486] = {.lex_state = 519, .external_lex_state = 93}, + [4487] = {.lex_state = 521, .external_lex_state = 95}, + [4488] = {.lex_state = 519, .external_lex_state = 93}, + [4489] = {.lex_state = 519, .external_lex_state = 94}, + [4490] = {.lex_state = 68, .external_lex_state = 95}, + [4491] = {.lex_state = 238, .external_lex_state = 97}, + [4492] = {.lex_state = 67, .external_lex_state = 94}, + [4493] = {.lex_state = 67, .external_lex_state = 93}, + [4494] = {.lex_state = 67, .external_lex_state = 93}, + [4495] = {.lex_state = 519, .external_lex_state = 93}, + [4496] = {.lex_state = 68, .external_lex_state = 89}, + [4497] = {.lex_state = 68, .external_lex_state = 89}, + [4498] = {.lex_state = 67, .external_lex_state = 94}, + [4499] = {.lex_state = 68, .external_lex_state = 95}, + [4500] = {.lex_state = 522, .external_lex_state = 94}, + [4501] = {.lex_state = 68, .external_lex_state = 89}, + [4502] = {.lex_state = 68, .external_lex_state = 89}, + [4503] = {.lex_state = 522, .external_lex_state = 66}, + [4504] = {.lex_state = 68, .external_lex_state = 93}, + [4505] = {.lex_state = 521, .external_lex_state = 95}, + [4506] = {.lex_state = 68, .external_lex_state = 93}, + [4507] = {.lex_state = 68, .external_lex_state = 92}, + [4508] = {.lex_state = 68, .external_lex_state = 95}, + [4509] = {.lex_state = 319, .external_lex_state = 76}, + [4510] = {.lex_state = 519, .external_lex_state = 93}, + [4511] = {.lex_state = 521, .external_lex_state = 95}, + [4512] = {.lex_state = 68, .external_lex_state = 89}, + [4513] = {.lex_state = 519, .external_lex_state = 93}, + [4514] = {.lex_state = 521, .external_lex_state = 95}, + [4515] = {.lex_state = 521, .external_lex_state = 93}, + [4516] = {.lex_state = 68, .external_lex_state = 89}, + [4517] = {.lex_state = 519, .external_lex_state = 94}, + [4518] = {.lex_state = 519, .external_lex_state = 93}, + [4519] = {.lex_state = 521, .external_lex_state = 66}, + [4520] = {.lex_state = 238, .external_lex_state = 97}, + [4521] = {.lex_state = 522, .external_lex_state = 94}, + [4522] = {.lex_state = 519, .external_lex_state = 93}, + [4523] = {.lex_state = 519, .external_lex_state = 93}, + [4524] = {.lex_state = 521, .external_lex_state = 93}, + [4525] = {.lex_state = 521, .external_lex_state = 95}, + [4526] = {.lex_state = 68, .external_lex_state = 95}, + [4527] = {.lex_state = 67, .external_lex_state = 94}, + [4528] = {.lex_state = 68, .external_lex_state = 94}, + [4529] = {.lex_state = 519, .external_lex_state = 93}, + [4530] = {.lex_state = 519, .external_lex_state = 94}, + [4531] = {.lex_state = 521, .external_lex_state = 95}, + [4532] = {.lex_state = 68, .external_lex_state = 89}, + [4533] = {.lex_state = 68, .external_lex_state = 66}, + [4534] = {.lex_state = 521, .external_lex_state = 66}, + [4535] = {.lex_state = 521, .external_lex_state = 95}, + [4536] = {.lex_state = 521, .external_lex_state = 93}, + [4537] = {.lex_state = 521, .external_lex_state = 93}, + [4538] = {.lex_state = 68, .external_lex_state = 92}, + [4539] = {.lex_state = 68, .external_lex_state = 89}, + [4540] = {.lex_state = 521, .external_lex_state = 93}, + [4541] = {.lex_state = 319, .external_lex_state = 76}, + [4542] = {.lex_state = 319, .external_lex_state = 76}, + [4543] = {.lex_state = 521, .external_lex_state = 93}, + [4544] = {.lex_state = 521, .external_lex_state = 93}, + [4545] = {.lex_state = 521, .external_lex_state = 93}, + [4546] = {.lex_state = 522, .external_lex_state = 94}, + [4547] = {.lex_state = 520, .external_lex_state = 94}, + [4548] = {.lex_state = 521, .external_lex_state = 93}, + [4549] = {.lex_state = 67, .external_lex_state = 94}, + [4550] = {.lex_state = 521, .external_lex_state = 95}, + [4551] = {.lex_state = 519, .external_lex_state = 94}, + [4552] = {.lex_state = 68, .external_lex_state = 89}, + [4553] = {.lex_state = 68, .external_lex_state = 89}, + [4554] = {.lex_state = 68, .external_lex_state = 92}, + [4555] = {.lex_state = 68, .external_lex_state = 93}, + [4556] = {.lex_state = 68, .external_lex_state = 95}, + [4557] = {.lex_state = 68, .external_lex_state = 95}, + [4558] = {.lex_state = 238, .external_lex_state = 97}, + [4559] = {.lex_state = 521, .external_lex_state = 95}, + [4560] = {.lex_state = 68, .external_lex_state = 89}, + [4561] = {.lex_state = 521, .external_lex_state = 93}, + [4562] = {.lex_state = 68, .external_lex_state = 93}, + [4563] = {.lex_state = 68, .external_lex_state = 63}, + [4564] = {.lex_state = 521, .external_lex_state = 93}, + [4565] = {.lex_state = 519, .external_lex_state = 94}, + [4566] = {.lex_state = 521, .external_lex_state = 93}, + [4567] = {.lex_state = 519, .external_lex_state = 94}, + [4568] = {.lex_state = 522, .external_lex_state = 66}, + [4569] = {.lex_state = 521, .external_lex_state = 93}, + [4570] = {.lex_state = 519, .external_lex_state = 94}, + [4571] = {.lex_state = 519, .external_lex_state = 94}, + [4572] = {.lex_state = 68, .external_lex_state = 89}, + [4573] = {.lex_state = 520, .external_lex_state = 94}, + [4574] = {.lex_state = 521, .external_lex_state = 66}, + [4575] = {.lex_state = 67, .external_lex_state = 93}, + [4576] = {.lex_state = 67, .external_lex_state = 93}, + [4577] = {.lex_state = 67, .external_lex_state = 92}, + [4578] = {.lex_state = 521, .external_lex_state = 93}, + [4579] = {.lex_state = 68, .external_lex_state = 93}, + [4580] = {.lex_state = 67, .external_lex_state = 94}, + [4581] = {.lex_state = 522, .external_lex_state = 66}, + [4582] = {.lex_state = 519, .external_lex_state = 93}, + [4583] = {.lex_state = 519, .external_lex_state = 93}, + [4584] = {.lex_state = 519, .external_lex_state = 93}, + [4585] = {.lex_state = 521, .external_lex_state = 95}, + [4586] = {.lex_state = 521, .external_lex_state = 95}, + [4587] = {.lex_state = 68, .external_lex_state = 95}, + [4588] = {.lex_state = 67, .external_lex_state = 93}, + [4589] = {.lex_state = 68, .external_lex_state = 93}, + [4590] = {.lex_state = 67, .external_lex_state = 93}, + [4591] = {.lex_state = 519, .external_lex_state = 93}, + [4592] = {.lex_state = 519, .external_lex_state = 93}, + [4593] = {.lex_state = 521, .external_lex_state = 93}, + [4594] = {.lex_state = 521, .external_lex_state = 95}, + [4595] = {.lex_state = 68, .external_lex_state = 95}, + [4596] = {.lex_state = 67, .external_lex_state = 94}, + [4597] = {.lex_state = 67, .external_lex_state = 94}, + [4598] = {.lex_state = 521, .external_lex_state = 93}, + [4599] = {.lex_state = 519, .external_lex_state = 93}, + [4600] = {.lex_state = 68, .external_lex_state = 89}, + [4601] = {.lex_state = 68, .external_lex_state = 93}, + [4602] = {.lex_state = 519, .external_lex_state = 93}, + [4603] = {.lex_state = 521, .external_lex_state = 95}, + [4604] = {.lex_state = 519, .external_lex_state = 93}, + [4605] = {.lex_state = 319, .external_lex_state = 76}, + [4606] = {.lex_state = 521, .external_lex_state = 93}, + [4607] = {.lex_state = 67, .external_lex_state = 92}, + [4608] = {.lex_state = 521, .external_lex_state = 94}, + [4609] = {.lex_state = 520, .external_lex_state = 94}, + [4610] = {.lex_state = 520, .external_lex_state = 94}, + [4611] = {.lex_state = 521, .external_lex_state = 93}, + [4612] = {.lex_state = 520, .external_lex_state = 94}, + [4613] = {.lex_state = 67, .external_lex_state = 92}, + [4614] = {.lex_state = 521, .external_lex_state = 93}, + [4615] = {.lex_state = 520, .external_lex_state = 94}, + [4616] = {.lex_state = 68, .external_lex_state = 92}, + [4617] = {.lex_state = 520, .external_lex_state = 94}, + [4618] = {.lex_state = 68, .external_lex_state = 93}, + [4619] = {.lex_state = 521, .external_lex_state = 93}, + [4620] = {.lex_state = 68, .external_lex_state = 92}, + [4621] = {.lex_state = 521, .external_lex_state = 93}, + [4622] = {.lex_state = 521, .external_lex_state = 93}, + [4623] = {.lex_state = 520, .external_lex_state = 94}, + [4624] = {.lex_state = 294, .external_lex_state = 98}, + [4625] = {.lex_state = 519, .external_lex_state = 94}, + [4626] = {.lex_state = 521, .external_lex_state = 93}, + [4627] = {.lex_state = 521, .external_lex_state = 93}, + [4628] = {.lex_state = 238, .external_lex_state = 97}, + [4629] = {.lex_state = 294, .external_lex_state = 98}, + [4630] = {.lex_state = 521, .external_lex_state = 93}, + [4631] = {.lex_state = 238, .external_lex_state = 97}, + [4632] = {.lex_state = 67, .external_lex_state = 92}, + [4633] = {.lex_state = 521, .external_lex_state = 93}, + [4634] = {.lex_state = 521, .external_lex_state = 93}, + [4635] = {.lex_state = 521, .external_lex_state = 93}, + [4636] = {.lex_state = 522, .external_lex_state = 66}, + [4637] = {.lex_state = 68, .external_lex_state = 93}, + [4638] = {.lex_state = 68, .external_lex_state = 93}, + [4639] = {.lex_state = 68, .external_lex_state = 63}, + [4640] = {.lex_state = 521, .external_lex_state = 93}, + [4641] = {.lex_state = 294, .external_lex_state = 98}, + [4642] = {.lex_state = 520, .external_lex_state = 94}, + [4643] = {.lex_state = 67, .external_lex_state = 92}, + [4644] = {.lex_state = 519, .external_lex_state = 94}, + [4645] = {.lex_state = 68, .external_lex_state = 94}, + [4646] = {.lex_state = 312, .external_lex_state = 99}, + [4647] = {.lex_state = 67, .external_lex_state = 92}, + [4648] = {.lex_state = 67, .external_lex_state = 92}, + [4649] = {.lex_state = 294, .external_lex_state = 98}, + [4650] = {.lex_state = 521, .external_lex_state = 94}, + [4651] = {.lex_state = 312, .external_lex_state = 99}, + [4652] = {.lex_state = 294, .external_lex_state = 98}, + [4653] = {.lex_state = 238, .external_lex_state = 97}, + [4654] = {.lex_state = 294, .external_lex_state = 98}, + [4655] = {.lex_state = 520, .external_lex_state = 94}, + [4656] = {.lex_state = 68, .external_lex_state = 93}, + [4657] = {.lex_state = 294, .external_lex_state = 98}, + [4658] = {.lex_state = 294, .external_lex_state = 98}, + [4659] = {.lex_state = 519, .external_lex_state = 94}, + [4660] = {.lex_state = 294, .external_lex_state = 98}, + [4661] = {.lex_state = 294, .external_lex_state = 98}, + [4662] = {.lex_state = 522, .external_lex_state = 94}, + [4663] = {.lex_state = 521, .external_lex_state = 94}, + [4664] = {.lex_state = 68, .external_lex_state = 92}, + [4665] = {.lex_state = 519, .external_lex_state = 94}, + [4666] = {.lex_state = 520, .external_lex_state = 94}, + [4667] = {.lex_state = 519, .external_lex_state = 94}, + [4668] = {.lex_state = 294, .external_lex_state = 98}, + [4669] = {.lex_state = 521, .external_lex_state = 93}, + [4670] = {.lex_state = 238, .external_lex_state = 97}, + [4671] = {.lex_state = 294, .external_lex_state = 98}, + [4672] = {.lex_state = 294, .external_lex_state = 98}, + [4673] = {.lex_state = 521, .external_lex_state = 93}, + [4674] = {.lex_state = 521, .external_lex_state = 93}, + [4675] = {.lex_state = 294, .external_lex_state = 98}, + [4676] = {.lex_state = 294, .external_lex_state = 98}, + [4677] = {.lex_state = 294, .external_lex_state = 98}, + [4678] = {.lex_state = 294, .external_lex_state = 98}, + [4679] = {.lex_state = 294, .external_lex_state = 98}, + [4680] = {.lex_state = 294, .external_lex_state = 98}, + [4681] = {.lex_state = 294, .external_lex_state = 98}, + [4682] = {.lex_state = 294, .external_lex_state = 98}, + [4683] = {.lex_state = 521, .external_lex_state = 93}, + [4684] = {.lex_state = 521, .external_lex_state = 93}, + [4685] = {.lex_state = 519, .external_lex_state = 94}, + [4686] = {.lex_state = 294, .external_lex_state = 98}, + [4687] = {.lex_state = 521, .external_lex_state = 93}, + [4688] = {.lex_state = 522, .external_lex_state = 66}, + [4689] = {.lex_state = 521, .external_lex_state = 93}, + [4690] = {.lex_state = 294, .external_lex_state = 98}, + [4691] = {.lex_state = 294, .external_lex_state = 98}, + [4692] = {.lex_state = 521, .external_lex_state = 93}, + [4693] = {.lex_state = 294, .external_lex_state = 98}, + [4694] = {.lex_state = 294, .external_lex_state = 98}, + [4695] = {.lex_state = 68, .external_lex_state = 94}, + [4696] = {.lex_state = 294, .external_lex_state = 98}, + [4697] = {.lex_state = 522, .external_lex_state = 94}, + [4698] = {.lex_state = 521, .external_lex_state = 93}, + [4699] = {.lex_state = 521, .external_lex_state = 93}, + [4700] = {.lex_state = 312, .external_lex_state = 99}, + [4701] = {.lex_state = 68, .external_lex_state = 93}, + [4702] = {.lex_state = 520, .external_lex_state = 94}, + [4703] = {.lex_state = 294, .external_lex_state = 98}, + [4704] = {.lex_state = 68, .external_lex_state = 94}, + [4705] = {.lex_state = 521, .external_lex_state = 93}, + [4706] = {.lex_state = 68, .external_lex_state = 93}, + [4707] = {.lex_state = 294, .external_lex_state = 98}, + [4708] = {.lex_state = 238, .external_lex_state = 97}, + [4709] = {.lex_state = 67, .external_lex_state = 92}, + [4710] = {.lex_state = 521, .external_lex_state = 94}, + [4711] = {.lex_state = 521, .external_lex_state = 93}, + [4712] = {.lex_state = 67, .external_lex_state = 92}, + [4713] = {.lex_state = 294, .external_lex_state = 98}, + [4714] = {.lex_state = 294, .external_lex_state = 98}, + [4715] = {.lex_state = 294, .external_lex_state = 98}, + [4716] = {.lex_state = 521, .external_lex_state = 94}, + [4717] = {.lex_state = 521, .external_lex_state = 94}, + [4718] = {.lex_state = 294, .external_lex_state = 98}, + [4719] = {.lex_state = 520, .external_lex_state = 94}, + [4720] = {.lex_state = 294, .external_lex_state = 98}, + [4721] = {.lex_state = 312, .external_lex_state = 99}, + [4722] = {.lex_state = 522, .external_lex_state = 94}, + [4723] = {.lex_state = 519, .external_lex_state = 94}, + [4724] = {.lex_state = 522, .external_lex_state = 94}, + [4725] = {.lex_state = 522, .external_lex_state = 94}, + [4726] = {.lex_state = 68, .external_lex_state = 66}, + [4727] = {.lex_state = 520, .external_lex_state = 94}, + [4728] = {.lex_state = 294, .external_lex_state = 98}, + [4729] = {.lex_state = 294, .external_lex_state = 98}, + [4730] = {.lex_state = 294, .external_lex_state = 98}, + [4731] = {.lex_state = 294, .external_lex_state = 98}, + [4732] = {.lex_state = 294, .external_lex_state = 98}, + [4733] = {.lex_state = 521, .external_lex_state = 93}, + [4734] = {.lex_state = 521, .external_lex_state = 94}, + [4735] = {.lex_state = 238, .external_lex_state = 97}, + [4736] = {.lex_state = 520, .external_lex_state = 94}, + [4737] = {.lex_state = 294, .external_lex_state = 98}, + [4738] = {.lex_state = 294, .external_lex_state = 98}, + [4739] = {.lex_state = 68, .external_lex_state = 93}, + [4740] = {.lex_state = 294, .external_lex_state = 98}, + [4741] = {.lex_state = 312, .external_lex_state = 99}, + [4742] = {.lex_state = 312, .external_lex_state = 99}, + [4743] = {.lex_state = 312, .external_lex_state = 99}, + [4744] = {.lex_state = 294, .external_lex_state = 98}, + [4745] = {.lex_state = 521, .external_lex_state = 94}, + [4746] = {.lex_state = 521, .external_lex_state = 94}, + [4747] = {.lex_state = 520, .external_lex_state = 94}, + [4748] = {.lex_state = 521, .external_lex_state = 93}, + [4749] = {.lex_state = 294, .external_lex_state = 98}, + [4750] = {.lex_state = 519, .external_lex_state = 93}, + [4751] = {.lex_state = 294, .external_lex_state = 98}, + [4752] = {.lex_state = 294, .external_lex_state = 98}, + [4753] = {.lex_state = 68, .external_lex_state = 93}, + [4754] = {.lex_state = 519, .external_lex_state = 93}, + [4755] = {.lex_state = 67, .external_lex_state = 92}, + [4756] = {.lex_state = 294, .external_lex_state = 98}, + [4757] = {.lex_state = 312, .external_lex_state = 99}, + [4758] = {.lex_state = 520, .external_lex_state = 94}, + [4759] = {.lex_state = 522, .external_lex_state = 66}, + [4760] = {.lex_state = 521, .external_lex_state = 93}, + [4761] = {.lex_state = 294, .external_lex_state = 98}, + [4762] = {.lex_state = 68, .external_lex_state = 93}, + [4763] = {.lex_state = 294, .external_lex_state = 98}, + [4764] = {.lex_state = 294, .external_lex_state = 98}, + [4765] = {.lex_state = 294, .external_lex_state = 98}, + [4766] = {.lex_state = 238, .external_lex_state = 97}, + [4767] = {.lex_state = 68, .external_lex_state = 94}, + [4768] = {.lex_state = 294, .external_lex_state = 98}, + [4769] = {.lex_state = 520, .external_lex_state = 94}, + [4770] = {.lex_state = 68, .external_lex_state = 93}, + [4771] = {.lex_state = 521, .external_lex_state = 93}, + [4772] = {.lex_state = 67, .external_lex_state = 94}, + [4773] = {.lex_state = 294, .external_lex_state = 98}, + [4774] = {.lex_state = 521, .external_lex_state = 93}, + [4775] = {.lex_state = 521, .external_lex_state = 95}, + [4776] = {.lex_state = 519, .external_lex_state = 93}, + [4777] = {.lex_state = 519, .external_lex_state = 93}, + [4778] = {.lex_state = 521, .external_lex_state = 94}, + [4779] = {.lex_state = 294, .external_lex_state = 98}, + [4780] = {.lex_state = 68, .external_lex_state = 93}, + [4781] = {.lex_state = 521, .external_lex_state = 95}, + [4782] = {.lex_state = 520, .external_lex_state = 94}, + [4783] = {.lex_state = 521, .external_lex_state = 95}, + [4784] = {.lex_state = 521, .external_lex_state = 66}, + [4785] = {.lex_state = 67, .external_lex_state = 92}, + [4786] = {.lex_state = 67, .external_lex_state = 92}, + [4787] = {.lex_state = 521, .external_lex_state = 66}, + [4788] = {.lex_state = 68, .external_lex_state = 92}, + [4789] = {.lex_state = 67, .external_lex_state = 92}, + [4790] = {.lex_state = 68, .external_lex_state = 93}, + [4791] = {.lex_state = 294, .external_lex_state = 98}, + [4792] = {.lex_state = 68, .external_lex_state = 92}, + [4793] = {.lex_state = 522, .external_lex_state = 94}, + [4794] = {.lex_state = 522, .external_lex_state = 94}, + [4795] = {.lex_state = 521, .external_lex_state = 93}, + [4796] = {.lex_state = 68, .external_lex_state = 93}, + [4797] = {.lex_state = 521, .external_lex_state = 94}, + [4798] = {.lex_state = 294, .external_lex_state = 98}, + [4799] = {.lex_state = 294, .external_lex_state = 98}, + [4800] = {.lex_state = 294, .external_lex_state = 98}, + [4801] = {.lex_state = 238, .external_lex_state = 97}, + [4802] = {.lex_state = 521, .external_lex_state = 95}, + [4803] = {.lex_state = 312, .external_lex_state = 99}, + [4804] = {.lex_state = 68, .external_lex_state = 63}, + [4805] = {.lex_state = 68, .external_lex_state = 93}, + [4806] = {.lex_state = 519, .external_lex_state = 93}, + [4807] = {.lex_state = 238, .external_lex_state = 97}, + [4808] = {.lex_state = 238, .external_lex_state = 97}, + [4809] = {.lex_state = 294, .external_lex_state = 98}, + [4810] = {.lex_state = 238, .external_lex_state = 97}, + [4811] = {.lex_state = 238, .external_lex_state = 97}, + [4812] = {.lex_state = 238, .external_lex_state = 97}, + [4813] = {.lex_state = 294, .external_lex_state = 98}, + [4814] = {.lex_state = 294, .external_lex_state = 98}, + [4815] = {.lex_state = 294, .external_lex_state = 98}, + [4816] = {.lex_state = 519, .external_lex_state = 93}, + [4817] = {.lex_state = 294, .external_lex_state = 98}, + [4818] = {.lex_state = 67, .external_lex_state = 92}, + [4819] = {.lex_state = 294, .external_lex_state = 98}, + [4820] = {.lex_state = 67, .external_lex_state = 92}, + [4821] = {.lex_state = 67, .external_lex_state = 92}, + [4822] = {.lex_state = 519, .external_lex_state = 93}, + [4823] = {.lex_state = 294, .external_lex_state = 98}, + [4824] = {.lex_state = 68, .external_lex_state = 92}, + [4825] = {.lex_state = 238, .external_lex_state = 97}, + [4826] = {.lex_state = 294, .external_lex_state = 98}, + [4827] = {.lex_state = 67, .external_lex_state = 92}, + [4828] = {.lex_state = 521, .external_lex_state = 93}, + [4829] = {.lex_state = 519, .external_lex_state = 94}, + [4830] = {.lex_state = 294, .external_lex_state = 98}, + [4831] = {.lex_state = 68, .external_lex_state = 93}, + [4832] = {.lex_state = 294, .external_lex_state = 98}, + [4833] = {.lex_state = 238, .external_lex_state = 97}, + [4834] = {.lex_state = 519, .external_lex_state = 93}, + [4835] = {.lex_state = 519, .external_lex_state = 93}, + [4836] = {.lex_state = 294, .external_lex_state = 98}, + [4837] = {.lex_state = 238, .external_lex_state = 97}, + [4838] = {.lex_state = 519, .external_lex_state = 93}, + [4839] = {.lex_state = 294, .external_lex_state = 98}, + [4840] = {.lex_state = 68, .external_lex_state = 63}, + [4841] = {.lex_state = 294, .external_lex_state = 98}, + [4842] = {.lex_state = 238, .external_lex_state = 97}, + [4843] = {.lex_state = 294, .external_lex_state = 98}, + [4844] = {.lex_state = 67, .external_lex_state = 92}, + [4845] = {.lex_state = 294, .external_lex_state = 98}, + [4846] = {.lex_state = 522, .external_lex_state = 94}, + [4847] = {.lex_state = 238, .external_lex_state = 97}, + [4848] = {.lex_state = 294, .external_lex_state = 98}, + [4849] = {.lex_state = 68, .external_lex_state = 93}, + [4850] = {.lex_state = 294, .external_lex_state = 98}, + [4851] = {.lex_state = 294, .external_lex_state = 98}, + [4852] = {.lex_state = 68, .external_lex_state = 93}, + [4853] = {.lex_state = 68, .external_lex_state = 93}, + [4854] = {.lex_state = 294, .external_lex_state = 98}, + [4855] = {.lex_state = 68, .external_lex_state = 94}, + [4856] = {.lex_state = 520, .external_lex_state = 94}, + [4857] = {.lex_state = 294, .external_lex_state = 98}, + [4858] = {.lex_state = 520, .external_lex_state = 94}, + [4859] = {.lex_state = 68, .external_lex_state = 93}, + [4860] = {.lex_state = 521, .external_lex_state = 94}, + [4861] = {.lex_state = 520, .external_lex_state = 94}, + [4862] = {.lex_state = 238, .external_lex_state = 97}, + [4863] = {.lex_state = 294, .external_lex_state = 98}, + [4864] = {.lex_state = 67, .external_lex_state = 94}, + [4865] = {.lex_state = 522, .external_lex_state = 94}, + [4866] = {.lex_state = 68, .external_lex_state = 92}, + [4867] = {.lex_state = 68, .external_lex_state = 92}, + [4868] = {.lex_state = 522, .external_lex_state = 94}, + [4869] = {.lex_state = 522, .external_lex_state = 94}, + [4870] = {.lex_state = 68, .external_lex_state = 66}, + [4871] = {.lex_state = 522, .external_lex_state = 94}, + [4872] = {.lex_state = 68, .external_lex_state = 92}, + [4873] = {.lex_state = 522, .external_lex_state = 94}, + [4874] = {.lex_state = 522, .external_lex_state = 94}, + [4875] = {.lex_state = 522, .external_lex_state = 94}, + [4876] = {.lex_state = 522, .external_lex_state = 94}, + [4877] = {.lex_state = 522, .external_lex_state = 94}, + [4878] = {.lex_state = 68, .external_lex_state = 92}, + [4879] = {.lex_state = 68, .external_lex_state = 92}, + [4880] = {.lex_state = 68, .external_lex_state = 92}, + [4881] = {.lex_state = 68, .external_lex_state = 92}, + [4882] = {.lex_state = 68, .external_lex_state = 92}, + [4883] = {.lex_state = 68, .external_lex_state = 92}, + [4884] = {.lex_state = 68, .external_lex_state = 92}, + [4885] = {.lex_state = 67, .external_lex_state = 94}, + [4886] = {.lex_state = 522, .external_lex_state = 94}, + [4887] = {.lex_state = 522, .external_lex_state = 94}, + [4888] = {.lex_state = 68, .external_lex_state = 92}, + [4889] = {.lex_state = 68, .external_lex_state = 92}, + [4890] = {.lex_state = 68, .external_lex_state = 92}, + [4891] = {.lex_state = 312, .external_lex_state = 99}, + [4892] = {.lex_state = 522, .external_lex_state = 94}, + [4893] = {.lex_state = 67, .external_lex_state = 94}, + [4894] = {.lex_state = 68, .external_lex_state = 92}, + [4895] = {.lex_state = 522, .external_lex_state = 94}, + [4896] = {.lex_state = 521, .external_lex_state = 93}, + [4897] = {.lex_state = 521, .external_lex_state = 93}, + [4898] = {.lex_state = 522, .external_lex_state = 94}, + [4899] = {.lex_state = 68, .external_lex_state = 92}, + [4900] = {.lex_state = 522, .external_lex_state = 94}, + [4901] = {.lex_state = 521, .external_lex_state = 93}, + [4902] = {.lex_state = 67, .external_lex_state = 94}, + [4903] = {.lex_state = 522, .external_lex_state = 94}, + [4904] = {.lex_state = 68, .external_lex_state = 94}, + [4905] = {.lex_state = 522, .external_lex_state = 94}, + [4906] = {.lex_state = 521, .external_lex_state = 93}, + [4907] = {.lex_state = 522, .external_lex_state = 94}, + [4908] = {.lex_state = 68, .external_lex_state = 92}, + [4909] = {.lex_state = 522, .external_lex_state = 94}, + [4910] = {.lex_state = 68, .external_lex_state = 94}, + [4911] = {.lex_state = 522, .external_lex_state = 94}, + [4912] = {.lex_state = 522, .external_lex_state = 94}, + [4913] = {.lex_state = 68, .external_lex_state = 94}, + [4914] = {.lex_state = 67, .external_lex_state = 94}, + [4915] = {.lex_state = 522, .external_lex_state = 94}, + [4916] = {.lex_state = 68, .external_lex_state = 92}, + [4917] = {.lex_state = 67, .external_lex_state = 94}, + [4918] = {.lex_state = 312, .external_lex_state = 99}, + [4919] = {.lex_state = 521, .external_lex_state = 93}, + [4920] = {.lex_state = 522, .external_lex_state = 94}, + [4921] = {.lex_state = 521, .external_lex_state = 93}, + [4922] = {.lex_state = 68, .external_lex_state = 92}, + [4923] = {.lex_state = 68, .external_lex_state = 92}, + [4924] = {.lex_state = 312, .external_lex_state = 99}, + [4925] = {.lex_state = 68, .external_lex_state = 66}, + [4926] = {.lex_state = 68, .external_lex_state = 92}, + [4927] = {.lex_state = 68, .external_lex_state = 92}, + [4928] = {.lex_state = 521, .external_lex_state = 94}, + [4929] = {.lex_state = 68, .external_lex_state = 92}, + [4930] = {.lex_state = 68, .external_lex_state = 92}, + [4931] = {.lex_state = 522, .external_lex_state = 94}, + [4932] = {.lex_state = 68, .external_lex_state = 92}, + [4933] = {.lex_state = 68, .external_lex_state = 92}, + [4934] = {.lex_state = 312, .external_lex_state = 99}, + [4935] = {.lex_state = 522, .external_lex_state = 94}, + [4936] = {.lex_state = 68, .external_lex_state = 92}, + [4937] = {.lex_state = 68, .external_lex_state = 92}, + [4938] = {.lex_state = 522, .external_lex_state = 94}, + [4939] = {.lex_state = 68, .external_lex_state = 94}, + [4940] = {.lex_state = 522, .external_lex_state = 94}, + [4941] = {.lex_state = 521, .external_lex_state = 93}, + [4942] = {.lex_state = 68, .external_lex_state = 94}, + [4943] = {.lex_state = 68, .external_lex_state = 92}, + [4944] = {.lex_state = 68, .external_lex_state = 92}, + [4945] = {.lex_state = 68, .external_lex_state = 92}, + [4946] = {.lex_state = 67, .external_lex_state = 94}, + [4947] = {.lex_state = 68, .external_lex_state = 92}, + [4948] = {.lex_state = 522, .external_lex_state = 94}, + [4949] = {.lex_state = 68, .external_lex_state = 92}, + [4950] = {.lex_state = 67, .external_lex_state = 94}, + [4951] = {.lex_state = 521, .external_lex_state = 94}, + [4952] = {.lex_state = 522, .external_lex_state = 94}, + [4953] = {.lex_state = 67, .external_lex_state = 94}, + [4954] = {.lex_state = 522, .external_lex_state = 94}, + [4955] = {.lex_state = 68, .external_lex_state = 92}, + [4956] = {.lex_state = 68, .external_lex_state = 92}, + [4957] = {.lex_state = 68, .external_lex_state = 92}, + [4958] = {.lex_state = 522, .external_lex_state = 94}, + [4959] = {.lex_state = 68, .external_lex_state = 92}, + [4960] = {.lex_state = 522, .external_lex_state = 94}, + [4961] = {.lex_state = 522, .external_lex_state = 94}, + [4962] = {.lex_state = 67, .external_lex_state = 94}, + [4963] = {.lex_state = 68, .external_lex_state = 92}, + [4964] = {.lex_state = 67, .external_lex_state = 94}, + [4965] = {.lex_state = 522, .external_lex_state = 94}, + [4966] = {.lex_state = 68, .external_lex_state = 92}, + [4967] = {.lex_state = 312, .external_lex_state = 99}, + [4968] = {.lex_state = 522, .external_lex_state = 94}, + [4969] = {.lex_state = 68, .external_lex_state = 92}, + [4970] = {.lex_state = 522, .external_lex_state = 94}, + [4971] = {.lex_state = 68, .external_lex_state = 94}, + [4972] = {.lex_state = 312, .external_lex_state = 99}, + [4973] = {.lex_state = 522, .external_lex_state = 94}, + [4974] = {.lex_state = 312, .external_lex_state = 99}, + [4975] = {.lex_state = 237, .external_lex_state = 73}, + [4976] = {.lex_state = 68, .external_lex_state = 92}, + [4977] = {.lex_state = 68, .external_lex_state = 92}, + [4978] = {.lex_state = 68, .external_lex_state = 92}, + [4979] = {.lex_state = 522, .external_lex_state = 94}, + [4980] = {.lex_state = 68, .external_lex_state = 92}, + [4981] = {.lex_state = 68, .external_lex_state = 92}, + [4982] = {.lex_state = 67, .external_lex_state = 94}, + [4983] = {.lex_state = 522, .external_lex_state = 94}, + [4984] = {.lex_state = 68, .external_lex_state = 92}, + [4985] = {.lex_state = 68, .external_lex_state = 92}, + [4986] = {.lex_state = 521, .external_lex_state = 94}, + [4987] = {.lex_state = 522, .external_lex_state = 94}, + [4988] = {.lex_state = 522, .external_lex_state = 94}, + [4989] = {.lex_state = 522, .external_lex_state = 94}, + [4990] = {.lex_state = 68, .external_lex_state = 66}, + [4991] = {.lex_state = 68, .external_lex_state = 92}, + [4992] = {.lex_state = 521, .external_lex_state = 93}, + [4993] = {.lex_state = 521, .external_lex_state = 94}, + [4994] = {.lex_state = 522, .external_lex_state = 94}, + [4995] = {.lex_state = 519, .external_lex_state = 94}, + [4996] = {.lex_state = 521, .external_lex_state = 94}, + [4997] = {.lex_state = 521, .external_lex_state = 94}, + [4998] = {.lex_state = 521, .external_lex_state = 94}, + [4999] = {.lex_state = 312, .external_lex_state = 99}, + [5000] = {.lex_state = 519, .external_lex_state = 94}, + [5001] = {.lex_state = 519, .external_lex_state = 94}, + [5002] = {.lex_state = 522, .external_lex_state = 94}, + [5003] = {.lex_state = 68, .external_lex_state = 92}, + [5004] = {.lex_state = 68, .external_lex_state = 92}, + [5005] = {.lex_state = 522, .external_lex_state = 94}, + [5006] = {.lex_state = 68, .external_lex_state = 92}, + [5007] = {.lex_state = 521, .external_lex_state = 94}, + [5008] = {.lex_state = 68, .external_lex_state = 92}, + [5009] = {.lex_state = 522, .external_lex_state = 94}, + [5010] = {.lex_state = 522, .external_lex_state = 94}, + [5011] = {.lex_state = 522, .external_lex_state = 94}, + [5012] = {.lex_state = 68, .external_lex_state = 92}, + [5013] = {.lex_state = 68, .external_lex_state = 92}, + [5014] = {.lex_state = 522, .external_lex_state = 94}, + [5015] = {.lex_state = 312, .external_lex_state = 99}, + [5016] = {.lex_state = 68, .external_lex_state = 92}, + [5017] = {.lex_state = 522, .external_lex_state = 94}, + [5018] = {.lex_state = 67, .external_lex_state = 94}, + [5019] = {.lex_state = 67, .external_lex_state = 94}, + [5020] = {.lex_state = 67, .external_lex_state = 94}, + [5021] = {.lex_state = 237, .external_lex_state = 73}, + [5022] = {.lex_state = 522, .external_lex_state = 94}, + [5023] = {.lex_state = 522, .external_lex_state = 94}, + [5024] = {.lex_state = 67, .external_lex_state = 94}, + [5025] = {.lex_state = 67, .external_lex_state = 94}, + [5026] = {.lex_state = 522, .external_lex_state = 94}, + [5027] = {.lex_state = 522, .external_lex_state = 94}, + [5028] = {.lex_state = 68, .external_lex_state = 92}, + [5029] = {.lex_state = 522, .external_lex_state = 94}, + [5030] = {.lex_state = 522, .external_lex_state = 94}, + [5031] = {.lex_state = 521, .external_lex_state = 93}, + [5032] = {.lex_state = 68, .external_lex_state = 92}, + [5033] = {.lex_state = 521, .external_lex_state = 93}, + [5034] = {.lex_state = 227, .external_lex_state = 97}, + [5035] = {.lex_state = 68, .external_lex_state = 94}, + [5036] = {.lex_state = 521, .external_lex_state = 94}, + [5037] = {.lex_state = 68, .external_lex_state = 94}, + [5038] = {.lex_state = 301, .external_lex_state = 100}, + [5039] = {.lex_state = 68, .external_lex_state = 94}, + [5040] = {.lex_state = 522, .external_lex_state = 94}, + [5041] = {.lex_state = 301, .external_lex_state = 100}, + [5042] = {.lex_state = 68, .external_lex_state = 94}, + [5043] = {.lex_state = 68, .external_lex_state = 94}, + [5044] = {.lex_state = 237, .external_lex_state = 73}, + [5045] = {.lex_state = 301, .external_lex_state = 100}, + [5046] = {.lex_state = 68, .external_lex_state = 94}, + [5047] = {.lex_state = 68, .external_lex_state = 94}, + [5048] = {.lex_state = 227, .external_lex_state = 97}, + [5049] = {.lex_state = 68, .external_lex_state = 94}, + [5050] = {.lex_state = 68, .external_lex_state = 94}, + [5051] = {.lex_state = 521, .external_lex_state = 94}, + [5052] = {.lex_state = 68, .external_lex_state = 94}, + [5053] = {.lex_state = 68, .external_lex_state = 94}, + [5054] = {.lex_state = 521, .external_lex_state = 94}, + [5055] = {.lex_state = 227, .external_lex_state = 97}, + [5056] = {.lex_state = 67, .external_lex_state = 94}, + [5057] = {.lex_state = 227, .external_lex_state = 97}, + [5058] = {.lex_state = 67, .external_lex_state = 94}, + [5059] = {.lex_state = 301, .external_lex_state = 100}, + [5060] = {.lex_state = 68, .external_lex_state = 94}, + [5061] = {.lex_state = 68, .external_lex_state = 94}, + [5062] = {.lex_state = 227, .external_lex_state = 97}, + [5063] = {.lex_state = 68, .external_lex_state = 94}, + [5064] = {.lex_state = 324, .external_lex_state = 101}, + [5065] = {.lex_state = 301, .external_lex_state = 100}, + [5066] = {.lex_state = 68, .external_lex_state = 94}, + [5067] = {.lex_state = 68, .external_lex_state = 94}, + [5068] = {.lex_state = 68, .external_lex_state = 94}, + [5069] = {.lex_state = 68, .external_lex_state = 94}, + [5070] = {.lex_state = 522, .external_lex_state = 94}, + [5071] = {.lex_state = 68, .external_lex_state = 94}, + [5072] = {.lex_state = 68, .external_lex_state = 94}, + [5073] = {.lex_state = 68, .external_lex_state = 94}, + [5074] = {.lex_state = 68, .external_lex_state = 94}, + [5075] = {.lex_state = 68, .external_lex_state = 94}, + [5076] = {.lex_state = 68, .external_lex_state = 94}, + [5077] = {.lex_state = 68, .external_lex_state = 94}, + [5078] = {.lex_state = 68, .external_lex_state = 94}, + [5079] = {.lex_state = 521, .external_lex_state = 94}, + [5080] = {.lex_state = 68, .external_lex_state = 94}, + [5081] = {.lex_state = 522, .external_lex_state = 94}, + [5082] = {.lex_state = 521, .external_lex_state = 94}, + [5083] = {.lex_state = 68, .external_lex_state = 94}, + [5084] = {.lex_state = 68, .external_lex_state = 94}, + [5085] = {.lex_state = 68, .external_lex_state = 94}, + [5086] = {.lex_state = 68, .external_lex_state = 94}, + [5087] = {.lex_state = 68, .external_lex_state = 94}, + [5088] = {.lex_state = 68, .external_lex_state = 94}, + [5089] = {.lex_state = 68, .external_lex_state = 94}, + [5090] = {.lex_state = 68, .external_lex_state = 94}, + [5091] = {.lex_state = 68, .external_lex_state = 94}, + [5092] = {.lex_state = 68, .external_lex_state = 94}, + [5093] = {.lex_state = 68, .external_lex_state = 94}, + [5094] = {.lex_state = 68, .external_lex_state = 94}, + [5095] = {.lex_state = 521, .external_lex_state = 94}, + [5096] = {.lex_state = 68, .external_lex_state = 94}, + [5097] = {.lex_state = 301, .external_lex_state = 100}, + [5098] = {.lex_state = 68, .external_lex_state = 94}, + [5099] = {.lex_state = 68, .external_lex_state = 94}, + [5100] = {.lex_state = 68, .external_lex_state = 94}, + [5101] = {.lex_state = 68, .external_lex_state = 94}, + [5102] = {.lex_state = 522, .external_lex_state = 94}, + [5103] = {.lex_state = 68, .external_lex_state = 94}, + [5104] = {.lex_state = 68, .external_lex_state = 94}, + [5105] = {.lex_state = 68, .external_lex_state = 94}, + [5106] = {.lex_state = 68, .external_lex_state = 94}, + [5107] = {.lex_state = 68, .external_lex_state = 94}, + [5108] = {.lex_state = 521, .external_lex_state = 94}, + [5109] = {.lex_state = 67, .external_lex_state = 93}, + [5110] = {.lex_state = 68, .external_lex_state = 95}, + [5111] = {.lex_state = 68, .external_lex_state = 94}, + [5112] = {.lex_state = 68, .external_lex_state = 94}, + [5113] = {.lex_state = 68, .external_lex_state = 94}, + [5114] = {.lex_state = 68, .external_lex_state = 94}, + [5115] = {.lex_state = 521, .external_lex_state = 94}, + [5116] = {.lex_state = 68, .external_lex_state = 94}, + [5117] = {.lex_state = 67, .external_lex_state = 94}, + [5118] = {.lex_state = 67, .external_lex_state = 94}, + [5119] = {.lex_state = 68, .external_lex_state = 94}, + [5120] = {.lex_state = 68, .external_lex_state = 94}, + [5121] = {.lex_state = 311, .external_lex_state = 67}, + [5122] = {.lex_state = 521, .external_lex_state = 94}, + [5123] = {.lex_state = 301, .external_lex_state = 100}, + [5124] = {.lex_state = 324, .external_lex_state = 101}, + [5125] = {.lex_state = 311, .external_lex_state = 67}, + [5126] = {.lex_state = 311, .external_lex_state = 67}, + [5127] = {.lex_state = 324, .external_lex_state = 101}, + [5128] = {.lex_state = 67, .external_lex_state = 93}, + [5129] = {.lex_state = 67, .external_lex_state = 93}, + [5130] = {.lex_state = 67, .external_lex_state = 93}, + [5131] = {.lex_state = 67, .external_lex_state = 93}, + [5132] = {.lex_state = 311, .external_lex_state = 67}, + [5133] = {.lex_state = 67, .external_lex_state = 93}, + [5134] = {.lex_state = 67, .external_lex_state = 93}, + [5135] = {.lex_state = 67, .external_lex_state = 93}, + [5136] = {.lex_state = 67, .external_lex_state = 93}, + [5137] = {.lex_state = 68, .external_lex_state = 95}, + [5138] = {.lex_state = 68, .external_lex_state = 95}, + [5139] = {.lex_state = 311, .external_lex_state = 67}, + [5140] = {.lex_state = 324, .external_lex_state = 101}, + [5141] = {.lex_state = 311, .external_lex_state = 67}, + [5142] = {.lex_state = 312, .external_lex_state = 99}, + [5143] = {.lex_state = 311, .external_lex_state = 67}, + [5144] = {.lex_state = 311, .external_lex_state = 67}, + [5145] = {.lex_state = 311, .external_lex_state = 67}, + [5146] = {.lex_state = 311, .external_lex_state = 67}, + [5147] = {.lex_state = 68, .external_lex_state = 66}, + [5148] = {.lex_state = 68, .external_lex_state = 66}, + [5149] = {.lex_state = 301, .external_lex_state = 100}, + [5150] = {.lex_state = 301, .external_lex_state = 100}, + [5151] = {.lex_state = 301, .external_lex_state = 100}, + [5152] = {.lex_state = 301, .external_lex_state = 100}, + [5153] = {.lex_state = 301, .external_lex_state = 100}, + [5154] = {.lex_state = 301, .external_lex_state = 100}, + [5155] = {.lex_state = 301, .external_lex_state = 100}, + [5156] = {.lex_state = 301, .external_lex_state = 100}, + [5157] = {.lex_state = 301, .external_lex_state = 100}, + [5158] = {.lex_state = 301, .external_lex_state = 100}, + [5159] = {.lex_state = 301, .external_lex_state = 100}, + [5160] = {.lex_state = 301, .external_lex_state = 100}, + [5161] = {.lex_state = 301, .external_lex_state = 100}, + [5162] = {.lex_state = 311, .external_lex_state = 67}, + [5163] = {.lex_state = 521, .external_lex_state = 94}, + [5164] = {.lex_state = 311, .external_lex_state = 67}, + [5165] = {.lex_state = 301, .external_lex_state = 100}, + [5166] = {.lex_state = 311, .external_lex_state = 67}, + [5167] = {.lex_state = 289, .external_lex_state = 102}, + [5168] = {.lex_state = 312, .external_lex_state = 99}, + [5169] = {.lex_state = 311, .external_lex_state = 67}, + [5170] = {.lex_state = 324, .external_lex_state = 101}, + [5171] = {.lex_state = 301, .external_lex_state = 100}, + [5172] = {.lex_state = 311, .external_lex_state = 67}, + [5173] = {.lex_state = 324, .external_lex_state = 101}, + [5174] = {.lex_state = 321, .external_lex_state = 101}, + [5175] = {.lex_state = 324, .external_lex_state = 101}, + [5176] = {.lex_state = 67, .external_lex_state = 94}, + [5177] = {.lex_state = 311, .external_lex_state = 67}, + [5178] = {.lex_state = 324, .external_lex_state = 101}, + [5179] = {.lex_state = 324, .external_lex_state = 101}, + [5180] = {.lex_state = 324, .external_lex_state = 101}, + [5181] = {.lex_state = 67, .external_lex_state = 94}, + [5182] = {.lex_state = 324, .external_lex_state = 101}, + [5183] = {.lex_state = 311, .external_lex_state = 67}, + [5184] = {.lex_state = 289, .external_lex_state = 103}, + [5185] = {.lex_state = 312, .external_lex_state = 99}, + [5186] = {.lex_state = 312, .external_lex_state = 99}, + [5187] = {.lex_state = 312, .external_lex_state = 99}, + [5188] = {.lex_state = 324, .external_lex_state = 101}, + [5189] = {.lex_state = 521, .external_lex_state = 94}, + [5190] = {.lex_state = 312, .external_lex_state = 99}, + [5191] = {.lex_state = 312, .external_lex_state = 99}, + [5192] = {.lex_state = 312, .external_lex_state = 99}, + [5193] = {.lex_state = 311, .external_lex_state = 67}, + [5194] = {.lex_state = 312, .external_lex_state = 99}, + [5195] = {.lex_state = 289, .external_lex_state = 103}, + [5196] = {.lex_state = 312, .external_lex_state = 99}, + [5197] = {.lex_state = 312, .external_lex_state = 99}, + [5198] = {.lex_state = 312, .external_lex_state = 99}, + [5199] = {.lex_state = 301, .external_lex_state = 100}, + [5200] = {.lex_state = 301, .external_lex_state = 100}, + [5201] = {.lex_state = 311, .external_lex_state = 67}, + [5202] = {.lex_state = 312, .external_lex_state = 99}, + [5203] = {.lex_state = 312, .external_lex_state = 99}, + [5204] = {.lex_state = 301, .external_lex_state = 100}, + [5205] = {.lex_state = 289, .external_lex_state = 102}, + [5206] = {.lex_state = 68, .external_lex_state = 93}, + [5207] = {.lex_state = 67, .external_lex_state = 93}, + [5208] = {.lex_state = 67, .external_lex_state = 93}, + [5209] = {.lex_state = 68, .external_lex_state = 95}, + [5210] = {.lex_state = 68, .external_lex_state = 95}, + [5211] = {.lex_state = 66, .external_lex_state = 104}, + [5212] = {.lex_state = 66, .external_lex_state = 104}, + [5213] = {.lex_state = 289, .external_lex_state = 103}, + [5214] = {.lex_state = 312, .external_lex_state = 99}, + [5215] = {.lex_state = 311, .external_lex_state = 67}, + [5216] = {.lex_state = 521, .external_lex_state = 94}, + [5217] = {.lex_state = 312, .external_lex_state = 99}, + [5218] = {.lex_state = 312, .external_lex_state = 99}, + [5219] = {.lex_state = 312, .external_lex_state = 99}, + [5220] = {.lex_state = 312, .external_lex_state = 99}, + [5221] = {.lex_state = 322, .external_lex_state = 105}, + [5222] = {.lex_state = 312, .external_lex_state = 99}, + [5223] = {.lex_state = 312, .external_lex_state = 99}, + [5224] = {.lex_state = 521, .external_lex_state = 94}, + [5225] = {.lex_state = 312, .external_lex_state = 99}, + [5226] = {.lex_state = 312, .external_lex_state = 99}, + [5227] = {.lex_state = 311, .external_lex_state = 67}, + [5228] = {.lex_state = 312, .external_lex_state = 99}, + [5229] = {.lex_state = 312, .external_lex_state = 99}, + [5230] = {.lex_state = 312, .external_lex_state = 99}, + [5231] = {.lex_state = 312, .external_lex_state = 99}, + [5232] = {.lex_state = 66, .external_lex_state = 104}, + [5233] = {.lex_state = 312, .external_lex_state = 99}, + [5234] = {.lex_state = 312, .external_lex_state = 99}, + [5235] = {.lex_state = 312, .external_lex_state = 99}, + [5236] = {.lex_state = 312, .external_lex_state = 99}, + [5237] = {.lex_state = 312, .external_lex_state = 99}, + [5238] = {.lex_state = 312, .external_lex_state = 99}, + [5239] = {.lex_state = 312, .external_lex_state = 99}, + [5240] = {.lex_state = 325, .external_lex_state = 106}, + [5241] = {.lex_state = 312, .external_lex_state = 99}, + [5242] = {.lex_state = 312, .external_lex_state = 99}, + [5243] = {.lex_state = 312, .external_lex_state = 99}, + [5244] = {.lex_state = 312, .external_lex_state = 99}, + [5245] = {.lex_state = 311, .external_lex_state = 67}, + [5246] = {.lex_state = 312, .external_lex_state = 99}, + [5247] = {.lex_state = 311, .external_lex_state = 67}, + [5248] = {.lex_state = 521, .external_lex_state = 94}, + [5249] = {.lex_state = 313, .external_lex_state = 107}, + [5250] = {.lex_state = 311, .external_lex_state = 67}, + [5251] = {.lex_state = 298, .external_lex_state = 47}, + [5252] = {.lex_state = 298, .external_lex_state = 47}, + [5253] = {.lex_state = 321, .external_lex_state = 105}, + [5254] = {.lex_state = 298, .external_lex_state = 47}, + [5255] = {.lex_state = 324, .external_lex_state = 101}, + [5256] = {.lex_state = 321, .external_lex_state = 105}, + [5257] = {.lex_state = 298, .external_lex_state = 47}, + [5258] = {.lex_state = 289, .external_lex_state = 102}, + [5259] = {.lex_state = 298, .external_lex_state = 47}, + [5260] = {.lex_state = 66, .external_lex_state = 104}, + [5261] = {.lex_state = 298, .external_lex_state = 47}, + [5262] = {.lex_state = 324, .external_lex_state = 101}, + [5263] = {.lex_state = 324, .external_lex_state = 101}, + [5264] = {.lex_state = 298, .external_lex_state = 47}, + [5265] = {.lex_state = 298, .external_lex_state = 47}, + [5266] = {.lex_state = 312, .external_lex_state = 102}, + [5267] = {.lex_state = 322, .external_lex_state = 106}, + [5268] = {.lex_state = 298, .external_lex_state = 47}, + [5269] = {.lex_state = 324, .external_lex_state = 101}, + [5270] = {.lex_state = 324, .external_lex_state = 106}, + [5271] = {.lex_state = 324, .external_lex_state = 106}, + [5272] = {.lex_state = 298, .external_lex_state = 47}, + [5273] = {.lex_state = 298, .external_lex_state = 47}, + [5274] = {.lex_state = 298, .external_lex_state = 78}, + [5275] = {.lex_state = 298, .external_lex_state = 47}, + [5276] = {.lex_state = 324, .external_lex_state = 106}, + [5277] = {.lex_state = 298, .external_lex_state = 47}, + [5278] = {.lex_state = 321, .external_lex_state = 101}, + [5279] = {.lex_state = 324, .external_lex_state = 101}, + [5280] = {.lex_state = 298, .external_lex_state = 47}, + [5281] = {.lex_state = 298, .external_lex_state = 47}, + [5282] = {.lex_state = 298, .external_lex_state = 47}, + [5283] = {.lex_state = 298, .external_lex_state = 47}, + [5284] = {.lex_state = 324, .external_lex_state = 101}, + [5285] = {.lex_state = 298, .external_lex_state = 47}, + [5286] = {.lex_state = 68, .external_lex_state = 93}, + [5287] = {.lex_state = 68, .external_lex_state = 93}, + [5288] = {.lex_state = 324, .external_lex_state = 101}, + [5289] = {.lex_state = 312, .external_lex_state = 102}, + [5290] = {.lex_state = 321, .external_lex_state = 101}, + [5291] = {.lex_state = 298, .external_lex_state = 47}, + [5292] = {.lex_state = 289, .external_lex_state = 102}, + [5293] = {.lex_state = 68, .external_lex_state = 93}, + [5294] = {.lex_state = 324, .external_lex_state = 101}, + [5295] = {.lex_state = 298, .external_lex_state = 47}, + [5296] = {.lex_state = 298, .external_lex_state = 47}, + [5297] = {.lex_state = 321, .external_lex_state = 105}, + [5298] = {.lex_state = 324, .external_lex_state = 101}, + [5299] = {.lex_state = 298, .external_lex_state = 47}, + [5300] = {.lex_state = 324, .external_lex_state = 106}, + [5301] = {.lex_state = 324, .external_lex_state = 106}, + [5302] = {.lex_state = 298, .external_lex_state = 47}, + [5303] = {.lex_state = 324, .external_lex_state = 106}, + [5304] = {.lex_state = 298, .external_lex_state = 47}, + [5305] = {.lex_state = 68, .external_lex_state = 93}, + [5306] = {.lex_state = 68, .external_lex_state = 93}, + [5307] = {.lex_state = 298, .external_lex_state = 47}, + [5308] = {.lex_state = 298, .external_lex_state = 47}, + [5309] = {.lex_state = 298, .external_lex_state = 47}, + [5310] = {.lex_state = 298, .external_lex_state = 47}, + [5311] = {.lex_state = 298, .external_lex_state = 47}, + [5312] = {.lex_state = 68, .external_lex_state = 93}, + [5313] = {.lex_state = 298, .external_lex_state = 47}, + [5314] = {.lex_state = 298, .external_lex_state = 47}, + [5315] = {.lex_state = 312, .external_lex_state = 102}, + [5316] = {.lex_state = 298, .external_lex_state = 47}, + [5317] = {.lex_state = 312, .external_lex_state = 102}, + [5318] = {.lex_state = 68, .external_lex_state = 93}, + [5319] = {.lex_state = 298, .external_lex_state = 47}, + [5320] = {.lex_state = 298, .external_lex_state = 47}, + [5321] = {.lex_state = 298, .external_lex_state = 47}, + [5322] = {.lex_state = 321, .external_lex_state = 101}, + [5323] = {.lex_state = 324, .external_lex_state = 106}, + [5324] = {.lex_state = 298, .external_lex_state = 47}, + [5325] = {.lex_state = 298, .external_lex_state = 47}, + [5326] = {.lex_state = 298, .external_lex_state = 47}, + [5327] = {.lex_state = 324, .external_lex_state = 101}, + [5328] = {.lex_state = 321, .external_lex_state = 101}, + [5329] = {.lex_state = 298, .external_lex_state = 47}, + [5330] = {.lex_state = 298, .external_lex_state = 47}, + [5331] = {.lex_state = 321, .external_lex_state = 101}, + [5332] = {.lex_state = 298, .external_lex_state = 47}, + [5333] = {.lex_state = 298, .external_lex_state = 47}, + [5334] = {.lex_state = 298, .external_lex_state = 47}, + [5335] = {.lex_state = 298, .external_lex_state = 47}, + [5336] = {.lex_state = 298, .external_lex_state = 47}, + [5337] = {.lex_state = 324, .external_lex_state = 101}, + [5338] = {.lex_state = 298, .external_lex_state = 47}, + [5339] = {.lex_state = 298, .external_lex_state = 47}, + [5340] = {.lex_state = 298, .external_lex_state = 47}, + [5341] = {.lex_state = 298, .external_lex_state = 47}, + [5342] = {.lex_state = 298, .external_lex_state = 47}, + [5343] = {.lex_state = 298, .external_lex_state = 47}, + [5344] = {.lex_state = 298, .external_lex_state = 47}, + [5345] = {.lex_state = 298, .external_lex_state = 47}, + [5346] = {.lex_state = 298, .external_lex_state = 47}, + [5347] = {.lex_state = 321, .external_lex_state = 101}, + [5348] = {.lex_state = 321, .external_lex_state = 101}, + [5349] = {.lex_state = 321, .external_lex_state = 101}, + [5350] = {.lex_state = 312, .external_lex_state = 102}, + [5351] = {.lex_state = 198, .external_lex_state = 73}, + [5352] = {.lex_state = 324, .external_lex_state = 106}, + [5353] = {.lex_state = 298, .external_lex_state = 47}, + [5354] = {.lex_state = 298, .external_lex_state = 47}, + [5355] = {.lex_state = 298, .external_lex_state = 47}, + [5356] = {.lex_state = 312, .external_lex_state = 102}, + [5357] = {.lex_state = 289, .external_lex_state = 102}, + [5358] = {.lex_state = 312, .external_lex_state = 102}, + [5359] = {.lex_state = 324, .external_lex_state = 106}, + [5360] = {.lex_state = 312, .external_lex_state = 81}, + [5361] = {.lex_state = 312, .external_lex_state = 102}, + [5362] = {.lex_state = 289, .external_lex_state = 103}, + [5363] = {.lex_state = 289, .external_lex_state = 103}, + [5364] = {.lex_state = 324, .external_lex_state = 101}, + [5365] = {.lex_state = 298, .external_lex_state = 78}, + [5366] = {.lex_state = 68, .external_lex_state = 94}, + [5367] = {.lex_state = 67, .external_lex_state = 94}, + [5368] = {.lex_state = 68, .external_lex_state = 94}, + [5369] = {.lex_state = 68, .external_lex_state = 94}, + [5370] = {.lex_state = 68, .external_lex_state = 94}, + [5371] = {.lex_state = 321, .external_lex_state = 101}, + [5372] = {.lex_state = 67, .external_lex_state = 94}, + [5373] = {.lex_state = 324, .external_lex_state = 106}, + [5374] = {.lex_state = 321, .external_lex_state = 105}, + [5375] = {.lex_state = 67, .external_lex_state = 94}, + [5376] = {.lex_state = 289, .external_lex_state = 102}, + [5377] = {.lex_state = 321, .external_lex_state = 101}, + [5378] = {.lex_state = 324, .external_lex_state = 106}, + [5379] = {.lex_state = 321, .external_lex_state = 101}, + [5380] = {.lex_state = 324, .external_lex_state = 101}, + [5381] = {.lex_state = 68, .external_lex_state = 94}, + [5382] = {.lex_state = 312, .external_lex_state = 102}, + [5383] = {.lex_state = 68, .external_lex_state = 94}, + [5384] = {.lex_state = 298, .external_lex_state = 47}, + [5385] = {.lex_state = 312, .external_lex_state = 81}, + [5386] = {.lex_state = 298, .external_lex_state = 47}, + [5387] = {.lex_state = 324, .external_lex_state = 101}, + [5388] = {.lex_state = 289, .external_lex_state = 102}, + [5389] = {.lex_state = 324, .external_lex_state = 101}, + [5390] = {.lex_state = 321, .external_lex_state = 105}, + [5391] = {.lex_state = 298, .external_lex_state = 47}, + [5392] = {.lex_state = 68, .external_lex_state = 93}, + [5393] = {.lex_state = 68, .external_lex_state = 93}, + [5394] = {.lex_state = 312, .external_lex_state = 102}, + [5395] = {.lex_state = 298, .external_lex_state = 47}, + [5396] = {.lex_state = 298, .external_lex_state = 47}, + [5397] = {.lex_state = 298, .external_lex_state = 47}, + [5398] = {.lex_state = 68, .external_lex_state = 93}, + [5399] = {.lex_state = 324, .external_lex_state = 101}, + [5400] = {.lex_state = 324, .external_lex_state = 101}, + [5401] = {.lex_state = 298, .external_lex_state = 47}, + [5402] = {.lex_state = 324, .external_lex_state = 101}, + [5403] = {.lex_state = 324, .external_lex_state = 101}, + [5404] = {.lex_state = 324, .external_lex_state = 106}, + [5405] = {.lex_state = 289, .external_lex_state = 103}, + [5406] = {.lex_state = 312, .external_lex_state = 103}, + [5407] = {.lex_state = 321, .external_lex_state = 106}, + [5408] = {.lex_state = 322, .external_lex_state = 81}, + [5409] = {.lex_state = 321, .external_lex_state = 105}, + [5410] = {.lex_state = 289, .external_lex_state = 102}, + [5411] = {.lex_state = 321, .external_lex_state = 106}, + [5412] = {.lex_state = 321, .external_lex_state = 106}, + [5413] = {.lex_state = 321, .external_lex_state = 105}, + [5414] = {.lex_state = 321, .external_lex_state = 105}, + [5415] = {.lex_state = 321, .external_lex_state = 106}, + [5416] = {.lex_state = 298, .external_lex_state = 78}, + [5417] = {.lex_state = 321, .external_lex_state = 106}, + [5418] = {.lex_state = 321, .external_lex_state = 106}, + [5419] = {.lex_state = 312, .external_lex_state = 103}, + [5420] = {.lex_state = 321, .external_lex_state = 106}, + [5421] = {.lex_state = 312, .external_lex_state = 103}, + [5422] = {.lex_state = 321, .external_lex_state = 105}, + [5423] = {.lex_state = 289, .external_lex_state = 103}, + [5424] = {.lex_state = 312, .external_lex_state = 102}, + [5425] = {.lex_state = 313, .external_lex_state = 108}, + [5426] = {.lex_state = 312, .external_lex_state = 102}, + [5427] = {.lex_state = 321, .external_lex_state = 106}, + [5428] = {.lex_state = 321, .external_lex_state = 105}, + [5429] = {.lex_state = 66, .external_lex_state = 104}, + [5430] = {.lex_state = 324, .external_lex_state = 106}, + [5431] = {.lex_state = 321, .external_lex_state = 105}, + [5432] = {.lex_state = 324, .external_lex_state = 106}, + [5433] = {.lex_state = 324, .external_lex_state = 106}, + [5434] = {.lex_state = 324, .external_lex_state = 106}, + [5435] = {.lex_state = 321, .external_lex_state = 105}, + [5436] = {.lex_state = 312, .external_lex_state = 103}, + [5437] = {.lex_state = 325, .external_lex_state = 103}, + [5438] = {.lex_state = 324, .external_lex_state = 106}, + [5439] = {.lex_state = 324, .external_lex_state = 106}, + [5440] = {.lex_state = 324, .external_lex_state = 106}, + [5441] = {.lex_state = 321, .external_lex_state = 101}, + [5442] = {.lex_state = 321, .external_lex_state = 105}, + [5443] = {.lex_state = 321, .external_lex_state = 105}, + [5444] = {.lex_state = 324, .external_lex_state = 106}, + [5445] = {.lex_state = 324, .external_lex_state = 106}, + [5446] = {.lex_state = 321, .external_lex_state = 105}, + [5447] = {.lex_state = 312, .external_lex_state = 102}, + [5448] = {.lex_state = 321, .external_lex_state = 101}, + [5449] = {.lex_state = 324, .external_lex_state = 106}, + [5450] = {.lex_state = 321, .external_lex_state = 101}, + [5451] = {.lex_state = 321, .external_lex_state = 101}, + [5452] = {.lex_state = 324, .external_lex_state = 106}, + [5453] = {.lex_state = 324, .external_lex_state = 106}, + [5454] = {.lex_state = 321, .external_lex_state = 101}, + [5455] = {.lex_state = 321, .external_lex_state = 101}, + [5456] = {.lex_state = 198, .external_lex_state = 73}, + [5457] = {.lex_state = 324, .external_lex_state = 106}, + [5458] = {.lex_state = 66, .external_lex_state = 104}, + [5459] = {.lex_state = 321, .external_lex_state = 101}, + [5460] = {.lex_state = 66, .external_lex_state = 104}, + [5461] = {.lex_state = 321, .external_lex_state = 101}, + [5462] = {.lex_state = 325, .external_lex_state = 103}, + [5463] = {.lex_state = 321, .external_lex_state = 101}, + [5464] = {.lex_state = 321, .external_lex_state = 101}, + [5465] = {.lex_state = 312, .external_lex_state = 103}, + [5466] = {.lex_state = 325, .external_lex_state = 103}, + [5467] = {.lex_state = 324, .external_lex_state = 106}, + [5468] = {.lex_state = 321, .external_lex_state = 101}, + [5469] = {.lex_state = 325, .external_lex_state = 103}, + [5470] = {.lex_state = 321, .external_lex_state = 101}, + [5471] = {.lex_state = 321, .external_lex_state = 106}, + [5472] = {.lex_state = 321, .external_lex_state = 105}, + [5473] = {.lex_state = 321, .external_lex_state = 101}, + [5474] = {.lex_state = 321, .external_lex_state = 106}, + [5475] = {.lex_state = 289, .external_lex_state = 103}, + [5476] = {.lex_state = 321, .external_lex_state = 106}, + [5477] = {.lex_state = 321, .external_lex_state = 101}, + [5478] = {.lex_state = 321, .external_lex_state = 101}, + [5479] = {.lex_state = 322, .external_lex_state = 81}, + [5480] = {.lex_state = 321, .external_lex_state = 101}, + [5481] = {.lex_state = 321, .external_lex_state = 105}, + [5482] = {.lex_state = 321, .external_lex_state = 101}, + [5483] = {.lex_state = 321, .external_lex_state = 101}, + [5484] = {.lex_state = 321, .external_lex_state = 105}, + [5485] = {.lex_state = 324, .external_lex_state = 106}, + [5486] = {.lex_state = 324, .external_lex_state = 106}, + [5487] = {.lex_state = 321, .external_lex_state = 101}, + [5488] = {.lex_state = 321, .external_lex_state = 105}, + [5489] = {.lex_state = 324, .external_lex_state = 106}, + [5490] = {.lex_state = 321, .external_lex_state = 105}, + [5491] = {.lex_state = 321, .external_lex_state = 105}, + [5492] = {.lex_state = 324, .external_lex_state = 106}, + [5493] = {.lex_state = 321, .external_lex_state = 105}, + [5494] = {.lex_state = 325, .external_lex_state = 103}, + [5495] = {.lex_state = 321, .external_lex_state = 105}, + [5496] = {.lex_state = 312, .external_lex_state = 102}, + [5497] = {.lex_state = 321, .external_lex_state = 105}, + [5498] = {.lex_state = 312, .external_lex_state = 102}, + [5499] = {.lex_state = 68, .external_lex_state = 94}, + [5500] = {.lex_state = 322, .external_lex_state = 103}, + [5501] = {.lex_state = 321, .external_lex_state = 106}, + [5502] = {.lex_state = 321, .external_lex_state = 106}, + [5503] = {.lex_state = 211, .external_lex_state = 109}, + [5504] = {.lex_state = 66, .external_lex_state = 110}, + [5505] = {.lex_state = 66, .external_lex_state = 110}, + [5506] = {.lex_state = 325, .external_lex_state = 103}, + [5507] = {.lex_state = 321, .external_lex_state = 106}, + [5508] = {.lex_state = 321, .external_lex_state = 106}, + [5509] = {.lex_state = 321, .external_lex_state = 106}, + [5510] = {.lex_state = 321, .external_lex_state = 106}, + [5511] = {.lex_state = 321, .external_lex_state = 106}, + [5512] = {.lex_state = 322, .external_lex_state = 81}, + [5513] = {.lex_state = 321, .external_lex_state = 106}, + [5514] = {.lex_state = 211, .external_lex_state = 109}, + [5515] = {.lex_state = 66, .external_lex_state = 110}, + [5516] = {.lex_state = 66, .external_lex_state = 110}, + [5517] = {.lex_state = 66, .external_lex_state = 110}, + [5518] = {.lex_state = 69, .external_lex_state = 111}, + [5519] = {.lex_state = 322, .external_lex_state = 103}, + [5520] = {.lex_state = 322, .external_lex_state = 103}, + [5521] = {.lex_state = 321, .external_lex_state = 106}, + [5522] = {.lex_state = 321, .external_lex_state = 106}, + [5523] = {.lex_state = 321, .external_lex_state = 106}, + [5524] = {.lex_state = 321, .external_lex_state = 106}, + [5525] = {.lex_state = 321, .external_lex_state = 106}, + [5526] = {.lex_state = 289, .external_lex_state = 102}, + [5527] = {.lex_state = 321, .external_lex_state = 106}, + [5528] = {.lex_state = 68, .external_lex_state = 94}, + [5529] = {.lex_state = 312, .external_lex_state = 102}, + [5530] = {.lex_state = 289, .external_lex_state = 102}, + [5531] = {.lex_state = 66, .external_lex_state = 110}, + [5532] = {.lex_state = 322, .external_lex_state = 103}, + [5533] = {.lex_state = 68, .external_lex_state = 94}, + [5534] = {.lex_state = 321, .external_lex_state = 106}, + [5535] = {.lex_state = 68, .external_lex_state = 94}, + [5536] = {.lex_state = 321, .external_lex_state = 106}, + [5537] = {.lex_state = 321, .external_lex_state = 106}, + [5538] = {.lex_state = 66, .external_lex_state = 110}, + [5539] = {.lex_state = 289, .external_lex_state = 102}, + [5540] = {.lex_state = 66, .external_lex_state = 110}, + [5541] = {.lex_state = 321, .external_lex_state = 106}, + [5542] = {.lex_state = 321, .external_lex_state = 106}, + [5543] = {.lex_state = 289, .external_lex_state = 102}, + [5544] = {.lex_state = 322, .external_lex_state = 103}, + [5545] = {.lex_state = 66, .external_lex_state = 110}, + [5546] = {.lex_state = 66, .external_lex_state = 110}, + [5547] = {.lex_state = 289, .external_lex_state = 103}, + [5548] = {.lex_state = 69, .external_lex_state = 111}, + [5549] = {.lex_state = 312, .external_lex_state = 102}, + [5550] = {.lex_state = 312, .external_lex_state = 103}, + [5551] = {.lex_state = 312, .external_lex_state = 103}, + [5552] = {.lex_state = 312, .external_lex_state = 81}, + [5553] = {.lex_state = 69, .external_lex_state = 111}, + [5554] = {.lex_state = 312, .external_lex_state = 103}, + [5555] = {.lex_state = 312, .external_lex_state = 102}, + [5556] = {.lex_state = 312, .external_lex_state = 102}, + [5557] = {.lex_state = 312, .external_lex_state = 103}, + [5558] = {.lex_state = 312, .external_lex_state = 103}, + [5559] = {.lex_state = 312, .external_lex_state = 103}, + [5560] = {.lex_state = 289, .external_lex_state = 103}, + [5561] = {.lex_state = 312, .external_lex_state = 103}, + [5562] = {.lex_state = 69, .external_lex_state = 111}, + [5563] = {.lex_state = 312, .external_lex_state = 102}, + [5564] = {.lex_state = 289, .external_lex_state = 103}, + [5565] = {.lex_state = 312, .external_lex_state = 102}, + [5566] = {.lex_state = 312, .external_lex_state = 81}, + [5567] = {.lex_state = 289, .external_lex_state = 103}, + [5568] = {.lex_state = 312, .external_lex_state = 102}, + [5569] = {.lex_state = 312, .external_lex_state = 103}, + [5570] = {.lex_state = 289, .external_lex_state = 103}, + [5571] = {.lex_state = 312, .external_lex_state = 102}, + [5572] = {.lex_state = 312, .external_lex_state = 102}, + [5573] = {.lex_state = 312, .external_lex_state = 102}, + [5574] = {.lex_state = 312, .external_lex_state = 102}, + [5575] = {.lex_state = 312, .external_lex_state = 102}, + [5576] = {.lex_state = 312, .external_lex_state = 102}, + [5577] = {.lex_state = 69, .external_lex_state = 111}, + [5578] = {.lex_state = 312, .external_lex_state = 102}, + [5579] = {.lex_state = 312, .external_lex_state = 102}, + [5580] = {.lex_state = 69, .external_lex_state = 111}, + [5581] = {.lex_state = 312, .external_lex_state = 102}, + [5582] = {.lex_state = 289, .external_lex_state = 103}, + [5583] = {.lex_state = 69, .external_lex_state = 111}, + [5584] = {.lex_state = 69, .external_lex_state = 111}, + [5585] = {.lex_state = 312, .external_lex_state = 102}, + [5586] = {.lex_state = 312, .external_lex_state = 102}, + [5587] = {.lex_state = 289, .external_lex_state = 103}, + [5588] = {.lex_state = 289, .external_lex_state = 103}, + [5589] = {.lex_state = 312, .external_lex_state = 102}, + [5590] = {.lex_state = 312, .external_lex_state = 102}, + [5591] = {.lex_state = 289, .external_lex_state = 103}, + [5592] = {.lex_state = 289, .external_lex_state = 103}, + [5593] = {.lex_state = 312, .external_lex_state = 103}, + [5594] = {.lex_state = 289, .external_lex_state = 103}, + [5595] = {.lex_state = 312, .external_lex_state = 102}, + [5596] = {.lex_state = 312, .external_lex_state = 102}, + [5597] = {.lex_state = 312, .external_lex_state = 102}, + [5598] = {.lex_state = 312, .external_lex_state = 102}, + [5599] = {.lex_state = 312, .external_lex_state = 102}, + [5600] = {.lex_state = 312, .external_lex_state = 102}, + [5601] = {.lex_state = 289, .external_lex_state = 103}, + [5602] = {.lex_state = 312, .external_lex_state = 103}, + [5603] = {.lex_state = 289, .external_lex_state = 103}, + [5604] = {.lex_state = 289, .external_lex_state = 103}, + [5605] = {.lex_state = 69, .external_lex_state = 111}, + [5606] = {.lex_state = 69, .external_lex_state = 111}, + [5607] = {.lex_state = 322, .external_lex_state = 103}, + [5608] = {.lex_state = 69, .external_lex_state = 111}, + [5609] = {.lex_state = 66, .external_lex_state = 110}, + [5610] = {.lex_state = 312, .external_lex_state = 81}, + [5611] = {.lex_state = 312, .external_lex_state = 103}, + [5612] = {.lex_state = 289, .external_lex_state = 103}, + [5613] = {.lex_state = 289, .external_lex_state = 103}, + [5614] = {.lex_state = 312, .external_lex_state = 103}, + [5615] = {.lex_state = 289, .external_lex_state = 103}, + [5616] = {.lex_state = 69, .external_lex_state = 111}, + [5617] = {.lex_state = 312, .external_lex_state = 103}, + [5618] = {.lex_state = 69, .external_lex_state = 111}, + [5619] = {.lex_state = 312, .external_lex_state = 103}, + [5620] = {.lex_state = 312, .external_lex_state = 103}, + [5621] = {.lex_state = 312, .external_lex_state = 103}, + [5622] = {.lex_state = 69, .external_lex_state = 111}, + [5623] = {.lex_state = 312, .external_lex_state = 103}, + [5624] = {.lex_state = 312, .external_lex_state = 103}, + [5625] = {.lex_state = 69, .external_lex_state = 111}, + [5626] = {.lex_state = 312, .external_lex_state = 103}, + [5627] = {.lex_state = 312, .external_lex_state = 103}, + [5628] = {.lex_state = 69, .external_lex_state = 111}, + [5629] = {.lex_state = 312, .external_lex_state = 103}, + [5630] = {.lex_state = 312, .external_lex_state = 103}, + [5631] = {.lex_state = 312, .external_lex_state = 103}, + [5632] = {.lex_state = 69, .external_lex_state = 110}, + [5633] = {.lex_state = 312, .external_lex_state = 103}, + [5634] = {.lex_state = 312, .external_lex_state = 103}, + [5635] = {.lex_state = 312, .external_lex_state = 103}, + [5636] = {.lex_state = 312, .external_lex_state = 103}, + [5637] = {.lex_state = 312, .external_lex_state = 103}, + [5638] = {.lex_state = 312, .external_lex_state = 103}, + [5639] = {.lex_state = 312, .external_lex_state = 103}, + [5640] = {.lex_state = 312, .external_lex_state = 103}, + [5641] = {.lex_state = 312, .external_lex_state = 103}, + [5642] = {.lex_state = 312, .external_lex_state = 103}, + [5643] = {.lex_state = 69, .external_lex_state = 110}, + [5644] = {.lex_state = 312, .external_lex_state = 103}, + [5645] = {.lex_state = 312, .external_lex_state = 103}, + [5646] = {.lex_state = 312, .external_lex_state = 103}, + [5647] = {.lex_state = 312, .external_lex_state = 103}, + [5648] = {.lex_state = 312, .external_lex_state = 103}, + [5649] = {.lex_state = 312, .external_lex_state = 103}, + [5650] = {.lex_state = 312, .external_lex_state = 103}, + [5651] = {.lex_state = 69, .external_lex_state = 110}, + [5652] = {.lex_state = 312, .external_lex_state = 103}, + [5653] = {.lex_state = 312, .external_lex_state = 103}, + [5654] = {.lex_state = 69, .external_lex_state = 111}, + [5655] = {.lex_state = 69, .external_lex_state = 111}, + [5656] = {.lex_state = 312, .external_lex_state = 103}, + [5657] = {.lex_state = 69, .external_lex_state = 110}, + [5658] = {.lex_state = 312, .external_lex_state = 103}, + [5659] = {.lex_state = 312, .external_lex_state = 103}, + [5660] = {.lex_state = 69, .external_lex_state = 111}, + [5661] = {.lex_state = 312, .external_lex_state = 103}, + [5662] = {.lex_state = 69, .external_lex_state = 111}, + [5663] = {.lex_state = 69, .external_lex_state = 111}, + [5664] = {.lex_state = 69, .external_lex_state = 111}, + [5665] = {.lex_state = 312, .external_lex_state = 103}, + [5666] = {.lex_state = 69, .external_lex_state = 111}, + [5667] = {.lex_state = 312, .external_lex_state = 103}, + [5668] = {.lex_state = 69, .external_lex_state = 111}, + [5669] = {.lex_state = 69, .external_lex_state = 111}, + [5670] = {.lex_state = 69, .external_lex_state = 111}, + [5671] = {.lex_state = 312, .external_lex_state = 103}, + [5672] = {.lex_state = 312, .external_lex_state = 103}, + [5673] = {.lex_state = 312, .external_lex_state = 103}, + [5674] = {.lex_state = 69, .external_lex_state = 110}, + [5675] = {.lex_state = 312, .external_lex_state = 103}, + [5676] = {.lex_state = 312, .external_lex_state = 103}, + [5677] = {.lex_state = 312, .external_lex_state = 103}, + [5678] = {.lex_state = 312, .external_lex_state = 103}, + [5679] = {.lex_state = 312, .external_lex_state = 103}, + [5680] = {.lex_state = 69, .external_lex_state = 111}, + [5681] = {.lex_state = 312, .external_lex_state = 103}, + [5682] = {.lex_state = 312, .external_lex_state = 103}, + [5683] = {.lex_state = 69, .external_lex_state = 111}, + [5684] = {.lex_state = 312, .external_lex_state = 103}, + [5685] = {.lex_state = 312, .external_lex_state = 103}, + [5686] = {.lex_state = 312, .external_lex_state = 103}, + [5687] = {.lex_state = 312, .external_lex_state = 103}, + [5688] = {.lex_state = 69, .external_lex_state = 111}, + [5689] = {.lex_state = 312, .external_lex_state = 103}, + [5690] = {.lex_state = 312, .external_lex_state = 103}, + [5691] = {.lex_state = 312, .external_lex_state = 103}, + [5692] = {.lex_state = 312, .external_lex_state = 103}, + [5693] = {.lex_state = 69, .external_lex_state = 111}, + [5694] = {.lex_state = 312, .external_lex_state = 103}, + [5695] = {.lex_state = 312, .external_lex_state = 103}, + [5696] = {.lex_state = 69, .external_lex_state = 111}, + [5697] = {.lex_state = 293, .external_lex_state = 112}, + [5698] = {.lex_state = 286, .external_lex_state = 112}, + [5699] = {.lex_state = 286, .external_lex_state = 112}, + [5700] = {.lex_state = 293, .external_lex_state = 112}, + [5701] = {.lex_state = 69, .external_lex_state = 110}, + [5702] = {.lex_state = 318}, + [5703] = {.lex_state = 318}, + [5704] = {.lex_state = 318}, + [5705] = {.lex_state = 318}, + [5706] = {.lex_state = 318}, + [5707] = {.lex_state = 318}, + [5708] = {.lex_state = 318}, + [5709] = {.lex_state = 318}, + [5710] = {.lex_state = 318}, + [5711] = {.lex_state = 318}, + [5712] = {.lex_state = 318}, + [5713] = {.lex_state = 318}, + [5714] = {.lex_state = 318}, + [5715] = {.lex_state = 318}, + [5716] = {.lex_state = 318}, + [5717] = {.lex_state = 318}, + [5718] = {.lex_state = 318}, + [5719] = {.lex_state = 318}, + [5720] = {.lex_state = 318}, + [5721] = {.lex_state = 318}, + [5722] = {.lex_state = 318}, + [5723] = {.lex_state = 318}, + [5724] = {.lex_state = 318}, + [5725] = {.lex_state = 318}, + [5726] = {.lex_state = 318}, + [5727] = {.lex_state = 318}, + [5728] = {.lex_state = 318}, + [5729] = {.lex_state = 318}, + [5730] = {.lex_state = 318}, + [5731] = {.lex_state = 318}, + [5732] = {.lex_state = 318}, + [5733] = {.lex_state = 318}, + [5734] = {.lex_state = 318}, + [5735] = {.lex_state = 318}, + [5736] = {.lex_state = 318}, + [5737] = {.lex_state = 318}, + [5738] = {.lex_state = 66, .external_lex_state = 110}, + [5739] = {.lex_state = 318}, + [5740] = {.lex_state = 318}, + [5741] = {.lex_state = 318}, + [5742] = {.lex_state = 318}, + [5743] = {.lex_state = 318}, + [5744] = {.lex_state = 66, .external_lex_state = 110}, + [5745] = {.lex_state = 318}, + [5746] = {.lex_state = 318}, + [5747] = {.lex_state = 66, .external_lex_state = 110}, + [5748] = {.lex_state = 318}, + [5749] = {.lex_state = 318}, + [5750] = {.lex_state = 318}, + [5751] = {.lex_state = 318}, + [5752] = {.lex_state = 318}, + [5753] = {.lex_state = 318}, + [5754] = {.lex_state = 318}, + [5755] = {.lex_state = 318}, + [5756] = {.lex_state = 318}, + [5757] = {.lex_state = 318}, + [5758] = {.lex_state = 318}, + [5759] = {.lex_state = 318}, + [5760] = {.lex_state = 318}, + [5761] = {.lex_state = 318}, + [5762] = {.lex_state = 318}, + [5763] = {.lex_state = 318}, + [5764] = {.lex_state = 318}, + [5765] = {.lex_state = 318}, + [5766] = {.lex_state = 318}, + [5767] = {.lex_state = 318}, + [5768] = {.lex_state = 318}, + [5769] = {.lex_state = 318}, + [5770] = {.lex_state = 318}, + [5771] = {.lex_state = 318}, + [5772] = {.lex_state = 318}, + [5773] = {.lex_state = 318}, + [5774] = {.lex_state = 318}, + [5775] = {.lex_state = 318}, + [5776] = {.lex_state = 318}, + [5777] = {.lex_state = 318}, + [5778] = {.lex_state = 318}, + [5779] = {.lex_state = 318}, + [5780] = {.lex_state = 318}, + [5781] = {.lex_state = 318}, + [5782] = {.lex_state = 318}, + [5783] = {.lex_state = 318}, + [5784] = {.lex_state = 318}, + [5785] = {.lex_state = 318}, + [5786] = {.lex_state = 318}, + [5787] = {.lex_state = 318}, + [5788] = {.lex_state = 318}, + [5789] = {.lex_state = 66, .external_lex_state = 110}, + [5790] = {.lex_state = 318}, + [5791] = {.lex_state = 318}, + [5792] = {.lex_state = 318}, + [5793] = {.lex_state = 318}, + [5794] = {.lex_state = 318}, + [5795] = {.lex_state = 318}, + [5796] = {.lex_state = 318}, + [5797] = {.lex_state = 318}, + [5798] = {.lex_state = 318}, + [5799] = {.lex_state = 318}, + [5800] = {.lex_state = 318}, + [5801] = {.lex_state = 318}, + [5802] = {.lex_state = 318}, + [5803] = {.lex_state = 318}, + [5804] = {.lex_state = 318}, + [5805] = {.lex_state = 318}, + [5806] = {.lex_state = 318}, + [5807] = {.lex_state = 318}, + [5808] = {.lex_state = 318}, + [5809] = {.lex_state = 318}, + [5810] = {.lex_state = 318}, + [5811] = {.lex_state = 318}, + [5812] = {.lex_state = 318}, + [5813] = {.lex_state = 318}, + [5814] = {.lex_state = 318}, + [5815] = {.lex_state = 318}, + [5816] = {.lex_state = 318}, + [5817] = {.lex_state = 318}, + [5818] = {.lex_state = 318}, + [5819] = {.lex_state = 318}, + [5820] = {.lex_state = 318}, + [5821] = {.lex_state = 318}, + [5822] = {.lex_state = 318}, + [5823] = {.lex_state = 318}, + [5824] = {.lex_state = 318}, + [5825] = {.lex_state = 318}, + [5826] = {.lex_state = 318}, + [5827] = {.lex_state = 318}, + [5828] = {.lex_state = 318}, + [5829] = {.lex_state = 318}, + [5830] = {.lex_state = 318}, + [5831] = {.lex_state = 318}, + [5832] = {.lex_state = 318}, + [5833] = {.lex_state = 318}, + [5834] = {.lex_state = 318}, + [5835] = {.lex_state = 318}, + [5836] = {.lex_state = 318}, + [5837] = {.lex_state = 318}, + [5838] = {.lex_state = 318}, + [5839] = {.lex_state = 318}, + [5840] = {.lex_state = 318}, + [5841] = {.lex_state = 318}, + [5842] = {.lex_state = 318}, + [5843] = {.lex_state = 318}, + [5844] = {.lex_state = 318}, + [5845] = {.lex_state = 318}, + [5846] = {.lex_state = 318}, + [5847] = {.lex_state = 318}, + [5848] = {.lex_state = 318}, + [5849] = {.lex_state = 318}, + [5850] = {.lex_state = 318}, + [5851] = {.lex_state = 318}, + [5852] = {.lex_state = 318}, + [5853] = {.lex_state = 318}, + [5854] = {.lex_state = 318}, + [5855] = {.lex_state = 318}, + [5856] = {.lex_state = 318}, + [5857] = {.lex_state = 318}, + [5858] = {.lex_state = 318}, + [5859] = {.lex_state = 318}, + [5860] = {.lex_state = 318}, + [5861] = {.lex_state = 318}, + [5862] = {.lex_state = 318}, + [5863] = {.lex_state = 318}, + [5864] = {.lex_state = 318}, + [5865] = {.lex_state = 288, .external_lex_state = 112}, + [5866] = {.lex_state = 287, .external_lex_state = 112}, + [5867] = {.lex_state = 287, .external_lex_state = 112}, + [5868] = {.lex_state = 287, .external_lex_state = 112}, + [5869] = {.lex_state = 287, .external_lex_state = 112}, + [5870] = {.lex_state = 288, .external_lex_state = 112}, + [5871] = {.lex_state = 287, .external_lex_state = 112}, + [5872] = {.lex_state = 287, .external_lex_state = 112}, + [5873] = {.lex_state = 287, .external_lex_state = 112}, + [5874] = {.lex_state = 287, .external_lex_state = 112}, + [5875] = {.lex_state = 288, .external_lex_state = 112}, + [5876] = {.lex_state = 288, .external_lex_state = 112}, + [5877] = {.lex_state = 287, .external_lex_state = 112}, + [5878] = {.lex_state = 287, .external_lex_state = 112}, + [5879] = {.lex_state = 288, .external_lex_state = 112}, + [5880] = {.lex_state = 287, .external_lex_state = 112}, + [5881] = {.lex_state = 287, .external_lex_state = 112}, + [5882] = {.lex_state = 287, .external_lex_state = 112}, + [5883] = {.lex_state = 288, .external_lex_state = 112}, + [5884] = {.lex_state = 288, .external_lex_state = 112}, + [5885] = {.lex_state = 287, .external_lex_state = 112}, + [5886] = {.lex_state = 287, .external_lex_state = 112}, + [5887] = {.lex_state = 287, .external_lex_state = 112}, + [5888] = {.lex_state = 287, .external_lex_state = 112}, + [5889] = {.lex_state = 287, .external_lex_state = 112}, + [5890] = {.lex_state = 287, .external_lex_state = 112}, + [5891] = {.lex_state = 287, .external_lex_state = 112}, + [5892] = {.lex_state = 288, .external_lex_state = 112}, + [5893] = {.lex_state = 287, .external_lex_state = 112}, + [5894] = {.lex_state = 288, .external_lex_state = 112}, + [5895] = {.lex_state = 288, .external_lex_state = 112}, + [5896] = {.lex_state = 287, .external_lex_state = 112}, + [5897] = {.lex_state = 287, .external_lex_state = 112}, + [5898] = {.lex_state = 287, .external_lex_state = 112}, + [5899] = {.lex_state = 287, .external_lex_state = 112}, + [5900] = {.lex_state = 288, .external_lex_state = 112}, + [5901] = {.lex_state = 287, .external_lex_state = 112}, + [5902] = {.lex_state = 287, .external_lex_state = 112}, + [5903] = {.lex_state = 288, .external_lex_state = 112}, + [5904] = {.lex_state = 287, .external_lex_state = 112}, + [5905] = {.lex_state = 287, .external_lex_state = 112}, + [5906] = {.lex_state = 287, .external_lex_state = 112}, + [5907] = {.lex_state = 288, .external_lex_state = 112}, + [5908] = {.lex_state = 288, .external_lex_state = 112}, + [5909] = {.lex_state = 287, .external_lex_state = 112}, + [5910] = {.lex_state = 287, .external_lex_state = 112}, + [5911] = {.lex_state = 287, .external_lex_state = 112}, + [5912] = {.lex_state = 287, .external_lex_state = 112}, + [5913] = {.lex_state = 287, .external_lex_state = 112}, + [5914] = {.lex_state = 287, .external_lex_state = 112}, + [5915] = {.lex_state = 288, .external_lex_state = 112}, + [5916] = {.lex_state = 287, .external_lex_state = 112}, + [5917] = {.lex_state = 287, .external_lex_state = 112}, + [5918] = {.lex_state = 287, .external_lex_state = 112}, + [5919] = {.lex_state = 288, .external_lex_state = 112}, + [5920] = {.lex_state = 288, .external_lex_state = 112}, + [5921] = {.lex_state = 287, .external_lex_state = 112}, + [5922] = {.lex_state = 287, .external_lex_state = 112}, + [5923] = {.lex_state = 288, .external_lex_state = 112}, + [5924] = {.lex_state = 288, .external_lex_state = 112}, + [5925] = {.lex_state = 288, .external_lex_state = 112}, + [5926] = {.lex_state = 288, .external_lex_state = 112}, + [5927] = {.lex_state = 287, .external_lex_state = 112}, + [5928] = {.lex_state = 287, .external_lex_state = 112}, + [5929] = {.lex_state = 287, .external_lex_state = 112}, + [5930] = {.lex_state = 288, .external_lex_state = 112}, + [5931] = {.lex_state = 287, .external_lex_state = 112}, + [5932] = {.lex_state = 287, .external_lex_state = 112}, + [5933] = {.lex_state = 287, .external_lex_state = 112}, + [5934] = {.lex_state = 287, .external_lex_state = 112}, + [5935] = {.lex_state = 288, .external_lex_state = 112}, + [5936] = {.lex_state = 288, .external_lex_state = 112}, + [5937] = {.lex_state = 287, .external_lex_state = 112}, + [5938] = {.lex_state = 287, .external_lex_state = 112}, + [5939] = {.lex_state = 287, .external_lex_state = 112}, + [5940] = {.lex_state = 288, .external_lex_state = 112}, + [5941] = {.lex_state = 287, .external_lex_state = 112}, + [5942] = {.lex_state = 287, .external_lex_state = 112}, + [5943] = {.lex_state = 287, .external_lex_state = 112}, + [5944] = {.lex_state = 287, .external_lex_state = 112}, + [5945] = {.lex_state = 287, .external_lex_state = 112}, + [5946] = {.lex_state = 287, .external_lex_state = 112}, + [5947] = {.lex_state = 287, .external_lex_state = 112}, + [5948] = {.lex_state = 287, .external_lex_state = 112}, + [5949] = {.lex_state = 288, .external_lex_state = 112}, + [5950] = {.lex_state = 288, .external_lex_state = 112}, + [5951] = {.lex_state = 287, .external_lex_state = 112}, + [5952] = {.lex_state = 288, .external_lex_state = 112}, + [5953] = {.lex_state = 287, .external_lex_state = 112}, + [5954] = {.lex_state = 287, .external_lex_state = 112}, + [5955] = {.lex_state = 287, .external_lex_state = 112}, + [5956] = {.lex_state = 288, .external_lex_state = 112}, + [5957] = {.lex_state = 287, .external_lex_state = 112}, + [5958] = {.lex_state = 288, .external_lex_state = 112}, + [5959] = {.lex_state = 287, .external_lex_state = 112}, + [5960] = {.lex_state = 287, .external_lex_state = 112}, + [5961] = {.lex_state = 287, .external_lex_state = 112}, + [5962] = {.lex_state = 287, .external_lex_state = 112}, + [5963] = {.lex_state = 287, .external_lex_state = 112}, + [5964] = {.lex_state = 287, .external_lex_state = 112}, + [5965] = {.lex_state = 287, .external_lex_state = 112}, + [5966] = {.lex_state = 287, .external_lex_state = 112}, + [5967] = {.lex_state = 287, .external_lex_state = 112}, + [5968] = {.lex_state = 288, .external_lex_state = 112}, + [5969] = {.lex_state = 288, .external_lex_state = 112}, + [5970] = {.lex_state = 287, .external_lex_state = 112}, + [5971] = {.lex_state = 288, .external_lex_state = 112}, + [5972] = {.lex_state = 287, .external_lex_state = 112}, + [5973] = {.lex_state = 287, .external_lex_state = 112}, + [5974] = {.lex_state = 288, .external_lex_state = 112}, + [5975] = {.lex_state = 287, .external_lex_state = 112}, + [5976] = {.lex_state = 288, .external_lex_state = 112}, + [5977] = {.lex_state = 287, .external_lex_state = 112}, + [5978] = {.lex_state = 287, .external_lex_state = 112}, + [5979] = {.lex_state = 288, .external_lex_state = 112}, + [5980] = {.lex_state = 287, .external_lex_state = 112}, + [5981] = {.lex_state = 288, .external_lex_state = 112}, + [5982] = {.lex_state = 287, .external_lex_state = 112}, + [5983] = {.lex_state = 287, .external_lex_state = 112}, + [5984] = {.lex_state = 287, .external_lex_state = 112}, + [5985] = {.lex_state = 287, .external_lex_state = 112}, + [5986] = {.lex_state = 287, .external_lex_state = 112}, + [5987] = {.lex_state = 287, .external_lex_state = 112}, + [5988] = {.lex_state = 287, .external_lex_state = 112}, + [5989] = {.lex_state = 287, .external_lex_state = 112}, + [5990] = {.lex_state = 287, .external_lex_state = 112}, + [5991] = {.lex_state = 287, .external_lex_state = 112}, + [5992] = {.lex_state = 288, .external_lex_state = 112}, + [5993] = {.lex_state = 287, .external_lex_state = 112}, + [5994] = {.lex_state = 288, .external_lex_state = 112}, + [5995] = {.lex_state = 287, .external_lex_state = 112}, + [5996] = {.lex_state = 287, .external_lex_state = 112}, + [5997] = {.lex_state = 288, .external_lex_state = 112}, + [5998] = {.lex_state = 287, .external_lex_state = 112}, + [5999] = {.lex_state = 287, .external_lex_state = 112}, + [6000] = {.lex_state = 287, .external_lex_state = 112}, + [6001] = {.lex_state = 287, .external_lex_state = 112}, + [6002] = {.lex_state = 287, .external_lex_state = 112}, + [6003] = {.lex_state = 287, .external_lex_state = 112}, + [6004] = {.lex_state = 287, .external_lex_state = 112}, + [6005] = {.lex_state = 288, .external_lex_state = 112}, + [6006] = {.lex_state = 287, .external_lex_state = 112}, + [6007] = {.lex_state = 288, .external_lex_state = 112}, + [6008] = {.lex_state = 287, .external_lex_state = 112}, + [6009] = {.lex_state = 287, .external_lex_state = 112}, + [6010] = {.lex_state = 287, .external_lex_state = 112}, + [6011] = {.lex_state = 287, .external_lex_state = 112}, + [6012] = {.lex_state = 288, .external_lex_state = 112}, + [6013] = {.lex_state = 287, .external_lex_state = 112}, + [6014] = {.lex_state = 288, .external_lex_state = 112}, + [6015] = {.lex_state = 287, .external_lex_state = 112}, + [6016] = {.lex_state = 287, .external_lex_state = 112}, + [6017] = {.lex_state = 287, .external_lex_state = 112}, + [6018] = {.lex_state = 287, .external_lex_state = 112}, + [6019] = {.lex_state = 287, .external_lex_state = 112}, + [6020] = {.lex_state = 287, .external_lex_state = 112}, + [6021] = {.lex_state = 287, .external_lex_state = 112}, + [6022] = {.lex_state = 287, .external_lex_state = 112}, + [6023] = {.lex_state = 287, .external_lex_state = 112}, + [6024] = {.lex_state = 288, .external_lex_state = 112}, + [6025] = {.lex_state = 287, .external_lex_state = 112}, + [6026] = {.lex_state = 287, .external_lex_state = 112}, + [6027] = {.lex_state = 287, .external_lex_state = 112}, + [6028] = {.lex_state = 288, .external_lex_state = 112}, + [6029] = {.lex_state = 287, .external_lex_state = 112}, + [6030] = {.lex_state = 288, .external_lex_state = 112}, + [6031] = {.lex_state = 287, .external_lex_state = 112}, + [6032] = {.lex_state = 287, .external_lex_state = 112}, + [6033] = {.lex_state = 287, .external_lex_state = 112}, + [6034] = {.lex_state = 288, .external_lex_state = 112}, + [6035] = {.lex_state = 288, .external_lex_state = 112}, + [6036] = {.lex_state = 287, .external_lex_state = 112}, + [6037] = {.lex_state = 287, .external_lex_state = 112}, + [6038] = {.lex_state = 288, .external_lex_state = 112}, + [6039] = {.lex_state = 288, .external_lex_state = 112}, + [6040] = {.lex_state = 287, .external_lex_state = 112}, + [6041] = {.lex_state = 287, .external_lex_state = 112}, + [6042] = {.lex_state = 287, .external_lex_state = 112}, + [6043] = {.lex_state = 287, .external_lex_state = 112}, + [6044] = {.lex_state = 288, .external_lex_state = 112}, + [6045] = {.lex_state = 287, .external_lex_state = 112}, + [6046] = {.lex_state = 287, .external_lex_state = 112}, + [6047] = {.lex_state = 288, .external_lex_state = 112}, + [6048] = {.lex_state = 288, .external_lex_state = 112}, + [6049] = {.lex_state = 287, .external_lex_state = 112}, + [6050] = {.lex_state = 287, .external_lex_state = 112}, + [6051] = {.lex_state = 288, .external_lex_state = 112}, + [6052] = {.lex_state = 287, .external_lex_state = 112}, + [6053] = {.lex_state = 288, .external_lex_state = 112}, + [6054] = {.lex_state = 287, .external_lex_state = 112}, + [6055] = {.lex_state = 287, .external_lex_state = 112}, + [6056] = {.lex_state = 287, .external_lex_state = 112}, + [6057] = {.lex_state = 287, .external_lex_state = 112}, + [6058] = {.lex_state = 287, .external_lex_state = 112}, + [6059] = {.lex_state = 287, .external_lex_state = 112}, + [6060] = {.lex_state = 288, .external_lex_state = 112}, + [6061] = {.lex_state = 288, .external_lex_state = 112}, + [6062] = {.lex_state = 287, .external_lex_state = 112}, + [6063] = {.lex_state = 287, .external_lex_state = 112}, + [6064] = {.lex_state = 287, .external_lex_state = 112}, + [6065] = {.lex_state = 287, .external_lex_state = 112}, + [6066] = {.lex_state = 288, .external_lex_state = 112}, + [6067] = {.lex_state = 287, .external_lex_state = 112}, + [6068] = {.lex_state = 287, .external_lex_state = 112}, + [6069] = {.lex_state = 287, .external_lex_state = 112}, + [6070] = {.lex_state = 288, .external_lex_state = 112}, + [6071] = {.lex_state = 288, .external_lex_state = 112}, + [6072] = {.lex_state = 287, .external_lex_state = 112}, + [6073] = {.lex_state = 287, .external_lex_state = 112}, + [6074] = {.lex_state = 287, .external_lex_state = 112}, + [6075] = {.lex_state = 287, .external_lex_state = 112}, + [6076] = {.lex_state = 287, .external_lex_state = 112}, + [6077] = {.lex_state = 287, .external_lex_state = 112}, + [6078] = {.lex_state = 288, .external_lex_state = 112}, + [6079] = {.lex_state = 287, .external_lex_state = 112}, + [6080] = {.lex_state = 287, .external_lex_state = 112}, + [6081] = {.lex_state = 287, .external_lex_state = 112}, + [6082] = {.lex_state = 288, .external_lex_state = 112}, + [6083] = {.lex_state = 287, .external_lex_state = 112}, + [6084] = {.lex_state = 288, .external_lex_state = 112}, + [6085] = {.lex_state = 288, .external_lex_state = 112}, + [6086] = {.lex_state = 287, .external_lex_state = 112}, + [6087] = {.lex_state = 287, .external_lex_state = 112}, + [6088] = {.lex_state = 289, .external_lex_state = 113}, + [6089] = {.lex_state = 289, .external_lex_state = 113}, + [6090] = {.lex_state = 289, .external_lex_state = 113}, + [6091] = {.lex_state = 289, .external_lex_state = 113}, + [6092] = {.lex_state = 289, .external_lex_state = 113}, + [6093] = {.lex_state = 289, .external_lex_state = 113}, + [6094] = {.lex_state = 289, .external_lex_state = 113}, + [6095] = {.lex_state = 66, .external_lex_state = 104}, + [6096] = {.lex_state = 66, .external_lex_state = 104}, + [6097] = {.lex_state = 289, .external_lex_state = 113}, + [6098] = {.lex_state = 290, .external_lex_state = 112}, + [6099] = {.lex_state = 291, .external_lex_state = 112}, + [6100] = {.lex_state = 312, .external_lex_state = 113}, + [6101] = {.lex_state = 291, .external_lex_state = 112}, + [6102] = {.lex_state = 291, .external_lex_state = 112}, + [6103] = {.lex_state = 291, .external_lex_state = 112}, + [6104] = {.lex_state = 312, .external_lex_state = 113}, + [6105] = {.lex_state = 312, .external_lex_state = 113}, + [6106] = {.lex_state = 312, .external_lex_state = 113}, + [6107] = {.lex_state = 312, .external_lex_state = 113}, + [6108] = {.lex_state = 291, .external_lex_state = 112}, + [6109] = {.lex_state = 312, .external_lex_state = 113}, + [6110] = {.lex_state = 291, .external_lex_state = 112}, + [6111] = {.lex_state = 291, .external_lex_state = 112}, + [6112] = {.lex_state = 291, .external_lex_state = 112}, + [6113] = {.lex_state = 312, .external_lex_state = 113}, + [6114] = {.lex_state = 291, .external_lex_state = 112}, + [6115] = {.lex_state = 312, .external_lex_state = 113}, + [6116] = {.lex_state = 312, .external_lex_state = 113}, + [6117] = {.lex_state = 323}, + [6118] = {.lex_state = 323}, + [6119] = {.lex_state = 323}, + [6120] = {.lex_state = 323}, + [6121] = {.lex_state = 313, .external_lex_state = 114}, + [6122] = {.lex_state = 318, .external_lex_state = 115}, + [6123] = {.lex_state = 318, .external_lex_state = 115}, + [6124] = {.lex_state = 318, .external_lex_state = 115}, + [6125] = {.lex_state = 318, .external_lex_state = 115}, + [6126] = {.lex_state = 323}, + [6127] = {.lex_state = 318, .external_lex_state = 115}, + [6128] = {.lex_state = 271, .external_lex_state = 116}, + [6129] = {.lex_state = 323}, + [6130] = {.lex_state = 323}, + [6131] = {.lex_state = 271, .external_lex_state = 116}, + [6132] = {.lex_state = 323}, + [6133] = {.lex_state = 323}, + [6134] = {.lex_state = 323}, + [6135] = {.lex_state = 323}, + [6136] = {.lex_state = 323}, + [6137] = {.lex_state = 271, .external_lex_state = 116}, + [6138] = {.lex_state = 318, .external_lex_state = 115}, + [6139] = {.lex_state = 323}, + [6140] = {.lex_state = 318, .external_lex_state = 115}, + [6141] = {.lex_state = 318, .external_lex_state = 115}, + [6142] = {.lex_state = 323}, + [6143] = {.lex_state = 318, .external_lex_state = 115}, + [6144] = {.lex_state = 323}, + [6145] = {.lex_state = 323}, + [6146] = {.lex_state = 323}, + [6147] = {.lex_state = 318, .external_lex_state = 115}, + [6148] = {.lex_state = 323}, + [6149] = {.lex_state = 323}, + [6150] = {.lex_state = 323}, + [6151] = {.lex_state = 323}, + [6152] = {.lex_state = 323}, + [6153] = {.lex_state = 323}, + [6154] = {.lex_state = 318, .external_lex_state = 115}, + [6155] = {.lex_state = 323}, + [6156] = {.lex_state = 323}, + [6157] = {.lex_state = 323}, + [6158] = {.lex_state = 323}, + [6159] = {.lex_state = 323, .external_lex_state = 99}, + [6160] = {.lex_state = 323, .external_lex_state = 99}, + [6161] = {.lex_state = 323, .external_lex_state = 99}, + [6162] = {.lex_state = 323, .external_lex_state = 99}, + [6163] = {.lex_state = 323, .external_lex_state = 99}, + [6164] = {.lex_state = 313}, + [6165] = {.lex_state = 323, .external_lex_state = 99}, + [6166] = {.lex_state = 323, .external_lex_state = 99}, + [6167] = {.lex_state = 323, .external_lex_state = 99}, + [6168] = {.lex_state = 323, .external_lex_state = 99}, + [6169] = {.lex_state = 323, .external_lex_state = 99}, + [6170] = {.lex_state = 323, .external_lex_state = 99}, + [6171] = {.lex_state = 323, .external_lex_state = 99}, + [6172] = {.lex_state = 323, .external_lex_state = 99}, + [6173] = {.lex_state = 323, .external_lex_state = 99}, + [6174] = {.lex_state = 323, .external_lex_state = 99}, + [6175] = {.lex_state = 323, .external_lex_state = 99}, + [6176] = {.lex_state = 324}, + [6177] = {.lex_state = 323, .external_lex_state = 99}, + [6178] = {.lex_state = 323, .external_lex_state = 99}, + [6179] = {.lex_state = 318}, + [6180] = {.lex_state = 323, .external_lex_state = 99}, + [6181] = {.lex_state = 323, .external_lex_state = 99}, + [6182] = {.lex_state = 323, .external_lex_state = 99}, + [6183] = {.lex_state = 318}, + [6184] = {.lex_state = 323, .external_lex_state = 99}, + [6185] = {.lex_state = 323, .external_lex_state = 99}, + [6186] = {.lex_state = 323, .external_lex_state = 99}, + [6187] = {.lex_state = 314, .external_lex_state = 117}, + [6188] = {.lex_state = 70, .external_lex_state = 118}, + [6189] = {.lex_state = 70, .external_lex_state = 118}, + [6190] = {.lex_state = 315, .external_lex_state = 119}, + [6191] = {.lex_state = 70, .external_lex_state = 118}, + [6192] = {.lex_state = 70, .external_lex_state = 118}, + [6193] = {.lex_state = 70, .external_lex_state = 118}, + [6194] = {.lex_state = 315, .external_lex_state = 119}, + [6195] = {.lex_state = 321}, + [6196] = {.lex_state = 321}, + [6197] = {.lex_state = 315, .external_lex_state = 119}, + [6198] = {.lex_state = 70, .external_lex_state = 118}, + [6199] = {.lex_state = 70, .external_lex_state = 118}, + [6200] = {.lex_state = 70, .external_lex_state = 118}, + [6201] = {.lex_state = 70, .external_lex_state = 118}, + [6202] = {.lex_state = 70, .external_lex_state = 118}, + [6203] = {.lex_state = 70, .external_lex_state = 118}, + [6204] = {.lex_state = 70, .external_lex_state = 118}, + [6205] = {.lex_state = 70, .external_lex_state = 118}, + [6206] = {.lex_state = 70, .external_lex_state = 118}, + [6207] = {.lex_state = 70, .external_lex_state = 118}, + [6208] = {.lex_state = 314, .external_lex_state = 114}, + [6209] = {.lex_state = 70, .external_lex_state = 118}, + [6210] = {.lex_state = 70, .external_lex_state = 118}, + [6211] = {.lex_state = 271, .external_lex_state = 116}, + [6212] = {.lex_state = 314, .external_lex_state = 114}, + [6213] = {.lex_state = 70, .external_lex_state = 120}, + [6214] = {.lex_state = 70, .external_lex_state = 118}, + [6215] = {.lex_state = 314, .external_lex_state = 114}, + [6216] = {.lex_state = 314, .external_lex_state = 114}, + [6217] = {.lex_state = 70, .external_lex_state = 118}, + [6218] = {.lex_state = 314, .external_lex_state = 114}, + [6219] = {.lex_state = 70, .external_lex_state = 120}, + [6220] = {.lex_state = 70, .external_lex_state = 120}, + [6221] = {.lex_state = 70, .external_lex_state = 118}, + [6222] = {.lex_state = 70, .external_lex_state = 118}, + [6223] = {.lex_state = 70, .external_lex_state = 120}, + [6224] = {.lex_state = 271, .external_lex_state = 116}, + [6225] = {.lex_state = 70, .external_lex_state = 118}, + [6226] = {.lex_state = 271, .external_lex_state = 116}, + [6227] = {.lex_state = 314, .external_lex_state = 114}, + [6228] = {.lex_state = 314, .external_lex_state = 114}, + [6229] = {.lex_state = 314, .external_lex_state = 114}, + [6230] = {.lex_state = 70, .external_lex_state = 118}, + [6231] = {.lex_state = 70, .external_lex_state = 118}, + [6232] = {.lex_state = 70, .external_lex_state = 118}, + [6233] = {.lex_state = 271, .external_lex_state = 116}, + [6234] = {.lex_state = 314, .external_lex_state = 114}, + [6235] = {.lex_state = 271, .external_lex_state = 116}, + [6236] = {.lex_state = 70, .external_lex_state = 118}, + [6237] = {.lex_state = 271, .external_lex_state = 116}, + [6238] = {.lex_state = 70, .external_lex_state = 118}, + [6239] = {.lex_state = 271, .external_lex_state = 116}, + [6240] = {.lex_state = 70, .external_lex_state = 120}, + [6241] = {.lex_state = 70, .external_lex_state = 118}, + [6242] = {.lex_state = 70, .external_lex_state = 118}, + [6243] = {.lex_state = 70, .external_lex_state = 118}, + [6244] = {.lex_state = 70, .external_lex_state = 118}, + [6245] = {.lex_state = 314, .external_lex_state = 114}, + [6246] = {.lex_state = 314, .external_lex_state = 114}, + [6247] = {.lex_state = 314, .external_lex_state = 114}, + [6248] = {.lex_state = 271}, + [6249] = {.lex_state = 271}, + [6250] = {.lex_state = 271}, + [6251] = {.lex_state = 271}, + [6252] = {.lex_state = 271}, + [6253] = {.lex_state = 271}, + [6254] = {.lex_state = 271}, + [6255] = {.lex_state = 271}, + [6256] = {.lex_state = 314, .external_lex_state = 114}, + [6257] = {.lex_state = 271}, + [6258] = {.lex_state = 314, .external_lex_state = 114}, + [6259] = {.lex_state = 314, .external_lex_state = 114}, + [6260] = {.lex_state = 314, .external_lex_state = 114}, + [6261] = {.lex_state = 314, .external_lex_state = 114}, + [6262] = {.lex_state = 314, .external_lex_state = 114}, + [6263] = {.lex_state = 271}, + [6264] = {.lex_state = 314, .external_lex_state = 114}, + [6265] = {.lex_state = 324}, + [6266] = {.lex_state = 314, .external_lex_state = 114}, + [6267] = {.lex_state = 314, .external_lex_state = 114}, + [6268] = {.lex_state = 314, .external_lex_state = 114}, + [6269] = {.lex_state = 271}, + [6270] = {.lex_state = 65, .external_lex_state = 120}, + [6271] = {.lex_state = 271}, + [6272] = {.lex_state = 271}, + [6273] = {.lex_state = 271}, + [6274] = {.lex_state = 271}, + [6275] = {.lex_state = 314, .external_lex_state = 114}, + [6276] = {.lex_state = 271}, + [6277] = {.lex_state = 271}, + [6278] = {.lex_state = 271}, + [6279] = {.lex_state = 314, .external_lex_state = 114}, + [6280] = {.lex_state = 65, .external_lex_state = 120}, + [6281] = {.lex_state = 271}, + [6282] = {.lex_state = 271}, + [6283] = {.lex_state = 271}, + [6284] = {.lex_state = 271}, + [6285] = {.lex_state = 271}, + [6286] = {.lex_state = 65, .external_lex_state = 120}, + [6287] = {.lex_state = 314, .external_lex_state = 114}, + [6288] = {.lex_state = 271}, + [6289] = {.lex_state = 324}, + [6290] = {.lex_state = 271}, + [6291] = {.lex_state = 271}, + [6292] = {.lex_state = 271}, + [6293] = {.lex_state = 315, .external_lex_state = 119}, + [6294] = {.lex_state = 271}, + [6295] = {.lex_state = 271}, + [6296] = {.lex_state = 271}, + [6297] = {.lex_state = 271}, + [6298] = {.lex_state = 271}, + [6299] = {.lex_state = 314, .external_lex_state = 114}, + [6300] = {.lex_state = 65, .external_lex_state = 120}, + [6301] = {.lex_state = 314, .external_lex_state = 114}, + [6302] = {.lex_state = 297, .external_lex_state = 115}, + [6303] = {.lex_state = 297, .external_lex_state = 115}, + [6304] = {.lex_state = 70, .external_lex_state = 120}, + [6305] = {.lex_state = 271}, + [6306] = {.lex_state = 315, .external_lex_state = 119}, + [6307] = {.lex_state = 271}, + [6308] = {.lex_state = 271}, + [6309] = {.lex_state = 271}, + [6310] = {.lex_state = 297, .external_lex_state = 115}, + [6311] = {.lex_state = 271}, + [6312] = {.lex_state = 297, .external_lex_state = 115}, + [6313] = {.lex_state = 271}, + [6314] = {.lex_state = 326, .external_lex_state = 121}, + [6315] = {.lex_state = 271}, + [6316] = {.lex_state = 271}, + [6317] = {.lex_state = 315, .external_lex_state = 119}, + [6318] = {.lex_state = 297, .external_lex_state = 115}, + [6319] = {.lex_state = 65, .external_lex_state = 120}, + [6320] = {.lex_state = 271}, + [6321] = {.lex_state = 271}, + [6322] = {.lex_state = 271}, + [6323] = {.lex_state = 271}, + [6324] = {.lex_state = 271}, + [6325] = {.lex_state = 271}, + [6326] = {.lex_state = 297, .external_lex_state = 115}, + [6327] = {.lex_state = 324}, + [6328] = {.lex_state = 297, .external_lex_state = 115}, + [6329] = {.lex_state = 271}, + [6330] = {.lex_state = 65, .external_lex_state = 120}, + [6331] = {.lex_state = 324}, + [6332] = {.lex_state = 271}, + [6333] = {.lex_state = 271}, + [6334] = {.lex_state = 65, .external_lex_state = 120}, + [6335] = {.lex_state = 271}, + [6336] = {.lex_state = 271}, + [6337] = {.lex_state = 324}, + [6338] = {.lex_state = 297, .external_lex_state = 115}, + [6339] = {.lex_state = 324}, + [6340] = {.lex_state = 324}, + [6341] = {.lex_state = 271}, + [6342] = {.lex_state = 271}, + [6343] = {.lex_state = 271}, + [6344] = {.lex_state = 314, .external_lex_state = 114}, + [6345] = {.lex_state = 271}, + [6346] = {.lex_state = 326, .external_lex_state = 121}, + [6347] = {.lex_state = 271}, + [6348] = {.lex_state = 271}, + [6349] = {.lex_state = 271}, + [6350] = {.lex_state = 271}, + [6351] = {.lex_state = 271}, + [6352] = {.lex_state = 271}, + [6353] = {.lex_state = 326, .external_lex_state = 121}, + [6354] = {.lex_state = 271}, + [6355] = {.lex_state = 271}, + [6356] = {.lex_state = 271}, + [6357] = {.lex_state = 271}, + [6358] = {.lex_state = 271}, + [6359] = {.lex_state = 271}, + [6360] = {.lex_state = 271}, + [6361] = {.lex_state = 315, .external_lex_state = 119}, + [6362] = {.lex_state = 271}, + [6363] = {.lex_state = 324}, + [6364] = {.lex_state = 297, .external_lex_state = 115}, + [6365] = {.lex_state = 65, .external_lex_state = 120}, + [6366] = {.lex_state = 271}, + [6367] = {.lex_state = 271}, + [6368] = {.lex_state = 542, .external_lex_state = 122}, + [6369] = {.lex_state = 542, .external_lex_state = 122}, + [6370] = {.lex_state = 271, .external_lex_state = 123}, + [6371] = {.lex_state = 542, .external_lex_state = 122}, + [6372] = {.lex_state = 326, .external_lex_state = 124}, + [6373] = {.lex_state = 297, .external_lex_state = 115}, + [6374] = {.lex_state = 70, .external_lex_state = 120}, + [6375] = {.lex_state = 542, .external_lex_state = 122}, + [6376] = {.lex_state = 70, .external_lex_state = 120}, + [6377] = {.lex_state = 542, .external_lex_state = 122}, + [6378] = {.lex_state = 542, .external_lex_state = 122}, + [6379] = {.lex_state = 326, .external_lex_state = 124}, + [6380] = {.lex_state = 542, .external_lex_state = 122}, + [6381] = {.lex_state = 70, .external_lex_state = 120}, + [6382] = {.lex_state = 542, .external_lex_state = 122}, + [6383] = {.lex_state = 542, .external_lex_state = 122}, + [6384] = {.lex_state = 542, .external_lex_state = 122}, + [6385] = {.lex_state = 542, .external_lex_state = 122}, + [6386] = {.lex_state = 313}, + [6387] = {.lex_state = 542, .external_lex_state = 122}, + [6388] = {.lex_state = 271, .external_lex_state = 123}, + [6389] = {.lex_state = 271, .external_lex_state = 125}, + [6390] = {.lex_state = 271, .external_lex_state = 125}, + [6391] = {.lex_state = 542, .external_lex_state = 122}, + [6392] = {.lex_state = 542, .external_lex_state = 122}, + [6393] = {.lex_state = 297, .external_lex_state = 115}, + [6394] = {.lex_state = 271, .external_lex_state = 125}, + [6395] = {.lex_state = 542, .external_lex_state = 122}, + [6396] = {.lex_state = 313}, + [6397] = {.lex_state = 542, .external_lex_state = 122}, + [6398] = {.lex_state = 542, .external_lex_state = 122}, + [6399] = {.lex_state = 542, .external_lex_state = 122}, + [6400] = {.lex_state = 324}, + [6401] = {.lex_state = 542, .external_lex_state = 122}, + [6402] = {.lex_state = 271, .external_lex_state = 125}, + [6403] = {.lex_state = 271, .external_lex_state = 123}, + [6404] = {.lex_state = 542, .external_lex_state = 122}, + [6405] = {.lex_state = 296}, + [6406] = {.lex_state = 542, .external_lex_state = 122}, + [6407] = {.lex_state = 271, .external_lex_state = 123}, + [6408] = {.lex_state = 70, .external_lex_state = 120}, + [6409] = {.lex_state = 296}, + [6410] = {.lex_state = 326, .external_lex_state = 124}, + [6411] = {.lex_state = 542, .external_lex_state = 122}, + [6412] = {.lex_state = 542, .external_lex_state = 122}, + [6413] = {.lex_state = 70, .external_lex_state = 120}, + [6414] = {.lex_state = 542, .external_lex_state = 122}, + [6415] = {.lex_state = 296}, + [6416] = {.lex_state = 542, .external_lex_state = 122}, + [6417] = {.lex_state = 313}, + [6418] = {.lex_state = 542, .external_lex_state = 122}, + [6419] = {.lex_state = 297, .external_lex_state = 115}, + [6420] = {.lex_state = 297, .external_lex_state = 115}, + [6421] = {.lex_state = 542, .external_lex_state = 122}, + [6422] = {.lex_state = 542, .external_lex_state = 122}, + [6423] = {.lex_state = 542, .external_lex_state = 122}, + [6424] = {.lex_state = 271, .external_lex_state = 125}, + [6425] = {.lex_state = 326, .external_lex_state = 124}, + [6426] = {.lex_state = 296}, + [6427] = {.lex_state = 326, .external_lex_state = 124}, + [6428] = {.lex_state = 271, .external_lex_state = 125}, + [6429] = {.lex_state = 542, .external_lex_state = 122}, + [6430] = {.lex_state = 542, .external_lex_state = 122}, + [6431] = {.lex_state = 542, .external_lex_state = 122}, + [6432] = {.lex_state = 542, .external_lex_state = 122}, + [6433] = {.lex_state = 542, .external_lex_state = 122}, + [6434] = {.lex_state = 542, .external_lex_state = 122}, + [6435] = {.lex_state = 326, .external_lex_state = 121}, + [6436] = {.lex_state = 326, .external_lex_state = 121}, + [6437] = {.lex_state = 542, .external_lex_state = 122}, + [6438] = {.lex_state = 326, .external_lex_state = 121}, + [6439] = {.lex_state = 297, .external_lex_state = 115}, + [6440] = {.lex_state = 542, .external_lex_state = 122}, + [6441] = {.lex_state = 313}, + [6442] = {.lex_state = 542, .external_lex_state = 122}, + [6443] = {.lex_state = 70, .external_lex_state = 120}, + [6444] = {.lex_state = 542, .external_lex_state = 122}, + [6445] = {.lex_state = 542, .external_lex_state = 122}, + [6446] = {.lex_state = 542, .external_lex_state = 122}, + [6447] = {.lex_state = 542, .external_lex_state = 122}, + [6448] = {.lex_state = 271, .external_lex_state = 125}, + [6449] = {.lex_state = 326, .external_lex_state = 124}, + [6450] = {.lex_state = 542, .external_lex_state = 122}, + [6451] = {.lex_state = 542, .external_lex_state = 122}, + [6452] = {.lex_state = 542, .external_lex_state = 122}, + [6453] = {.lex_state = 542, .external_lex_state = 122}, + [6454] = {.lex_state = 542, .external_lex_state = 122}, + [6455] = {.lex_state = 542, .external_lex_state = 122}, + [6456] = {.lex_state = 542, .external_lex_state = 122}, + [6457] = {.lex_state = 542, .external_lex_state = 122}, + [6458] = {.lex_state = 542, .external_lex_state = 122}, + [6459] = {.lex_state = 542, .external_lex_state = 122}, + [6460] = {.lex_state = 326, .external_lex_state = 124}, + [6461] = {.lex_state = 542, .external_lex_state = 122}, + [6462] = {.lex_state = 542, .external_lex_state = 122}, + [6463] = {.lex_state = 65, .external_lex_state = 120}, + [6464] = {.lex_state = 542, .external_lex_state = 122}, + [6465] = {.lex_state = 271, .external_lex_state = 125}, + [6466] = {.lex_state = 542, .external_lex_state = 122}, + [6467] = {.lex_state = 542, .external_lex_state = 122}, + [6468] = {.lex_state = 542, .external_lex_state = 122}, + [6469] = {.lex_state = 70, .external_lex_state = 120}, + [6470] = {.lex_state = 322}, + [6471] = {.lex_state = 70, .external_lex_state = 120}, + [6472] = {.lex_state = 271, .external_lex_state = 125}, + [6473] = {.lex_state = 542, .external_lex_state = 122}, + [6474] = {.lex_state = 271, .external_lex_state = 125}, + [6475] = {.lex_state = 326, .external_lex_state = 124}, + [6476] = {.lex_state = 271, .external_lex_state = 125}, + [6477] = {.lex_state = 271, .external_lex_state = 125}, + [6478] = {.lex_state = 271, .external_lex_state = 125}, + [6479] = {.lex_state = 542, .external_lex_state = 122}, + [6480] = {.lex_state = 326, .external_lex_state = 124}, + [6481] = {.lex_state = 65, .external_lex_state = 120}, + [6482] = {.lex_state = 314, .external_lex_state = 114}, + [6483] = {.lex_state = 297, .external_lex_state = 115}, + [6484] = {.lex_state = 297, .external_lex_state = 115}, + [6485] = {.lex_state = 297, .external_lex_state = 115}, + [6486] = {.lex_state = 297, .external_lex_state = 115}, + [6487] = {.lex_state = 326, .external_lex_state = 124}, + [6488] = {.lex_state = 314, .external_lex_state = 114}, + [6489] = {.lex_state = 271, .external_lex_state = 125}, + [6490] = {.lex_state = 326, .external_lex_state = 124}, + [6491] = {.lex_state = 271, .external_lex_state = 126}, + [6492] = {.lex_state = 271, .external_lex_state = 126}, + [6493] = {.lex_state = 65, .external_lex_state = 120}, + [6494] = {.lex_state = 297, .external_lex_state = 115}, + [6495] = {.lex_state = 313}, + [6496] = {.lex_state = 271, .external_lex_state = 126}, + [6497] = {.lex_state = 297, .external_lex_state = 115}, + [6498] = {.lex_state = 275, .external_lex_state = 124}, + [6499] = {.lex_state = 271, .external_lex_state = 125}, + [6500] = {.lex_state = 314, .external_lex_state = 114}, + [6501] = {.lex_state = 271, .external_lex_state = 126}, + [6502] = {.lex_state = 297, .external_lex_state = 115}, + [6503] = {.lex_state = 297, .external_lex_state = 115}, + [6504] = {.lex_state = 297, .external_lex_state = 115}, + [6505] = {.lex_state = 326, .external_lex_state = 124}, + [6506] = {.lex_state = 326, .external_lex_state = 124}, + [6507] = {.lex_state = 326, .external_lex_state = 124}, + [6508] = {.lex_state = 313}, + [6509] = {.lex_state = 297, .external_lex_state = 115}, + [6510] = {.lex_state = 297, .external_lex_state = 115}, + [6511] = {.lex_state = 271, .external_lex_state = 126}, + [6512] = {.lex_state = 313}, + [6513] = {.lex_state = 297, .external_lex_state = 115}, + [6514] = {.lex_state = 326, .external_lex_state = 124}, + [6515] = {.lex_state = 326, .external_lex_state = 124}, + [6516] = {.lex_state = 326, .external_lex_state = 124}, + [6517] = {.lex_state = 326, .external_lex_state = 124}, + [6518] = {.lex_state = 326, .external_lex_state = 124}, + [6519] = {.lex_state = 297, .external_lex_state = 115}, + [6520] = {.lex_state = 297, .external_lex_state = 115}, + [6521] = {.lex_state = 271, .external_lex_state = 126}, + [6522] = {.lex_state = 297, .external_lex_state = 115}, + [6523] = {.lex_state = 297, .external_lex_state = 115}, + [6524] = {.lex_state = 271, .external_lex_state = 126}, + [6525] = {.lex_state = 326, .external_lex_state = 124}, + [6526] = {.lex_state = 297, .external_lex_state = 115}, + [6527] = {.lex_state = 271, .external_lex_state = 125}, + [6528] = {.lex_state = 271, .external_lex_state = 125}, + [6529] = {.lex_state = 271, .external_lex_state = 125}, + [6530] = {.lex_state = 314, .external_lex_state = 114}, + [6531] = {.lex_state = 65, .external_lex_state = 120}, + [6532] = {.lex_state = 326, .external_lex_state = 124}, + [6533] = {.lex_state = 271, .external_lex_state = 126}, + [6534] = {.lex_state = 297, .external_lex_state = 115}, + [6535] = {.lex_state = 297, .external_lex_state = 115}, + [6536] = {.lex_state = 271, .external_lex_state = 126}, + [6537] = {.lex_state = 326, .external_lex_state = 124}, + [6538] = {.lex_state = 271, .external_lex_state = 125}, + [6539] = {.lex_state = 271, .external_lex_state = 126}, + [6540] = {.lex_state = 271, .external_lex_state = 125}, + [6541] = {.lex_state = 271, .external_lex_state = 126}, + [6542] = {.lex_state = 271, .external_lex_state = 126}, + [6543] = {.lex_state = 296}, + [6544] = {.lex_state = 313}, + [6545] = {.lex_state = 296}, + [6546] = {.lex_state = 271, .external_lex_state = 125}, + [6547] = {.lex_state = 326}, + [6548] = {.lex_state = 271}, + [6549] = {.lex_state = 326}, + [6550] = {.lex_state = 271}, + [6551] = {.lex_state = 273}, + [6552] = {.lex_state = 271}, + [6553] = {.lex_state = 271}, + [6554] = {.lex_state = 542, .external_lex_state = 127}, + [6555] = {.lex_state = 542, .external_lex_state = 127}, + [6556] = {.lex_state = 542, .external_lex_state = 127}, + [6557] = {.lex_state = 542, .external_lex_state = 127}, + [6558] = {.lex_state = 256}, + [6559] = {.lex_state = 271}, + [6560] = {.lex_state = 326}, + [6561] = {.lex_state = 314, .external_lex_state = 114}, + [6562] = {.lex_state = 271}, + [6563] = {.lex_state = 542, .external_lex_state = 127}, + [6564] = {.lex_state = 542, .external_lex_state = 127}, + [6565] = {.lex_state = 271}, + [6566] = {.lex_state = 256}, + [6567] = {.lex_state = 542}, + [6568] = {.lex_state = 256}, + [6569] = {.lex_state = 542}, + [6570] = {.lex_state = 542}, + [6571] = {.lex_state = 542, .external_lex_state = 127}, + [6572] = {.lex_state = 256}, + [6573] = {.lex_state = 542, .external_lex_state = 127}, + [6574] = {.lex_state = 271}, + [6575] = {.lex_state = 326}, + [6576] = {.lex_state = 271}, + [6577] = {.lex_state = 271}, + [6578] = {.lex_state = 326}, + [6579] = {.lex_state = 271}, + [6580] = {.lex_state = 271}, + [6581] = {.lex_state = 296}, + [6582] = {.lex_state = 314, .external_lex_state = 117}, + [6583] = {.lex_state = 312, .external_lex_state = 115}, + [6584] = {.lex_state = 256}, + [6585] = {.lex_state = 312, .external_lex_state = 115}, + [6586] = {.lex_state = 271}, + [6587] = {.lex_state = 271}, + [6588] = {.lex_state = 271}, + [6589] = {.lex_state = 273}, + [6590] = {.lex_state = 542}, + [6591] = {.lex_state = 542}, + [6592] = {.lex_state = 271}, + [6593] = {.lex_state = 271}, + [6594] = {.lex_state = 271}, + [6595] = {.lex_state = 542}, + [6596] = {.lex_state = 542}, + [6597] = {.lex_state = 542}, + [6598] = {.lex_state = 542}, + [6599] = {.lex_state = 542}, + [6600] = {.lex_state = 271}, + [6601] = {.lex_state = 271}, + [6602] = {.lex_state = 271}, + [6603] = {.lex_state = 326}, + [6604] = {.lex_state = 326}, + [6605] = {.lex_state = 273}, + [6606] = {.lex_state = 271}, + [6607] = {.lex_state = 271}, + [6608] = {.lex_state = 271}, + [6609] = {.lex_state = 312, .external_lex_state = 115}, + [6610] = {.lex_state = 312, .external_lex_state = 115}, + [6611] = {.lex_state = 542}, + [6612] = {.lex_state = 271}, + [6613] = {.lex_state = 271}, + [6614] = {.lex_state = 256}, + [6615] = {.lex_state = 314, .external_lex_state = 114}, + [6616] = {.lex_state = 326}, + [6617] = {.lex_state = 271}, + [6618] = {.lex_state = 271}, + [6619] = {.lex_state = 326}, + [6620] = {.lex_state = 542}, + [6621] = {.lex_state = 271}, + [6622] = {.lex_state = 271}, + [6623] = {.lex_state = 271}, + [6624] = {.lex_state = 271}, + [6625] = {.lex_state = 271}, + [6626] = {.lex_state = 271}, + [6627] = {.lex_state = 542}, + [6628] = {.lex_state = 326}, + [6629] = {.lex_state = 271}, + [6630] = {.lex_state = 271}, + [6631] = {.lex_state = 241, .external_lex_state = 115}, + [6632] = {.lex_state = 271}, + [6633] = {.lex_state = 271}, + [6634] = {.lex_state = 326}, + [6635] = {.lex_state = 314, .external_lex_state = 117}, + [6636] = {.lex_state = 326}, + [6637] = {.lex_state = 542}, + [6638] = {.lex_state = 326}, + [6639] = {.lex_state = 271}, + [6640] = {.lex_state = 273}, + [6641] = {.lex_state = 326}, + [6642] = {.lex_state = 271}, + [6643] = {.lex_state = 271}, + [6644] = {.lex_state = 271}, + [6645] = {.lex_state = 314, .external_lex_state = 117}, + [6646] = {.lex_state = 271}, + [6647] = {.lex_state = 271}, + [6648] = {.lex_state = 271}, + [6649] = {.lex_state = 542}, + [6650] = {.lex_state = 271}, + [6651] = {.lex_state = 314, .external_lex_state = 114}, + [6652] = {.lex_state = 542}, + [6653] = {.lex_state = 271}, + [6654] = {.lex_state = 271}, + [6655] = {.lex_state = 271}, + [6656] = {.lex_state = 271}, + [6657] = {.lex_state = 271}, + [6658] = {.lex_state = 271}, + [6659] = {.lex_state = 273}, + [6660] = {.lex_state = 271}, + [6661] = {.lex_state = 271}, + [6662] = {.lex_state = 326}, + [6663] = {.lex_state = 314, .external_lex_state = 117}, + [6664] = {.lex_state = 326}, + [6665] = {.lex_state = 271}, + [6666] = {.lex_state = 542}, + [6667] = {.lex_state = 542}, + [6668] = {.lex_state = 326}, + [6669] = {.lex_state = 271}, + [6670] = {.lex_state = 271}, + [6671] = {.lex_state = 273}, + [6672] = {.lex_state = 542}, + [6673] = {.lex_state = 326}, + [6674] = {.lex_state = 256}, + [6675] = {.lex_state = 271}, + [6676] = {.lex_state = 542}, + [6677] = {.lex_state = 542, .external_lex_state = 127}, + [6678] = {.lex_state = 271}, + [6679] = {.lex_state = 273}, + [6680] = {.lex_state = 271}, + [6681] = {.lex_state = 271}, + [6682] = {.lex_state = 271}, + [6683] = {.lex_state = 271}, + [6684] = {.lex_state = 271}, + [6685] = {.lex_state = 271}, + [6686] = {.lex_state = 326}, + [6687] = {.lex_state = 271}, + [6688] = {.lex_state = 271}, + [6689] = {.lex_state = 271}, + [6690] = {.lex_state = 542}, + [6691] = {.lex_state = 271}, + [6692] = {.lex_state = 271}, + [6693] = {.lex_state = 271}, + [6694] = {.lex_state = 542}, + [6695] = {.lex_state = 542}, + [6696] = {.lex_state = 326}, + [6697] = {.lex_state = 271}, + [6698] = {.lex_state = 271}, + [6699] = {.lex_state = 271}, + [6700] = {.lex_state = 542}, + [6701] = {.lex_state = 271}, + [6702] = {.lex_state = 271}, + [6703] = {.lex_state = 542}, + [6704] = {.lex_state = 326}, + [6705] = {.lex_state = 326}, + [6706] = {.lex_state = 271}, + [6707] = {.lex_state = 542}, + [6708] = {.lex_state = 271}, + [6709] = {.lex_state = 542}, + [6710] = {.lex_state = 542}, + [6711] = {.lex_state = 542}, + [6712] = {.lex_state = 271}, + [6713] = {.lex_state = 271}, + [6714] = {.lex_state = 271}, + [6715] = {.lex_state = 271}, + [6716] = {.lex_state = 542}, + [6717] = {.lex_state = 326}, + [6718] = {.lex_state = 256}, + [6719] = {.lex_state = 542}, + [6720] = {.lex_state = 271}, + [6721] = {.lex_state = 271}, + [6722] = {.lex_state = 542}, + [6723] = {.lex_state = 271}, + [6724] = {.lex_state = 271}, + [6725] = {.lex_state = 542}, + [6726] = {.lex_state = 312}, + [6727] = {.lex_state = 312}, + [6728] = {.lex_state = 273}, + [6729] = {.lex_state = 273}, + [6730] = {.lex_state = 324}, + [6731] = {.lex_state = 312}, + [6732] = {.lex_state = 324}, + [6733] = {.lex_state = 312}, + [6734] = {.lex_state = 312}, + [6735] = {.lex_state = 271, .external_lex_state = 114}, + [6736] = {.lex_state = 312}, + [6737] = {.lex_state = 312}, + [6738] = {.lex_state = 271}, + [6739] = {.lex_state = 312}, + [6740] = {.lex_state = 314, .external_lex_state = 114}, + [6741] = {.lex_state = 271}, + [6742] = {.lex_state = 273}, + [6743] = {.lex_state = 324}, + [6744] = {.lex_state = 324}, + [6745] = {.lex_state = 324}, + [6746] = {.lex_state = 312}, + [6747] = {.lex_state = 314, .external_lex_state = 114}, + [6748] = {.lex_state = 314, .external_lex_state = 114}, + [6749] = {.lex_state = 314, .external_lex_state = 114}, + [6750] = {.lex_state = 312}, + [6751] = {.lex_state = 312}, + [6752] = {.lex_state = 273}, + [6753] = {.lex_state = 314, .external_lex_state = 114}, + [6754] = {.lex_state = 312}, + [6755] = {.lex_state = 271, .external_lex_state = 119}, + [6756] = {.lex_state = 312}, + [6757] = {.lex_state = 312}, + [6758] = {.lex_state = 312}, + [6759] = {.lex_state = 312}, + [6760] = {.lex_state = 312}, + [6761] = {.lex_state = 314, .external_lex_state = 114}, + [6762] = {.lex_state = 273}, + [6763] = {.lex_state = 324}, + [6764] = {.lex_state = 314, .external_lex_state = 114}, + [6765] = {.lex_state = 314, .external_lex_state = 114}, + [6766] = {.lex_state = 542}, + [6767] = {.lex_state = 314, .external_lex_state = 114}, + [6768] = {.lex_state = 271}, + [6769] = {.lex_state = 312}, + [6770] = {.lex_state = 324}, + [6771] = {.lex_state = 312}, + [6772] = {.lex_state = 312}, + [6773] = {.lex_state = 312}, + [6774] = {.lex_state = 312}, + [6775] = {.lex_state = 542}, + [6776] = {.lex_state = 312}, + [6777] = {.lex_state = 273}, + [6778] = {.lex_state = 312}, + [6779] = {.lex_state = 314, .external_lex_state = 114}, + [6780] = {.lex_state = 271, .external_lex_state = 114}, + [6781] = {.lex_state = 312}, + [6782] = {.lex_state = 314, .external_lex_state = 114}, + [6783] = {.lex_state = 324}, + [6784] = {.lex_state = 314, .external_lex_state = 114}, + [6785] = {.lex_state = 273}, + [6786] = {.lex_state = 312}, + [6787] = {.lex_state = 314, .external_lex_state = 114}, + [6788] = {.lex_state = 314, .external_lex_state = 114}, + [6789] = {.lex_state = 314, .external_lex_state = 114}, + [6790] = {.lex_state = 312}, + [6791] = {.lex_state = 314, .external_lex_state = 114}, + [6792] = {.lex_state = 112, .external_lex_state = 120}, + [6793] = {.lex_state = 271}, + [6794] = {.lex_state = 542}, + [6795] = {.lex_state = 542}, + [6796] = {.lex_state = 542, .external_lex_state = 128}, + [6797] = {.lex_state = 271}, + [6798] = {.lex_state = 271, .external_lex_state = 114}, + [6799] = {.lex_state = 542}, + [6800] = {.lex_state = 271, .external_lex_state = 114}, + [6801] = {.lex_state = 542}, + [6802] = {.lex_state = 271}, + [6803] = {.lex_state = 271}, + [6804] = {.lex_state = 542}, + [6805] = {.lex_state = 542}, + [6806] = {.lex_state = 112, .external_lex_state = 120}, + [6807] = {.lex_state = 271, .external_lex_state = 114}, + [6808] = {.lex_state = 542}, + [6809] = {.lex_state = 542}, + [6810] = {.lex_state = 271, .external_lex_state = 114}, + [6811] = {.lex_state = 271}, + [6812] = {.lex_state = 271}, + [6813] = {.lex_state = 542}, + [6814] = {.lex_state = 279}, + [6815] = {.lex_state = 542}, + [6816] = {.lex_state = 542}, + [6817] = {.lex_state = 279}, + [6818] = {.lex_state = 542}, + [6819] = {.lex_state = 542}, + [6820] = {.lex_state = 271}, + [6821] = {.lex_state = 542}, + [6822] = {.lex_state = 542}, + [6823] = {.lex_state = 542}, + [6824] = {.lex_state = 271, .external_lex_state = 126}, + [6825] = {.lex_state = 271, .external_lex_state = 114}, + [6826] = {.lex_state = 542, .external_lex_state = 128}, + [6827] = {.lex_state = 542}, + [6828] = {.lex_state = 279}, + [6829] = {.lex_state = 271}, + [6830] = {.lex_state = 279}, + [6831] = {.lex_state = 542}, + [6832] = {.lex_state = 271, .external_lex_state = 114}, + [6833] = {.lex_state = 257, .external_lex_state = 129}, + [6834] = {.lex_state = 257, .external_lex_state = 129}, + [6835] = {.lex_state = 112, .external_lex_state = 120}, + [6836] = {.lex_state = 112, .external_lex_state = 120}, + [6837] = {.lex_state = 112, .external_lex_state = 120}, + [6838] = {.lex_state = 271}, + [6839] = {.lex_state = 112, .external_lex_state = 120}, + [6840] = {.lex_state = 542}, + [6841] = {.lex_state = 271, .external_lex_state = 114}, + [6842] = {.lex_state = 271, .external_lex_state = 114}, + [6843] = {.lex_state = 112, .external_lex_state = 120}, + [6844] = {.lex_state = 112, .external_lex_state = 120}, + [6845] = {.lex_state = 542, .external_lex_state = 128}, + [6846] = {.lex_state = 271}, + [6847] = {.lex_state = 271}, + [6848] = {.lex_state = 542}, + [6849] = {.lex_state = 542}, + [6850] = {.lex_state = 542}, + [6851] = {.lex_state = 271, .external_lex_state = 126}, + [6852] = {.lex_state = 279}, + [6853] = {.lex_state = 112, .external_lex_state = 120}, + [6854] = {.lex_state = 542}, + [6855] = {.lex_state = 542}, + [6856] = {.lex_state = 271}, + [6857] = {.lex_state = 542}, + [6858] = {.lex_state = 279}, + [6859] = {.lex_state = 542}, + [6860] = {.lex_state = 271, .external_lex_state = 114}, + [6861] = {.lex_state = 542}, + [6862] = {.lex_state = 324}, + [6863] = {.lex_state = 542}, + [6864] = {.lex_state = 542}, + [6865] = {.lex_state = 271}, + [6866] = {.lex_state = 112, .external_lex_state = 120}, + [6867] = {.lex_state = 542}, + [6868] = {.lex_state = 112, .external_lex_state = 120}, + [6869] = {.lex_state = 279}, + [6870] = {.lex_state = 112, .external_lex_state = 120}, + [6871] = {.lex_state = 112, .external_lex_state = 120}, + [6872] = {.lex_state = 542}, + [6873] = {.lex_state = 112, .external_lex_state = 120}, + [6874] = {.lex_state = 271}, + [6875] = {.lex_state = 112, .external_lex_state = 120}, + [6876] = {.lex_state = 271, .external_lex_state = 114}, + [6877] = {.lex_state = 542}, + [6878] = {.lex_state = 542}, + [6879] = {.lex_state = 542}, + [6880] = {.lex_state = 542}, + [6881] = {.lex_state = 542}, + [6882] = {.lex_state = 271}, + [6883] = {.lex_state = 271}, + [6884] = {.lex_state = 271}, + [6885] = {.lex_state = 279}, + [6886] = {.lex_state = 256}, + [6887] = {.lex_state = 271}, + [6888] = {.lex_state = 542}, + [6889] = {.lex_state = 542}, + [6890] = {.lex_state = 542}, + [6891] = {.lex_state = 271, .external_lex_state = 114}, + [6892] = {.lex_state = 271}, + [6893] = {.lex_state = 542}, + [6894] = {.lex_state = 324}, + [6895] = {.lex_state = 271, .external_lex_state = 114}, + [6896] = {.lex_state = 542}, + [6897] = {.lex_state = 542}, + [6898] = {.lex_state = 271, .external_lex_state = 126}, + [6899] = {.lex_state = 542}, + [6900] = {.lex_state = 271, .external_lex_state = 114}, + [6901] = {.lex_state = 271}, + [6902] = {.lex_state = 542}, + [6903] = {.lex_state = 542}, + [6904] = {.lex_state = 271, .external_lex_state = 114}, + [6905] = {.lex_state = 542}, + [6906] = {.lex_state = 542}, + [6907] = {.lex_state = 542}, + [6908] = {.lex_state = 271, .external_lex_state = 114}, + [6909] = {.lex_state = 542}, + [6910] = {.lex_state = 271}, + [6911] = {.lex_state = 542}, + [6912] = {.lex_state = 279}, + [6913] = {.lex_state = 246}, + [6914] = {.lex_state = 542}, + [6915] = {.lex_state = 542}, + [6916] = {.lex_state = 279}, + [6917] = {.lex_state = 542}, + [6918] = {.lex_state = 542}, + [6919] = {.lex_state = 271}, + [6920] = {.lex_state = 246}, + [6921] = {.lex_state = 324}, + [6922] = {.lex_state = 271, .external_lex_state = 114}, + [6923] = {.lex_state = 271, .external_lex_state = 126}, + [6924] = {.lex_state = 542}, + [6925] = {.lex_state = 271, .external_lex_state = 114}, + [6926] = {.lex_state = 271}, + [6927] = {.lex_state = 542}, + [6928] = {.lex_state = 112, .external_lex_state = 120}, + [6929] = {.lex_state = 542}, + [6930] = {.lex_state = 542}, + [6931] = {.lex_state = 112, .external_lex_state = 120}, + [6932] = {.lex_state = 542}, + [6933] = {.lex_state = 271}, + [6934] = {.lex_state = 542}, + [6935] = {.lex_state = 112, .external_lex_state = 120}, + [6936] = {.lex_state = 112, .external_lex_state = 120}, + [6937] = {.lex_state = 542}, + [6938] = {.lex_state = 542}, + [6939] = {.lex_state = 112, .external_lex_state = 120}, + [6940] = {.lex_state = 271}, + [6941] = {.lex_state = 112, .external_lex_state = 120}, + [6942] = {.lex_state = 271, .external_lex_state = 126}, + [6943] = {.lex_state = 542}, + [6944] = {.lex_state = 112, .external_lex_state = 120}, + [6945] = {.lex_state = 112, .external_lex_state = 120}, + [6946] = {.lex_state = 271, .external_lex_state = 114}, + [6947] = {.lex_state = 271}, + [6948] = {.lex_state = 271}, + [6949] = {.lex_state = 279}, + [6950] = {.lex_state = 271}, + [6951] = {.lex_state = 542}, + [6952] = {.lex_state = 256}, + [6953] = {.lex_state = 271}, + [6954] = {.lex_state = 271}, + [6955] = {.lex_state = 542}, + [6956] = {.lex_state = 542}, + [6957] = {.lex_state = 271, .external_lex_state = 114}, + [6958] = {.lex_state = 271, .external_lex_state = 114}, + [6959] = {.lex_state = 271, .external_lex_state = 114}, + [6960] = {.lex_state = 271, .external_lex_state = 114}, + [6961] = {.lex_state = 271}, + [6962] = {.lex_state = 257, .external_lex_state = 129}, + [6963] = {.lex_state = 542}, + [6964] = {.lex_state = 271, .external_lex_state = 114}, + [6965] = {.lex_state = 271, .external_lex_state = 114}, + [6966] = {.lex_state = 271, .external_lex_state = 114}, + [6967] = {.lex_state = 271, .external_lex_state = 114}, + [6968] = {.lex_state = 271}, + [6969] = {.lex_state = 257, .external_lex_state = 129}, + [6970] = {.lex_state = 324}, + [6971] = {.lex_state = 279}, + [6972] = {.lex_state = 271, .external_lex_state = 114}, + [6973] = {.lex_state = 271, .external_lex_state = 114}, + [6974] = {.lex_state = 271, .external_lex_state = 114}, + [6975] = {.lex_state = 271}, + [6976] = {.lex_state = 542}, + [6977] = {.lex_state = 271, .external_lex_state = 114}, + [6978] = {.lex_state = 271, .external_lex_state = 114}, + [6979] = {.lex_state = 271, .external_lex_state = 114}, + [6980] = {.lex_state = 271, .external_lex_state = 114}, + [6981] = {.lex_state = 324}, + [6982] = {.lex_state = 271}, + [6983] = {.lex_state = 542}, + [6984] = {.lex_state = 271, .external_lex_state = 114}, + [6985] = {.lex_state = 271, .external_lex_state = 114}, + [6986] = {.lex_state = 271, .external_lex_state = 114}, + [6987] = {.lex_state = 271, .external_lex_state = 114}, + [6988] = {.lex_state = 271, .external_lex_state = 114}, + [6989] = {.lex_state = 271}, + [6990] = {.lex_state = 257, .external_lex_state = 129}, + [6991] = {.lex_state = 271, .external_lex_state = 126}, + [6992] = {.lex_state = 271, .external_lex_state = 114}, + [6993] = {.lex_state = 271, .external_lex_state = 114}, + [6994] = {.lex_state = 271, .external_lex_state = 114}, + [6995] = {.lex_state = 271, .external_lex_state = 114}, + [6996] = {.lex_state = 271}, + [6997] = {.lex_state = 271, .external_lex_state = 126}, + [6998] = {.lex_state = 112, .external_lex_state = 120}, + [6999] = {.lex_state = 271, .external_lex_state = 114}, + [7000] = {.lex_state = 271, .external_lex_state = 114}, + [7001] = {.lex_state = 271, .external_lex_state = 114}, + [7002] = {.lex_state = 271, .external_lex_state = 114}, + [7003] = {.lex_state = 271}, + [7004] = {.lex_state = 324}, + [7005] = {.lex_state = 271, .external_lex_state = 126}, + [7006] = {.lex_state = 271, .external_lex_state = 114}, + [7007] = {.lex_state = 271, .external_lex_state = 126}, + [7008] = {.lex_state = 271, .external_lex_state = 114}, + [7009] = {.lex_state = 542, .external_lex_state = 128}, + [7010] = {.lex_state = 271}, + [7011] = {.lex_state = 542, .external_lex_state = 128}, + [7012] = {.lex_state = 324}, + [7013] = {.lex_state = 271, .external_lex_state = 126}, + [7014] = {.lex_state = 271, .external_lex_state = 114}, + [7015] = {.lex_state = 279}, + [7016] = {.lex_state = 271, .external_lex_state = 126}, + [7017] = {.lex_state = 271}, + [7018] = {.lex_state = 257, .external_lex_state = 129}, + [7019] = {.lex_state = 279}, + [7020] = {.lex_state = 271, .external_lex_state = 126}, + [7021] = {.lex_state = 271, .external_lex_state = 126}, + [7022] = {.lex_state = 271, .external_lex_state = 114}, + [7023] = {.lex_state = 271, .external_lex_state = 114}, + [7024] = {.lex_state = 271}, + [7025] = {.lex_state = 271, .external_lex_state = 114}, + [7026] = {.lex_state = 271, .external_lex_state = 114}, + [7027] = {.lex_state = 271, .external_lex_state = 114}, + [7028] = {.lex_state = 112, .external_lex_state = 120}, + [7029] = {.lex_state = 271, .external_lex_state = 114}, + [7030] = {.lex_state = 112, .external_lex_state = 120}, + [7031] = {.lex_state = 271}, + [7032] = {.lex_state = 542}, + [7033] = {.lex_state = 542}, + [7034] = {.lex_state = 542}, + [7035] = {.lex_state = 271, .external_lex_state = 126}, + [7036] = {.lex_state = 112, .external_lex_state = 120}, + [7037] = {.lex_state = 246}, + [7038] = {.lex_state = 271}, + [7039] = {.lex_state = 112, .external_lex_state = 120}, + [7040] = {.lex_state = 542}, + [7041] = {.lex_state = 112, .external_lex_state = 120}, + [7042] = {.lex_state = 112, .external_lex_state = 120}, + [7043] = {.lex_state = 542}, + [7044] = {.lex_state = 271, .external_lex_state = 126}, + [7045] = {.lex_state = 271}, + [7046] = {.lex_state = 271, .external_lex_state = 114}, + [7047] = {.lex_state = 542}, + [7048] = {.lex_state = 542}, + [7049] = {.lex_state = 271, .external_lex_state = 126}, + [7050] = {.lex_state = 542}, + [7051] = {.lex_state = 271, .external_lex_state = 114}, + [7052] = {.lex_state = 271}, + [7053] = {.lex_state = 542}, + [7054] = {.lex_state = 279}, + [7055] = {.lex_state = 271}, + [7056] = {.lex_state = 271, .external_lex_state = 126}, + [7057] = {.lex_state = 271}, + [7058] = {.lex_state = 542}, + [7059] = {.lex_state = 271}, + [7060] = {.lex_state = 542}, + [7061] = {.lex_state = 256}, + [7062] = {.lex_state = 271}, + [7063] = {.lex_state = 542}, + [7064] = {.lex_state = 542}, + [7065] = {.lex_state = 271, .external_lex_state = 114}, + [7066] = {.lex_state = 271}, + [7067] = {.lex_state = 542}, + [7068] = {.lex_state = 324}, + [7069] = {.lex_state = 324}, + [7070] = {.lex_state = 542}, + [7071] = {.lex_state = 279}, + [7072] = {.lex_state = 542}, + [7073] = {.lex_state = 271}, + [7074] = {.lex_state = 279}, + [7075] = {.lex_state = 542}, + [7076] = {.lex_state = 279}, + [7077] = {.lex_state = 542}, + [7078] = {.lex_state = 542}, + [7079] = {.lex_state = 542}, + [7080] = {.lex_state = 271}, + [7081] = {.lex_state = 542}, + [7082] = {.lex_state = 271, .external_lex_state = 114}, + [7083] = {.lex_state = 542}, + [7084] = {.lex_state = 542}, + [7085] = {.lex_state = 542}, + [7086] = {.lex_state = 542}, + [7087] = {.lex_state = 271}, + [7088] = {.lex_state = 542}, + [7089] = {.lex_state = 271, .external_lex_state = 114}, + [7090] = {.lex_state = 279}, + [7091] = {.lex_state = 542}, + [7092] = {.lex_state = 542}, + [7093] = {.lex_state = 542}, + [7094] = {.lex_state = 271}, + [7095] = {.lex_state = 542}, + [7096] = {.lex_state = 542}, + [7097] = {.lex_state = 542}, + [7098] = {.lex_state = 542}, + [7099] = {.lex_state = 542}, + [7100] = {.lex_state = 542}, + [7101] = {.lex_state = 271}, + [7102] = {.lex_state = 271, .external_lex_state = 114}, + [7103] = {.lex_state = 542}, + [7104] = {.lex_state = 271, .external_lex_state = 114}, + [7105] = {.lex_state = 271, .external_lex_state = 114}, + [7106] = {.lex_state = 279}, + [7107] = {.lex_state = 542}, + [7108] = {.lex_state = 271}, + [7109] = {.lex_state = 542}, + [7110] = {.lex_state = 542}, + [7111] = {.lex_state = 542}, + [7112] = {.lex_state = 271, .external_lex_state = 114}, + [7113] = {.lex_state = 271, .external_lex_state = 114}, + [7114] = {.lex_state = 324}, + [7115] = {.lex_state = 271}, + [7116] = {.lex_state = 279}, + [7117] = {.lex_state = 542}, + [7118] = {.lex_state = 542}, + [7119] = {.lex_state = 542}, + [7120] = {.lex_state = 542}, + [7121] = {.lex_state = 246}, + [7122] = {.lex_state = 271}, + [7123] = {.lex_state = 542}, + [7124] = {.lex_state = 542}, + [7125] = {.lex_state = 542}, + [7126] = {.lex_state = 271, .external_lex_state = 114}, + [7127] = {.lex_state = 542}, + [7128] = {.lex_state = 271, .external_lex_state = 114}, + [7129] = {.lex_state = 271}, + [7130] = {.lex_state = 542}, + [7131] = {.lex_state = 271, .external_lex_state = 114}, + [7132] = {.lex_state = 542}, + [7133] = {.lex_state = 542}, + [7134] = {.lex_state = 271, .external_lex_state = 126}, + [7135] = {.lex_state = 271, .external_lex_state = 114}, + [7136] = {.lex_state = 271}, + [7137] = {.lex_state = 271, .external_lex_state = 114}, + [7138] = {.lex_state = 542}, + [7139] = {.lex_state = 542}, + [7140] = {.lex_state = 542}, + [7141] = {.lex_state = 271, .external_lex_state = 114}, + [7142] = {.lex_state = 542, .external_lex_state = 128}, + [7143] = {.lex_state = 271}, + [7144] = {.lex_state = 542}, + [7145] = {.lex_state = 279}, + [7146] = {.lex_state = 271, .external_lex_state = 114}, + [7147] = {.lex_state = 542}, + [7148] = {.lex_state = 542}, + [7149] = {.lex_state = 279}, + [7150] = {.lex_state = 271}, + [7151] = {.lex_state = 542}, + [7152] = {.lex_state = 542}, + [7153] = {.lex_state = 542}, + [7154] = {.lex_state = 542}, + [7155] = {.lex_state = 542}, + [7156] = {.lex_state = 542}, + [7157] = {.lex_state = 271}, + [7158] = {.lex_state = 542}, + [7159] = {.lex_state = 246}, + [7160] = {.lex_state = 542}, + [7161] = {.lex_state = 542}, + [7162] = {.lex_state = 271, .external_lex_state = 114}, + [7163] = {.lex_state = 271, .external_lex_state = 114}, + [7164] = {.lex_state = 271}, + [7165] = {.lex_state = 542}, + [7166] = {.lex_state = 542}, + [7167] = {.lex_state = 542}, + [7168] = {.lex_state = 542}, + [7169] = {.lex_state = 542}, + [7170] = {.lex_state = 271, .external_lex_state = 114}, + [7171] = {.lex_state = 271}, + [7172] = {.lex_state = 279}, + [7173] = {.lex_state = 542}, + [7174] = {.lex_state = 542}, + [7175] = {.lex_state = 542}, + [7176] = {.lex_state = 279}, + [7177] = {.lex_state = 257, .external_lex_state = 129}, + [7178] = {.lex_state = 271}, + [7179] = {.lex_state = 271, .external_lex_state = 114}, + [7180] = {.lex_state = 542}, + [7181] = {.lex_state = 257, .external_lex_state = 129}, + [7182] = {.lex_state = 542}, + [7183] = {.lex_state = 542}, + [7184] = {.lex_state = 271, .external_lex_state = 114}, + [7185] = {.lex_state = 271}, + [7186] = {.lex_state = 542}, + [7187] = {.lex_state = 271, .external_lex_state = 114}, + [7188] = {.lex_state = 246}, + [7189] = {.lex_state = 542}, + [7190] = {.lex_state = 542}, + [7191] = {.lex_state = 279}, + [7192] = {.lex_state = 271}, + [7193] = {.lex_state = 257, .external_lex_state = 129}, + [7194] = {.lex_state = 542}, + [7195] = {.lex_state = 542}, + [7196] = {.lex_state = 271, .external_lex_state = 114}, + [7197] = {.lex_state = 271, .external_lex_state = 114}, + [7198] = {.lex_state = 257, .external_lex_state = 129}, + [7199] = {.lex_state = 271}, + [7200] = {.lex_state = 542}, + [7201] = {.lex_state = 542}, + [7202] = {.lex_state = 542}, + [7203] = {.lex_state = 542}, + [7204] = {.lex_state = 542}, + [7205] = {.lex_state = 542, .external_lex_state = 130}, + [7206] = {.lex_state = 271}, + [7207] = {.lex_state = 271, .external_lex_state = 114}, + [7208] = {.lex_state = 542}, + [7209] = {.lex_state = 542}, + [7210] = {.lex_state = 542}, + [7211] = {.lex_state = 542}, + [7212] = {.lex_state = 542}, + [7213] = {.lex_state = 271}, + [7214] = {.lex_state = 542}, + [7215] = {.lex_state = 542}, + [7216] = {.lex_state = 542}, + [7217] = {.lex_state = 542}, + [7218] = {.lex_state = 271, .external_lex_state = 114}, + [7219] = {.lex_state = 271, .external_lex_state = 114}, + [7220] = {.lex_state = 271, .external_lex_state = 114}, + [7221] = {.lex_state = 271, .external_lex_state = 114}, + [7222] = {.lex_state = 271, .external_lex_state = 114}, + [7223] = {.lex_state = 271, .external_lex_state = 114}, + [7224] = {.lex_state = 542}, + [7225] = {.lex_state = 271}, + [7226] = {.lex_state = 279}, + [7227] = {.lex_state = 542}, + [7228] = {.lex_state = 542}, + [7229] = {.lex_state = 542}, + [7230] = {.lex_state = 542}, + [7231] = {.lex_state = 542}, + [7232] = {.lex_state = 271, .external_lex_state = 114}, + [7233] = {.lex_state = 271, .external_lex_state = 114}, + [7234] = {.lex_state = 271, .external_lex_state = 114}, + [7235] = {.lex_state = 271, .external_lex_state = 114}, + [7236] = {.lex_state = 271, .external_lex_state = 114}, + [7237] = {.lex_state = 271, .external_lex_state = 114}, + [7238] = {.lex_state = 271, .external_lex_state = 114}, + [7239] = {.lex_state = 271, .external_lex_state = 114}, + [7240] = {.lex_state = 271, .external_lex_state = 114}, + [7241] = {.lex_state = 271, .external_lex_state = 114}, + [7242] = {.lex_state = 271, .external_lex_state = 114}, + [7243] = {.lex_state = 271, .external_lex_state = 114}, + [7244] = {.lex_state = 279}, + [7245] = {.lex_state = 271, .external_lex_state = 114}, + [7246] = {.lex_state = 542}, + [7247] = {.lex_state = 279}, + [7248] = {.lex_state = 279}, + [7249] = {.lex_state = 542}, + [7250] = {.lex_state = 542}, + [7251] = {.lex_state = 271, .external_lex_state = 114}, + [7252] = {.lex_state = 542}, + [7253] = {.lex_state = 542}, + [7254] = {.lex_state = 542}, + [7255] = {.lex_state = 271, .external_lex_state = 114}, + [7256] = {.lex_state = 542}, + [7257] = {.lex_state = 271, .external_lex_state = 114}, + [7258] = {.lex_state = 271}, + [7259] = {.lex_state = 271}, + [7260] = {.lex_state = 271, .external_lex_state = 114}, + [7261] = {.lex_state = 271, .external_lex_state = 114}, + [7262] = {.lex_state = 542}, + [7263] = {.lex_state = 279}, + [7264] = {.lex_state = 542}, + [7265] = {.lex_state = 273}, + [7266] = {.lex_state = 542}, + [7267] = {.lex_state = 542}, + [7268] = {.lex_state = 324}, + [7269] = {.lex_state = 271}, + [7270] = {.lex_state = 542}, + [7271] = {.lex_state = 271, .external_lex_state = 114}, + [7272] = {.lex_state = 271, .external_lex_state = 114}, + [7273] = {.lex_state = 542}, + [7274] = {.lex_state = 542, .external_lex_state = 130}, + [7275] = {.lex_state = 271, .external_lex_state = 126}, + [7276] = {.lex_state = 279}, + [7277] = {.lex_state = 542}, + [7278] = {.lex_state = 279}, + [7279] = {.lex_state = 542}, + [7280] = {.lex_state = 542}, + [7281] = {.lex_state = 279}, + [7282] = {.lex_state = 542}, + [7283] = {.lex_state = 542}, + [7284] = {.lex_state = 271, .external_lex_state = 114}, + [7285] = {.lex_state = 271, .external_lex_state = 114}, + [7286] = {.lex_state = 542}, + [7287] = {.lex_state = 279}, + [7288] = {.lex_state = 542}, + [7289] = {.lex_state = 542}, + [7290] = {.lex_state = 542}, + [7291] = {.lex_state = 271, .external_lex_state = 126}, + [7292] = {.lex_state = 542, .external_lex_state = 130}, + [7293] = {.lex_state = 542}, + [7294] = {.lex_state = 542}, + [7295] = {.lex_state = 542}, + [7296] = {.lex_state = 271, .external_lex_state = 114}, + [7297] = {.lex_state = 279}, + [7298] = {.lex_state = 271, .external_lex_state = 114}, + [7299] = {.lex_state = 542}, + [7300] = {.lex_state = 542}, + [7301] = {.lex_state = 542}, + [7302] = {.lex_state = 271, .external_lex_state = 114}, + [7303] = {.lex_state = 271, .external_lex_state = 114}, + [7304] = {.lex_state = 542}, + [7305] = {.lex_state = 542}, + [7306] = {.lex_state = 542}, + [7307] = {.lex_state = 542}, + [7308] = {.lex_state = 271, .external_lex_state = 114}, + [7309] = {.lex_state = 279}, + [7310] = {.lex_state = 542}, + [7311] = {.lex_state = 542}, + [7312] = {.lex_state = 542}, + [7313] = {.lex_state = 271, .external_lex_state = 114}, + [7314] = {.lex_state = 542}, + [7315] = {.lex_state = 271, .external_lex_state = 126}, + [7316] = {.lex_state = 542}, + [7317] = {.lex_state = 271, .external_lex_state = 114}, + [7318] = {.lex_state = 246}, + [7319] = {.lex_state = 542}, + [7320] = {.lex_state = 324}, + [7321] = {.lex_state = 542}, + [7322] = {.lex_state = 279}, + [7323] = {.lex_state = 542}, + [7324] = {.lex_state = 279}, + [7325] = {.lex_state = 542}, + [7326] = {.lex_state = 256}, + [7327] = {.lex_state = 542}, + [7328] = {.lex_state = 542}, + [7329] = {.lex_state = 542}, + [7330] = {.lex_state = 271}, + [7331] = {.lex_state = 271, .external_lex_state = 114}, + [7332] = {.lex_state = 271, .external_lex_state = 114}, + [7333] = {.lex_state = 542}, + [7334] = {.lex_state = 542}, + [7335] = {.lex_state = 542}, + [7336] = {.lex_state = 542}, + [7337] = {.lex_state = 279}, + [7338] = {.lex_state = 542}, + [7339] = {.lex_state = 542}, + [7340] = {.lex_state = 542}, + [7341] = {.lex_state = 542}, + [7342] = {.lex_state = 542}, + [7343] = {.lex_state = 279}, + [7344] = {.lex_state = 542}, + [7345] = {.lex_state = 271, .external_lex_state = 114}, + [7346] = {.lex_state = 279}, + [7347] = {.lex_state = 542}, + [7348] = {.lex_state = 271, .external_lex_state = 114}, + [7349] = {.lex_state = 542, .external_lex_state = 130}, + [7350] = {.lex_state = 542}, + [7351] = {.lex_state = 279}, + [7352] = {.lex_state = 542}, + [7353] = {.lex_state = 542}, + [7354] = {.lex_state = 542}, + [7355] = {.lex_state = 542}, + [7356] = {.lex_state = 542}, + [7357] = {.lex_state = 542}, + [7358] = {.lex_state = 542}, + [7359] = {.lex_state = 542}, + [7360] = {.lex_state = 542}, + [7361] = {.lex_state = 271, .external_lex_state = 114}, + [7362] = {.lex_state = 257, .external_lex_state = 129}, + [7363] = {.lex_state = 257, .external_lex_state = 129}, + [7364] = {.lex_state = 542}, + [7365] = {.lex_state = 279}, + [7366] = {.lex_state = 542}, + [7367] = {.lex_state = 542}, + [7368] = {.lex_state = 542}, + [7369] = {.lex_state = 542}, + [7370] = {.lex_state = 542}, + [7371] = {.lex_state = 542}, + [7372] = {.lex_state = 542}, + [7373] = {.lex_state = 271, .external_lex_state = 114}, + [7374] = {.lex_state = 271, .external_lex_state = 114}, + [7375] = {.lex_state = 542}, + [7376] = {.lex_state = 279}, + [7377] = {.lex_state = 271, .external_lex_state = 114}, + [7378] = {.lex_state = 542}, + [7379] = {.lex_state = 542}, + [7380] = {.lex_state = 271, .external_lex_state = 114}, + [7381] = {.lex_state = 279}, + [7382] = {.lex_state = 542}, + [7383] = {.lex_state = 542}, + [7384] = {.lex_state = 542}, + [7385] = {.lex_state = 542}, + [7386] = {.lex_state = 271, .external_lex_state = 114}, + [7387] = {.lex_state = 279}, + [7388] = {.lex_state = 542}, + [7389] = {.lex_state = 273}, + [7390] = {.lex_state = 542}, + [7391] = {.lex_state = 542}, + [7392] = {.lex_state = 324}, + [7393] = {.lex_state = 271}, + [7394] = {.lex_state = 542}, + [7395] = {.lex_state = 271, .external_lex_state = 114}, + [7396] = {.lex_state = 542}, + [7397] = {.lex_state = 542, .external_lex_state = 130}, + [7398] = {.lex_state = 271, .external_lex_state = 114}, + [7399] = {.lex_state = 542}, + [7400] = {.lex_state = 542}, + [7401] = {.lex_state = 542, .external_lex_state = 130}, + [7402] = {.lex_state = 271, .external_lex_state = 126}, + [7403] = {.lex_state = 542}, + [7404] = {.lex_state = 279}, + [7405] = {.lex_state = 542}, + [7406] = {.lex_state = 279}, + [7407] = {.lex_state = 542}, + [7408] = {.lex_state = 246}, + [7409] = {.lex_state = 542}, + [7410] = {.lex_state = 542}, + [7411] = {.lex_state = 542}, + [7412] = {.lex_state = 271, .external_lex_state = 114}, + [7413] = {.lex_state = 271, .external_lex_state = 126}, + [7414] = {.lex_state = 542}, + [7415] = {.lex_state = 279}, + [7416] = {.lex_state = 324}, + [7417] = {.lex_state = 324}, + [7418] = {.lex_state = 542}, + [7419] = {.lex_state = 542}, + [7420] = {.lex_state = 542}, + [7421] = {.lex_state = 542}, + [7422] = {.lex_state = 271, .external_lex_state = 114}, + [7423] = {.lex_state = 542}, + [7424] = {.lex_state = 542}, + [7425] = {.lex_state = 279}, + [7426] = {.lex_state = 542}, + [7427] = {.lex_state = 542}, + [7428] = {.lex_state = 542}, + [7429] = {.lex_state = 542}, + [7430] = {.lex_state = 542}, + [7431] = {.lex_state = 542}, + [7432] = {.lex_state = 542}, + [7433] = {.lex_state = 271, .external_lex_state = 114}, + [7434] = {.lex_state = 542}, + [7435] = {.lex_state = 279}, + [7436] = {.lex_state = 542}, + [7437] = {.lex_state = 271, .external_lex_state = 114}, + [7438] = {.lex_state = 542}, + [7439] = {.lex_state = 271}, + [7440] = {.lex_state = 271, .external_lex_state = 126}, + [7441] = {.lex_state = 542}, + [7442] = {.lex_state = 279}, + [7443] = {.lex_state = 279}, + [7444] = {.lex_state = 246}, + [7445] = {.lex_state = 542}, + [7446] = {.lex_state = 542}, + [7447] = {.lex_state = 542}, + [7448] = {.lex_state = 542}, + [7449] = {.lex_state = 271, .external_lex_state = 114}, + [7450] = {.lex_state = 279}, + [7451] = {.lex_state = 271, .external_lex_state = 126}, + [7452] = {.lex_state = 279}, + [7453] = {.lex_state = 279}, + [7454] = {.lex_state = 542}, + [7455] = {.lex_state = 542}, + [7456] = {.lex_state = 542}, + [7457] = {.lex_state = 542}, + [7458] = {.lex_state = 542}, + [7459] = {.lex_state = 542}, + [7460] = {.lex_state = 542}, + [7461] = {.lex_state = 271, .external_lex_state = 114}, + [7462] = {.lex_state = 542}, + [7463] = {.lex_state = 542}, + [7464] = {.lex_state = 271, .external_lex_state = 114}, + [7465] = {.lex_state = 542, .external_lex_state = 128}, + [7466] = {.lex_state = 542, .external_lex_state = 128}, + [7467] = {.lex_state = 542}, + [7468] = {.lex_state = 279}, + [7469] = {.lex_state = 542}, + [7470] = {.lex_state = 542}, + [7471] = {.lex_state = 542}, + [7472] = {.lex_state = 542}, + [7473] = {.lex_state = 542}, + [7474] = {.lex_state = 542}, + [7475] = {.lex_state = 542}, + [7476] = {.lex_state = 271, .external_lex_state = 114}, + [7477] = {.lex_state = 271, .external_lex_state = 114}, + [7478] = {.lex_state = 324}, + [7479] = {.lex_state = 273}, + [7480] = {.lex_state = 324}, + [7481] = {.lex_state = 279}, + [7482] = {.lex_state = 324}, + [7483] = {.lex_state = 271}, + [7484] = {.lex_state = 542}, + [7485] = {.lex_state = 542}, + [7486] = {.lex_state = 542}, + [7487] = {.lex_state = 542, .external_lex_state = 130}, + [7488] = {.lex_state = 542}, + [7489] = {.lex_state = 271, .external_lex_state = 126}, + [7490] = {.lex_state = 279}, + [7491] = {.lex_state = 542, .external_lex_state = 130}, + [7492] = {.lex_state = 542}, + [7493] = {.lex_state = 271, .external_lex_state = 114}, + [7494] = {.lex_state = 271, .external_lex_state = 126}, + [7495] = {.lex_state = 271, .external_lex_state = 126}, + [7496] = {.lex_state = 279}, + [7497] = {.lex_state = 542}, + [7498] = {.lex_state = 542}, + [7499] = {.lex_state = 542}, + [7500] = {.lex_state = 542}, + [7501] = {.lex_state = 271, .external_lex_state = 114}, + [7502] = {.lex_state = 542}, + [7503] = {.lex_state = 271, .external_lex_state = 126}, + [7504] = {.lex_state = 271, .external_lex_state = 126}, + [7505] = {.lex_state = 279}, + [7506] = {.lex_state = 542}, + [7507] = {.lex_state = 542}, + [7508] = {.lex_state = 542}, + [7509] = {.lex_state = 542}, + [7510] = {.lex_state = 271, .external_lex_state = 114}, + [7511] = {.lex_state = 324}, + [7512] = {.lex_state = 271}, + [7513] = {.lex_state = 542}, + [7514] = {.lex_state = 542, .external_lex_state = 130}, + [7515] = {.lex_state = 542}, + [7516] = {.lex_state = 324}, + [7517] = {.lex_state = 542, .external_lex_state = 130}, + [7518] = {.lex_state = 542}, + [7519] = {.lex_state = 542, .external_lex_state = 128}, + [7520] = {.lex_state = 542}, + [7521] = {.lex_state = 271, .external_lex_state = 114}, + [7522] = {.lex_state = 542}, + [7523] = {.lex_state = 542, .external_lex_state = 128}, + [7524] = {.lex_state = 271, .external_lex_state = 114}, + [7525] = {.lex_state = 279}, + [7526] = {.lex_state = 542}, + [7527] = {.lex_state = 542}, + [7528] = {.lex_state = 271, .external_lex_state = 126}, + [7529] = {.lex_state = 542}, + [7530] = {.lex_state = 271, .external_lex_state = 114}, + [7531] = {.lex_state = 542}, + [7532] = {.lex_state = 279}, + [7533] = {.lex_state = 271, .external_lex_state = 114}, + [7534] = {.lex_state = 279}, + [7535] = {.lex_state = 542}, + [7536] = {.lex_state = 542}, + [7537] = {.lex_state = 271}, + [7538] = {.lex_state = 271}, + [7539] = {.lex_state = 271}, + [7540] = {.lex_state = 271}, + [7541] = {.lex_state = 271}, + [7542] = {.lex_state = 271}, + [7543] = {.lex_state = 271}, + [7544] = {.lex_state = 271}, + [7545] = {.lex_state = 271}, + [7546] = {.lex_state = 271}, + [7547] = {.lex_state = 271}, + [7548] = {.lex_state = 271}, + [7549] = {.lex_state = 271}, + [7550] = {.lex_state = 271}, + [7551] = {.lex_state = 271}, + [7552] = {.lex_state = 271}, + [7553] = {.lex_state = 271}, + [7554] = {.lex_state = 271}, + [7555] = {.lex_state = 271}, + [7556] = {.lex_state = 271}, + [7557] = {.lex_state = 271}, + [7558] = {.lex_state = 271}, + [7559] = {.lex_state = 271}, + [7560] = {.lex_state = 271}, + [7561] = {.lex_state = 271}, + [7562] = {.lex_state = 271}, + [7563] = {.lex_state = 271}, + [7564] = {.lex_state = 271}, + [7565] = {.lex_state = 271}, + [7566] = {.lex_state = 271}, + [7567] = {.lex_state = 271}, + [7568] = {.lex_state = 271}, + [7569] = {.lex_state = 271}, + [7570] = {.lex_state = 271}, + [7571] = {.lex_state = 271}, + [7572] = {.lex_state = 271}, + [7573] = {.lex_state = 271}, + [7574] = {.lex_state = 271}, + [7575] = {.lex_state = 271}, + [7576] = {.lex_state = 271}, + [7577] = {.lex_state = 271}, + [7578] = {.lex_state = 271}, + [7579] = {.lex_state = 271}, + [7580] = {.lex_state = 271}, + [7581] = {.lex_state = 271}, + [7582] = {.lex_state = 271}, + [7583] = {.lex_state = 271}, + [7584] = {.lex_state = 271}, + [7585] = {.lex_state = 271}, + [7586] = {.lex_state = 271}, + [7587] = {.lex_state = 271}, + [7588] = {.lex_state = 271}, + [7589] = {.lex_state = 271}, + [7590] = {.lex_state = 271}, + [7591] = {.lex_state = 271}, + [7592] = {.lex_state = 271}, + [7593] = {.lex_state = 271}, + [7594] = {.lex_state = 271}, + [7595] = {.lex_state = 271}, + [7596] = {.lex_state = 271}, + [7597] = {.lex_state = 271}, + [7598] = {.lex_state = 542}, + [7599] = {.lex_state = 542}, + [7600] = {.lex_state = 542}, + [7601] = {.lex_state = 271, .external_lex_state = 114}, + [7602] = {.lex_state = 542}, + [7603] = {.lex_state = 271, .external_lex_state = 126}, + [7604] = {.lex_state = 273}, + [7605] = {.lex_state = 271}, + [7606] = {.lex_state = 542}, + [7607] = {.lex_state = 271}, + [7608] = {.lex_state = 271}, + [7609] = {.lex_state = 271}, + [7610] = {.lex_state = 271}, + [7611] = {.lex_state = 271}, + [7612] = {.lex_state = 271}, + [7613] = {.lex_state = 271}, + [7614] = {.lex_state = 271}, + [7615] = {.lex_state = 271}, + [7616] = {.lex_state = 271}, + [7617] = {.lex_state = 271}, + [7618] = {.lex_state = 271}, + [7619] = {.lex_state = 271}, + [7620] = {.lex_state = 271}, + [7621] = {.lex_state = 271}, + [7622] = {.lex_state = 271}, + [7623] = {.lex_state = 271}, + [7624] = {.lex_state = 271}, + [7625] = {.lex_state = 271}, + [7626] = {.lex_state = 271}, + [7627] = {.lex_state = 271}, + [7628] = {.lex_state = 271}, + [7629] = {.lex_state = 271}, + [7630] = {.lex_state = 271}, + [7631] = {.lex_state = 271}, + [7632] = {.lex_state = 271}, + [7633] = {.lex_state = 271}, + [7634] = {.lex_state = 271}, + [7635] = {.lex_state = 271}, + [7636] = {.lex_state = 271}, + [7637] = {.lex_state = 271}, + [7638] = {.lex_state = 271}, + [7639] = {.lex_state = 271}, + [7640] = {.lex_state = 271}, + [7641] = {.lex_state = 271}, + [7642] = {.lex_state = 271}, + [7643] = {.lex_state = 271}, + [7644] = {.lex_state = 271}, + [7645] = {.lex_state = 271}, + [7646] = {.lex_state = 271}, + [7647] = {.lex_state = 271}, + [7648] = {.lex_state = 271}, + [7649] = {.lex_state = 271}, + [7650] = {.lex_state = 271}, + [7651] = {.lex_state = 271}, + [7652] = {.lex_state = 271}, + [7653] = {.lex_state = 271}, + [7654] = {.lex_state = 271}, + [7655] = {.lex_state = 271}, + [7656] = {.lex_state = 271}, + [7657] = {.lex_state = 271}, + [7658] = {.lex_state = 271}, + [7659] = {.lex_state = 271}, + [7660] = {.lex_state = 271}, + [7661] = {.lex_state = 271}, + [7662] = {.lex_state = 271}, + [7663] = {.lex_state = 271}, + [7664] = {.lex_state = 271}, + [7665] = {.lex_state = 271}, + [7666] = {.lex_state = 271}, + [7667] = {.lex_state = 271}, + [7668] = {.lex_state = 271}, + [7669] = {.lex_state = 271}, + [7670] = {.lex_state = 271, .external_lex_state = 114}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -25350,45 +29029,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(6107), - [sym__statements] = STATE(6106), - [sym__statement_not_pipeline] = STATE(5226), - [sym_redirected_statement] = STATE(3748), - [sym_for_statement] = STATE(3748), - [sym_c_style_for_statement] = STATE(3748), - [sym_while_statement] = STATE(3576), - [sym_if_statement] = STATE(3576), - [sym_case_statement] = STATE(3748), - [sym_function_definition] = STATE(3748), - [sym_compound_statement] = STATE(3748), - [sym_subshell] = STATE(3748), - [sym_pipeline] = STATE(4089), - [sym_list] = STATE(3748), - [sym_negated_command] = STATE(3748), - [sym_test_command] = STATE(3748), - [sym_declaration_command] = STATE(3748), - [sym_unset_command] = STATE(3748), - [sym_command] = STATE(3748), - [sym_command_name] = STATE(433), - [sym_variable_assignment] = STATE(811), - [sym_variable_assignments] = STATE(3748), - [sym_subscript] = STATE(5469), - [sym_file_redirect] = STATE(1637), - [sym_herestring_redirect] = STATE(1650), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(319), - [aux_sym_redirected_statement_repeat2] = STATE(4046), - [aux_sym_command_repeat1] = STATE(803), - [aux_sym__literal_repeat1] = STATE(985), + [sym_program] = STATE(7470), + [sym__statements] = STATE(7469), + [sym__statement_not_pipeline] = STATE(6572), + [sym_redirected_statement] = STATE(4860), + [sym_for_statement] = STATE(4860), + [sym_c_style_for_statement] = STATE(4860), + [sym_while_statement] = STATE(4321), + [sym_if_statement] = STATE(4321), + [sym_case_statement] = STATE(4860), + [sym_function_definition] = STATE(4860), + [sym_compound_statement] = STATE(4860), + [sym_subshell] = STATE(4860), + [sym_pipeline] = STATE(5079), + [sym_list] = STATE(4860), + [sym_negated_command] = STATE(4860), + [sym_test_command] = STATE(4860), + [sym_declaration_command] = STATE(4860), + [sym_unset_command] = STATE(4860), + [sym_command] = STATE(4860), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(913), + [sym_variable_assignments] = STATE(4860), + [sym_subscript] = STATE(6774), + [sym_file_redirect] = STATE(2055), + [sym_herestring_redirect] = STATE(2156), + [sym_arithmetic_expansion] = STATE(957), + [sym_brace_expression] = STATE(957), + [sym_concatenation] = STATE(1386), + [sym_string] = STATE(957), + [sym_translated_string] = STATE(957), + [sym_number] = STATE(957), + [sym_simple_expansion] = STATE(957), + [sym_expansion] = STATE(957), + [sym_command_substitution] = STATE(957), + [sym_process_substitution] = STATE(957), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4571), + [aux_sym_command_repeat1] = STATE(937), + [aux_sym__literal_repeat1] = STATE(1212), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -25444,50 +29123,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(79), }, [2] = { - [sym__statements] = STATE(5980), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym__expression] = STATE(2597), - [sym_binary_expression] = STATE(2582), - [sym_ternary_expression] = STATE(2582), - [sym_unary_expression] = STATE(2582), - [sym_postfix_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_arithmetic_expansion] = STATE(371), - [sym_brace_expression] = STATE(371), - [sym_concatenation] = STATE(395), - [sym_string] = STATE(371), - [sym_translated_string] = STATE(371), - [sym_number] = STATE(371), - [sym_simple_expansion] = STATE(371), - [sym_expansion] = STATE(371), - [sym_command_substitution] = STATE(371), - [sym_process_substitution] = STATE(371), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(392), + [sym__statements] = STATE(7427), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym__expression] = STATE(3126), + [sym_binary_expression] = STATE(3053), + [sym_ternary_expression] = STATE(3053), + [sym_unary_expression] = STATE(3053), + [sym_postfix_expression] = STATE(3053), + [sym_parenthesized_expression] = STATE(3053), + [sym_arithmetic_expansion] = STATE(472), + [sym_brace_expression] = STATE(472), + [sym_concatenation] = STATE(502), + [sym_string] = STATE(472), + [sym_translated_string] = STATE(472), + [sym_number] = STATE(472), + [sym_simple_expansion] = STATE(472), + [sym_expansion] = STATE(472), + [sym_command_substitution] = STATE(472), + [sym_process_substitution] = STATE(472), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(493), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25547,50 +29226,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(141), }, [3] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym__expression] = STATE(2484), - [sym_binary_expression] = STATE(2582), - [sym_ternary_expression] = STATE(2582), - [sym_unary_expression] = STATE(2582), - [sym_postfix_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_arithmetic_expansion] = STATE(371), - [sym_brace_expression] = STATE(371), - [sym_concatenation] = STATE(395), - [sym_string] = STATE(371), - [sym_translated_string] = STATE(371), - [sym_number] = STATE(371), - [sym_simple_expansion] = STATE(371), - [sym_expansion] = STATE(371), - [sym_command_substitution] = STATE(371), - [sym_process_substitution] = STATE(371), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(392), + [sym__statements] = STATE(6914), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym__expression] = STATE(3042), + [sym_binary_expression] = STATE(3053), + [sym_ternary_expression] = STATE(3053), + [sym_unary_expression] = STATE(3053), + [sym_postfix_expression] = STATE(3053), + [sym_parenthesized_expression] = STATE(3053), + [sym_arithmetic_expansion] = STATE(472), + [sym_brace_expression] = STATE(472), + [sym_concatenation] = STATE(502), + [sym_string] = STATE(472), + [sym_translated_string] = STATE(472), + [sym_number] = STATE(472), + [sym_simple_expansion] = STATE(472), + [sym_expansion] = STATE(472), + [sym_command_substitution] = STATE(472), + [sym_process_substitution] = STATE(472), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(493), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25650,48 +29329,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(141), }, [4] = { - [sym__statement_not_pipeline] = STATE(5354), - [sym_redirected_statement] = STATE(4240), - [sym_for_statement] = STATE(4373), - [sym_c_style_for_statement] = STATE(4373), - [sym_while_statement] = STATE(4112), - [sym_if_statement] = STATE(4112), - [sym_case_statement] = STATE(4373), - [sym_function_definition] = STATE(4373), - [sym_compound_statement] = STATE(4373), - [sym_subshell] = STATE(4373), - [sym_pipeline] = STATE(4440), - [sym_list] = STATE(4373), - [sym_negated_command] = STATE(4373), - [sym_test_command] = STATE(4373), - [sym_declaration_command] = STATE(4373), - [sym_unset_command] = STATE(4373), - [sym_command] = STATE(4373), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(1523), - [sym_variable_assignments] = STATE(4373), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(2137), - [sym_herestring_redirect] = STATE(2138), - [sym__expression] = STATE(2461), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(400), - [sym_brace_expression] = STATE(400), - [sym_concatenation] = STATE(422), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_number] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_redirected_statement_repeat2] = STATE(4364), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(420), + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5394), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3131), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -25752,48 +29431,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [5] = { - [sym__statement_not_pipeline] = STATE(5354), - [sym_redirected_statement] = STATE(4267), - [sym_for_statement] = STATE(4373), - [sym_c_style_for_statement] = STATE(4373), - [sym_while_statement] = STATE(4112), - [sym_if_statement] = STATE(4112), - [sym_case_statement] = STATE(4373), - [sym_function_definition] = STATE(4373), - [sym_compound_statement] = STATE(4373), - [sym_subshell] = STATE(4373), - [sym_pipeline] = STATE(4440), - [sym_list] = STATE(4373), - [sym_negated_command] = STATE(4373), - [sym_test_command] = STATE(4373), - [sym_declaration_command] = STATE(4373), - [sym_unset_command] = STATE(4373), - [sym_command] = STATE(4373), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(1523), - [sym_variable_assignments] = STATE(4373), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(2137), - [sym_herestring_redirect] = STATE(2138), - [sym__expression] = STATE(2550), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(400), - [sym_brace_expression] = STATE(400), - [sym_concatenation] = STATE(422), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_number] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_redirected_statement_repeat2] = STATE(4364), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(420), + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5266), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3124), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -25854,48 +29533,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [6] = { - [sym__statement_not_pipeline] = STATE(5354), - [sym_redirected_statement] = STATE(4216), - [sym_for_statement] = STATE(4373), - [sym_c_style_for_statement] = STATE(4373), - [sym_while_statement] = STATE(4112), - [sym_if_statement] = STATE(4112), - [sym_case_statement] = STATE(4373), - [sym_function_definition] = STATE(4373), - [sym_compound_statement] = STATE(4373), - [sym_subshell] = STATE(4373), - [sym_pipeline] = STATE(4440), - [sym_list] = STATE(4373), - [sym_negated_command] = STATE(4373), - [sym_test_command] = STATE(4373), - [sym_declaration_command] = STATE(4373), - [sym_unset_command] = STATE(4373), - [sym_command] = STATE(4373), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(1523), - [sym_variable_assignments] = STATE(4373), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(2137), - [sym_herestring_redirect] = STATE(2138), - [sym__expression] = STATE(2479), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(400), - [sym_brace_expression] = STATE(400), - [sym_concatenation] = STATE(422), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_number] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_redirected_statement_repeat2] = STATE(4364), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(420), + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5317), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3145), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -25956,3508 +29635,4119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [7] = { - [sym__expression] = STATE(2442), - [sym_binary_expression] = STATE(2582), - [sym_ternary_expression] = STATE(2582), - [sym_unary_expression] = STATE(2582), - [sym_postfix_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_arithmetic_expansion] = STATE(2112), - [sym_brace_expression] = STATE(2112), - [sym_concatenation] = STATE(2582), - [sym_string] = STATE(2112), - [sym_translated_string] = STATE(2112), - [sym_number] = STATE(2112), - [sym_simple_expansion] = STATE(2112), - [sym_expansion] = STATE(2112), - [sym_command_substitution] = STATE(2112), - [sym_process_substitution] = STATE(2112), - [aux_sym__literal_repeat1] = STATE(2140), - [aux_sym_concatenation_repeat1] = STATE(369), - [sym_word] = ACTIONS(227), - [anon_sym_LPAREN_LPAREN] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(235), - [anon_sym_AMP_AMP] = ACTIONS(235), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(235), - [anon_sym_GT_GT] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_SEMI_SEMI] = ACTIONS(231), - [anon_sym_PIPE_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(240), - [anon_sym_EQ_TILDE] = ACTIONS(235), - [anon_sym_AMP_GT] = ACTIONS(231), - [anon_sym_AMP_GT_GT] = ACTIONS(231), - [anon_sym_LT_AMP] = ACTIONS(231), - [anon_sym_GT_AMP] = ACTIONS(231), - [anon_sym_GT_PIPE] = ACTIONS(231), - [anon_sym_LT_AMP_DASH] = ACTIONS(231), - [anon_sym_GT_AMP_DASH] = ACTIONS(231), - [anon_sym_LT_LT_DASH] = ACTIONS(231), - [aux_sym_heredoc_redirect_token1] = ACTIONS(231), - [anon_sym_LT_LT_LT] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(242), - [anon_sym_DASH_DASH2] = ACTIONS(242), + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5361), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3155), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(153), + [anon_sym_LT_AMP_DASH] = ACTIONS(179), + [anon_sym_GT_AMP_DASH] = ACTIONS(179), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(215), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [8] = { + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5358), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3052), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(153), + [anon_sym_LT_AMP_DASH] = ACTIONS(179), + [anon_sym_GT_AMP_DASH] = ACTIONS(179), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(215), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [9] = { + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5356), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3140), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(153), + [anon_sym_LT_AMP_DASH] = ACTIONS(179), + [anon_sym_GT_AMP_DASH] = ACTIONS(179), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(215), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [10] = { + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5315), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3085), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(153), + [anon_sym_LT_AMP_DASH] = ACTIONS(179), + [anon_sym_GT_AMP_DASH] = ACTIONS(179), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(215), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [11] = { + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5289), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5195), + [sym_if_statement] = STATE(5195), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5569), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1811), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2693), + [sym_herestring_redirect] = STATE(2691), + [sym__expression] = STATE(3152), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_redirected_statement_repeat2] = STATE(5167), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(153), + [anon_sym_LT_AMP_DASH] = ACTIONS(179), + [anon_sym_GT_AMP_DASH] = ACTIONS(179), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(215), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [12] = { + [sym__expression] = STATE(3098), + [sym_binary_expression] = STATE(3053), + [sym_ternary_expression] = STATE(3053), + [sym_unary_expression] = STATE(3053), + [sym_postfix_expression] = STATE(3053), + [sym_parenthesized_expression] = STATE(3053), + [sym_arithmetic_expansion] = STATE(2500), + [sym_brace_expression] = STATE(2500), + [sym_concatenation] = STATE(3053), + [sym_string] = STATE(2500), + [sym_translated_string] = STATE(2500), + [sym_number] = STATE(2500), + [sym_simple_expansion] = STATE(2500), + [sym_expansion] = STATE(2500), + [sym_command_substitution] = STATE(2500), + [sym_process_substitution] = STATE(2500), + [aux_sym__literal_repeat1] = STATE(2690), + [aux_sym_concatenation_repeat1] = STATE(470), + [sym_word] = ACTIONS(237), + [anon_sym_LPAREN_LPAREN] = ACTIONS(239), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(243), + [anon_sym_GT_GT_EQ] = ACTIONS(243), + [anon_sym_AMP_EQ] = ACTIONS(243), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(243), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(245), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [aux_sym_heredoc_redirect_token1] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(252), + [anon_sym_DASH_DASH2] = ACTIONS(252), [anon_sym_DASH2] = ACTIONS(105), [anon_sym_PLUS2] = ACTIONS(105), [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(244), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(248), - [sym__special_character] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(227), - [sym_ansi_c_string] = ACTIONS(227), - [aux_sym_number_token1] = ACTIONS(254), - [aux_sym_number_token2] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(264), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(239), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(254), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(258), + [sym__special_character] = ACTIONS(260), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(237), + [sym_ansi_c_string] = ACTIONS(237), + [aux_sym_number_token1] = ACTIONS(264), + [aux_sym_number_token2] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(276), + [anon_sym_GT_LPAREN] = ACTIONS(276), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(268), - [sym__concat] = ACTIONS(270), - [sym_test_operator] = ACTIONS(272), - [sym__bare_dollar] = ACTIONS(268), - [sym__brace_start] = ACTIONS(274), + [sym_file_descriptor] = ACTIONS(278), + [sym__concat] = ACTIONS(280), + [sym_test_operator] = ACTIONS(282), + [sym__bare_dollar] = ACTIONS(278), + [sym__brace_start] = ACTIONS(284), }, - [8] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5041), - [sym_else_clause] = STATE(6039), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5041), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [13] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6289), + [sym_else_clause] = STATE(7417), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6289), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(284), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(294), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [9] = { - [aux_sym__terminated_statement] = STATE(10), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5035), - [sym_else_clause] = STATE(5792), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5035), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [14] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6327), + [sym_else_clause] = STATE(7004), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6327), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(336), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(346), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [10] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5024), - [sym_else_clause] = STATE(5768), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5024), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [15] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6265), + [sym_else_clause] = STATE(7416), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6265), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(338), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(348), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [11] = { - [sym__expression] = STATE(2534), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(2053), - [sym_brace_expression] = STATE(2053), - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(2053), - [sym_translated_string] = STATE(2053), - [sym_number] = STATE(2053), - [sym_simple_expansion] = STATE(2053), - [sym_expansion] = STATE(2053), - [sym_command_substitution] = STATE(2053), - [sym_process_substitution] = STATE(2053), - [aux_sym__literal_repeat1] = STATE(2172), - [aux_sym_concatenation_repeat1] = STATE(398), - [sym_word] = ACTIONS(340), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(235), - [anon_sym_GT_GT] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_PIPE_AMP] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_RBRACK] = ACTIONS(344), - [anon_sym_EQ_TILDE] = ACTIONS(235), - [anon_sym_AMP_GT] = ACTIONS(231), - [anon_sym_AMP_GT_GT] = ACTIONS(268), - [anon_sym_LT_AMP] = ACTIONS(231), - [anon_sym_GT_AMP] = ACTIONS(231), - [anon_sym_GT_PIPE] = ACTIONS(268), - [anon_sym_LT_AMP_DASH] = ACTIONS(268), - [anon_sym_GT_AMP_DASH] = ACTIONS(268), - [anon_sym_LT_LT_DASH] = ACTIONS(268), - [anon_sym_LT_LT_LT] = ACTIONS(268), - [anon_sym_QMARK] = ACTIONS(233), + [16] = { + [sym__expression] = STATE(3012), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(2521), + [sym_brace_expression] = STATE(2521), + [sym_concatenation] = STATE(3071), + [sym_string] = STATE(2521), + [sym_translated_string] = STATE(2521), + [sym_number] = STATE(2521), + [sym_simple_expansion] = STATE(2521), + [sym_expansion] = STATE(2521), + [sym_command_substitution] = STATE(2521), + [sym_process_substitution] = STATE(2521), + [aux_sym__literal_repeat1] = STATE(2641), + [aux_sym_concatenation_repeat1] = STATE(499), + [sym_word] = ACTIONS(350), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(356), + [anon_sym_AMP_AMP] = ACTIONS(356), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_PIPE_AMP] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(245), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(278), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(278), + [anon_sym_LT_AMP_DASH] = ACTIONS(278), + [anon_sym_GT_AMP_DASH] = ACTIONS(278), + [anon_sym_LT_LT_DASH] = ACTIONS(278), + [anon_sym_LT_LT_LT] = ACTIONS(278), + [anon_sym_QMARK] = ACTIONS(243), [anon_sym_PLUS_PLUS2] = ACTIONS(183), [anon_sym_DASH_DASH2] = ACTIONS(183), [anon_sym_DASH2] = ACTIONS(185), [anon_sym_PLUS2] = ACTIONS(185), [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(363), - [sym_ansi_c_string] = ACTIONS(363), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [sym_ansi_c_string] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(268), - [sym__concat] = ACTIONS(355), - [sym_test_operator] = ACTIONS(379), - [sym__bare_dollar] = ACTIONS(268), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(278), + [sym__concat] = ACTIONS(365), + [sym_test_operator] = ACTIONS(389), + [sym__bare_dollar] = ACTIONS(278), + [sym__brace_start] = ACTIONS(391), }, - [12] = { - [aux_sym__terminated_statement] = STATE(8), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5046), - [sym_else_clause] = STATE(6055), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5046), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [17] = { + [aux_sym__terminated_statement] = STATE(15), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6340), + [sym_else_clause] = STATE(7114), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6340), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(383), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(393), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [13] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5028), - [sym_else_clause] = STATE(5767), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5028), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [18] = { + [aux_sym__terminated_statement] = STATE(13), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6363), + [sym_else_clause] = STATE(7478), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6363), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(385), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(395), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [14] = { - [aux_sym__terminated_statement] = STATE(13), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_elif_clause] = STATE(5030), - [sym_else_clause] = STATE(5861), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_if_statement_repeat1] = STATE(5030), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [19] = { + [aux_sym__terminated_statement] = STATE(20), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6339), + [sym_else_clause] = STATE(7069), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6339), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(387), - [anon_sym_elif] = ACTIONS(286), - [anon_sym_else] = ACTIONS(288), + [anon_sym_fi] = ACTIONS(397), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [15] = { - [sym__statements] = STATE(5197), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_SEMI_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), - }, - [16] = { - [sym__statements] = STATE(5168), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(469), - [anon_sym_SEMI_SEMI] = ACTIONS(471), - [anon_sym_SEMI_AMP] = ACTIONS(473), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(473), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), - }, - [17] = { - [sym__statements] = STATE(5176), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(477), - [anon_sym_SEMI_AMP] = ACTIONS(479), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(481), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), - }, - [18] = { - [sym__statements] = STATE(5193), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(483), - [anon_sym_SEMI_SEMI] = ACTIONS(485), - [anon_sym_SEMI_AMP] = ACTIONS(487), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(489), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), - }, - [19] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(491), - [anon_sym_for] = ACTIONS(494), - [anon_sym_select] = ACTIONS(497), - [anon_sym_LPAREN_LPAREN] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_while] = ACTIONS(512), - [anon_sym_until] = ACTIONS(512), - [anon_sym_do] = ACTIONS(515), - [anon_sym_if] = ACTIONS(517), - [anon_sym_then] = ACTIONS(515), - [anon_sym_fi] = ACTIONS(515), - [anon_sym_elif] = ACTIONS(515), - [anon_sym_else] = ACTIONS(515), - [anon_sym_case] = ACTIONS(520), - [anon_sym_function] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(535), - [anon_sym_declare] = ACTIONS(538), - [anon_sym_typeset] = ACTIONS(538), - [anon_sym_export] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_local] = ACTIONS(538), - [anon_sym_unset] = ACTIONS(541), - [anon_sym_unsetenv] = ACTIONS(541), - [anon_sym_AMP_GT] = ACTIONS(503), - [anon_sym_AMP_GT_GT] = ACTIONS(506), - [anon_sym_LT_AMP] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(503), - [anon_sym_GT_PIPE] = ACTIONS(506), - [anon_sym_LT_AMP_DASH] = ACTIONS(544), - [anon_sym_GT_AMP_DASH] = ACTIONS(544), - [anon_sym_LT_LT_LT] = ACTIONS(547), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(550), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(556), - [sym__special_character] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(565), - [sym_ansi_c_string] = ACTIONS(565), - [aux_sym_number_token1] = ACTIONS(568), - [aux_sym_number_token2] = ACTIONS(571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(577), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(583), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(589), - [sym_variable_name] = ACTIONS(592), - [sym_test_operator] = ACTIONS(595), - [sym__brace_start] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [20] = { - [sym__statements] = STATE(5157), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(601), - [anon_sym_SEMI_SEMI] = ACTIONS(603), - [anon_sym_SEMI_AMP] = ACTIONS(605), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(605), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6331), + [sym_else_clause] = STATE(6862), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6331), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(399), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [21] = { - [sym__statements] = STATE(5169), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(607), - [anon_sym_SEMI_SEMI] = ACTIONS(609), - [anon_sym_SEMI_AMP] = ACTIONS(611), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(613), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [aux_sym__terminated_statement] = STATE(14), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_elif_clause] = STATE(6337), + [sym_else_clause] = STATE(6981), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_if_statement_repeat1] = STATE(6337), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(401), + [anon_sym_elif] = ACTIONS(296), + [anon_sym_else] = ACTIONS(298), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [22] = { - [sym__statements] = STATE(5173), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(607), - [anon_sym_SEMI_SEMI] = ACTIONS(615), - [anon_sym_SEMI_AMP] = ACTIONS(617), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(619), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6501), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [anon_sym_SEMI_AMP] = ACTIONS(427), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(429), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [23] = { - [sym__statements] = STATE(5196), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(621), - [anon_sym_SEMI_AMP] = ACTIONS(623), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(625), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6539), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(483), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_SEMI_AMP] = ACTIONS(487), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(487), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [24] = { - [sym__statements] = STATE(5200), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(483), - [anon_sym_SEMI_SEMI] = ACTIONS(627), - [anon_sym_SEMI_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(631), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6511), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(489), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_SEMI_AMP] = ACTIONS(493), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(495), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [25] = { - [sym__statements] = STATE(5167), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(633), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_SEMI_AMP] = ACTIONS(637), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(637), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6492), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(489), + [anon_sym_SEMI_SEMI] = ACTIONS(497), + [anon_sym_SEMI_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(501), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [26] = { - [sym__statements] = STATE(5163), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(639), - [anon_sym_SEMI_AMP] = ACTIONS(641), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(643), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6524), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(503), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_SEMI_AMP] = ACTIONS(507), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(509), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [27] = { - [sym__statements] = STATE(5161), - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3575), - [sym_for_statement] = STATE(3575), - [sym_c_style_for_statement] = STATE(3575), - [sym_while_statement] = STATE(3522), - [sym_if_statement] = STATE(3522), - [sym_case_statement] = STATE(3575), - [sym_function_definition] = STATE(3575), - [sym_compound_statement] = STATE(3575), - [sym_subshell] = STATE(3575), - [sym_pipeline] = STATE(3781), - [sym_list] = STATE(3575), - [sym_negated_command] = STATE(3575), - [sym_test_command] = STATE(3575), - [sym_declaration_command] = STATE(3575), - [sym_unset_command] = STATE(3575), - [sym_command] = STATE(3575), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(3575), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(326), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_SEMI_AMP] = ACTIONS(649), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(649), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [sym__statements] = STATE(6496), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(511), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_SEMI_AMP] = ACTIONS(515), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(517), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [28] = { - [sym__statements] = STATE(5369), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(659), - [anon_sym_SEMI_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(415), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6491), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(511), + [anon_sym_SEMI_SEMI] = ACTIONS(519), + [anon_sym_SEMI_AMP] = ACTIONS(521), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(523), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [29] = { - [sym__statements] = STATE(5260), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(707), - [anon_sym_SEMI_AMP] = ACTIONS(605), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(605), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6542), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(503), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_SEMI_AMP] = ACTIONS(527), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(529), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [30] = { - [sym__statements] = STATE(5315), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(709), - [anon_sym_SEMI_AMP] = ACTIONS(641), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(643), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6541), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(531), + [anon_sym_SEMI_SEMI] = ACTIONS(533), + [anon_sym_SEMI_AMP] = ACTIONS(535), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(535), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [31] = { - [sym__statements] = STATE(5316), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_SEMI_AMP] = ACTIONS(637), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(637), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6536), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(537), + [anon_sym_SEMI_SEMI] = ACTIONS(539), + [anon_sym_SEMI_AMP] = ACTIONS(541), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [32] = { - [sym__statements] = STATE(5317), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(713), - [anon_sym_SEMI_AMP] = ACTIONS(473), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(473), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6533), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(543), + [anon_sym_SEMI_SEMI] = ACTIONS(545), + [anon_sym_SEMI_AMP] = ACTIONS(547), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [33] = { - [sym__statements] = STATE(5330), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_SEMI_AMP] = ACTIONS(611), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(613), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6521), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4349), + [sym_for_statement] = STATE(4349), + [sym_c_style_for_statement] = STATE(4349), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4349), + [sym_function_definition] = STATE(4349), + [sym_compound_statement] = STATE(4349), + [sym_subshell] = STATE(4349), + [sym_pipeline] = STATE(4620), + [sym_list] = STATE(4349), + [sym_negated_command] = STATE(4349), + [sym_test_command] = STATE(4349), + [sym_declaration_command] = STATE(4349), + [sym_unset_command] = STATE(4349), + [sym_command] = STATE(4349), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(807), + [sym_variable_assignments] = STATE(4349), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(431), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), }, [34] = { - [sym__statements] = STATE(5335), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_SEMI_AMP] = ACTIONS(617), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(619), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(555), + [anon_sym_for] = ACTIONS(558), + [anon_sym_select] = ACTIONS(561), + [anon_sym_LPAREN_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_until] = ACTIONS(576), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_then] = ACTIONS(579), + [anon_sym_fi] = ACTIONS(579), + [anon_sym_elif] = ACTIONS(579), + [anon_sym_else] = ACTIONS(579), + [anon_sym_case] = ACTIONS(584), + [anon_sym_function] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(599), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_unset] = ACTIONS(605), + [anon_sym_unsetenv] = ACTIONS(605), + [anon_sym_AMP_GT] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(570), + [anon_sym_LT_AMP] = ACTIONS(567), + [anon_sym_GT_AMP] = ACTIONS(567), + [anon_sym_GT_PIPE] = ACTIONS(570), + [anon_sym_LT_AMP_DASH] = ACTIONS(608), + [anon_sym_GT_AMP_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(611), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym__special_character] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_raw_string] = ACTIONS(629), + [sym_ansi_c_string] = ACTIONS(629), + [aux_sym_number_token1] = ACTIONS(632), + [aux_sym_number_token2] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(653), + [sym_variable_name] = ACTIONS(656), + [sym_test_operator] = ACTIONS(659), + [sym__brace_start] = ACTIONS(662), }, [35] = { - [sym__statements] = STATE(5360), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(719), - [anon_sym_SEMI_AMP] = ACTIONS(479), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(481), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6649), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_SEMI_AMP] = ACTIONS(535), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(535), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [36] = { - [sym__statements] = STATE(5367), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(721), - [anon_sym_SEMI_AMP] = ACTIONS(487), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(489), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6620), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_SEMI_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(501), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [37] = { - [sym__statements] = STATE(5252), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(723), - [anon_sym_SEMI_AMP] = ACTIONS(649), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(649), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6722), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(741), + [anon_sym_SEMI_AMP] = ACTIONS(515), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(517), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [38] = { - [sym__statements] = STATE(5355), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_SEMI_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(631), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6719), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_SEMI_AMP] = ACTIONS(427), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(429), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [39] = { - [sym__statements] = STATE(5370), - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3710), - [sym_for_statement] = STATE(3710), - [sym_c_style_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3542), - [sym_if_statement] = STATE(3542), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_compound_statement] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(4025), - [sym_list] = STATE(3710), - [sym_negated_command] = STATE(3710), - [sym_test_command] = STATE(3710), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), - [sym_command] = STATE(3710), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(3710), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(324), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_SEMI_SEMI] = ACTIONS(727), - [anon_sym_SEMI_AMP] = ACTIONS(623), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(625), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [sym__statements] = STATE(6716), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [40] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(729), - [anon_sym_elif] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym__statements] = STATE(6700), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_SEMI_AMP] = ACTIONS(521), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(523), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, [41] = { - [aux_sym__terminated_statement] = STATE(40), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [sym__statements] = STATE(6611), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(749), + [anon_sym_SEMI_AMP] = ACTIONS(487), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(487), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [42] = { + [sym__statements] = STATE(6672), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_SEMI_AMP] = ACTIONS(547), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [43] = { + [sym__statements] = STATE(6667), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_SEMI_AMP] = ACTIONS(493), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(495), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [44] = { + [sym__statements] = STATE(6637), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(755), + [anon_sym_SEMI_AMP] = ACTIONS(507), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(509), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [45] = { + [sym__statements] = STATE(6666), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(757), + [anon_sym_SEMI_AMP] = ACTIONS(541), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [46] = { + [sym__statements] = STATE(6690), + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4416), + [sym_for_statement] = STATE(4416), + [sym_c_style_for_statement] = STATE(4416), + [sym_while_statement] = STATE(4239), + [sym_if_statement] = STATE(4239), + [sym_case_statement] = STATE(4416), + [sym_function_definition] = STATE(4416), + [sym_compound_statement] = STATE(4416), + [sym_subshell] = STATE(4416), + [sym_pipeline] = STATE(4910), + [sym_list] = STATE(4416), + [sym_negated_command] = STATE(4416), + [sym_test_command] = STATE(4416), + [sym_declaration_command] = STATE(4416), + [sym_unset_command] = STATE(4416), + [sym_command] = STATE(4416), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(4416), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_SEMI_SEMI] = ACTIONS(759), + [anon_sym_SEMI_AMP] = ACTIONS(527), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(529), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [47] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(731), - [anon_sym_elif] = ACTIONS(731), - [anon_sym_else] = ACTIONS(731), + [anon_sym_fi] = ACTIONS(761), + [anon_sym_elif] = ACTIONS(761), + [anon_sym_else] = ACTIONS(761), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [42] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_do_group] = STATE(4445), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [48] = { + [aux_sym__terminated_statement] = STATE(47), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(733), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(763), + [anon_sym_elif] = ACTIONS(763), + [anon_sym_else] = ACTIONS(763), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [43] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [49] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(767), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -29475,82 +33765,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [44] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [50] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_do_group] = STATE(4946), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(777), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [51] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_do_group] = STATE(4632), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(779), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [52] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(781), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -29568,82 +34044,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [45] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [53] = { + [sym__statements] = STATE(7053), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(783), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -29661,175 +34137,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [46] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_do_group] = STATE(3841), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [54] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_do_group] = STATE(4666), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(751), + [anon_sym_do] = ACTIONS(785), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [47] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [55] = { + [sym__statements] = STATE(7441), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(787), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -29847,82 +34323,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [48] = { - [sym__statements] = STATE(5909), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [56] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(789), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -29940,82 +34416,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [49] = { - [sym__statements] = STATE(5980), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [57] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(791), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30033,82 +34509,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [50] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [58] = { + [sym__statements] = STATE(7350), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30126,175 +34602,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [51] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_do_group] = STATE(3883), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [59] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_do_group] = STATE(5560), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(761), + [anon_sym_do] = ACTIONS(795), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [52] = { - [sym__statements] = STATE(5909), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [60] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(797), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30312,254 +34788,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [53] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [61] = { + [sym__statements] = STATE(7328), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(765), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [54] = { - [sym__statements] = STATE(5773), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [62] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(555), + [anon_sym_for] = ACTIONS(558), + [anon_sym_select] = ACTIONS(561), + [anon_sym_LPAREN_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_until] = ACTIONS(576), + [anon_sym_if] = ACTIONS(581), + [anon_sym_case] = ACTIONS(584), + [anon_sym_function] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(599), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_unset] = ACTIONS(605), + [anon_sym_unsetenv] = ACTIONS(605), + [anon_sym_AMP_GT] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(570), + [anon_sym_LT_AMP] = ACTIONS(567), + [anon_sym_GT_AMP] = ACTIONS(567), + [anon_sym_GT_PIPE] = ACTIONS(570), + [anon_sym_LT_AMP_DASH] = ACTIONS(608), + [anon_sym_GT_AMP_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(611), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym__special_character] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_raw_string] = ACTIONS(629), + [sym_ansi_c_string] = ACTIONS(629), + [aux_sym_number_token1] = ACTIONS(632), + [aux_sym_number_token2] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(653), + [sym_variable_name] = ACTIONS(656), + [sym_test_operator] = ACTIONS(659), + [sym__brace_start] = ACTIONS(662), + }, + [63] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [55] = { - [sym__statements] = STATE(5874), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1612), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [64] = { + [sym__statements] = STATE(7356), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2191), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -30570,7 +35138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30588,162 +35156,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [56] = { - [sym__statements] = STATE(5876), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [65] = { + [sym__statements] = STATE(7355), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [57] = { - [sym__statements] = STATE(5894), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1790), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [66] = { + [sym__statements] = STATE(7354), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [67] = { + [sym__statements] = STATE(7353), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -30754,7 +35414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30772,70 +35432,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [58] = { - [sym__statements] = STATE(6020), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [68] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [69] = { + [sym__statements] = STATE(7127), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2186), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -30846,7 +35598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -30864,254 +35616,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [59] = { - [sym__statements] = STATE(5893), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [70] = { + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(815), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [60] = { - [sym__statements] = STATE(5892), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [71] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(817), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [61] = { - [sym__statements] = STATE(5891), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [72] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [73] = { + [sym__statements] = STATE(7124), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [74] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [75] = { + [sym__statements] = STATE(7123), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [76] = { + [aux_sym__terminated_statement] = STATE(78), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(823), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [77] = { + [sym__statements] = STATE(7120), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -31122,7 +36334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -31140,70 +36352,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [62] = { - [sym__statements] = STATE(5593), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [78] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(825), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [79] = { + [sym__statements] = STATE(7103), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2183), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -31214,7 +36518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -31232,530 +36536,806 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [63] = { - [sym__statements] = STATE(6024), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [80] = { + [sym__statements] = STATE(7100), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [64] = { - [sym__statements] = STATE(5592), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [81] = { + [aux_sym__terminated_statement] = STATE(82), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [65] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [82] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(777), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [66] = { - [sym__statements] = STATE(6027), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [83] = { + [sym__statements] = STATE(7099), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [67] = { - [sym__statements] = STATE(5718), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [84] = { + [aux_sym__terminated_statement] = STATE(85), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [68] = { - [sym__statements] = STATE(5586), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1560), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [85] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(833), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [86] = { + [aux_sym__terminated_statement] = STATE(87), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [87] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [88] = { + [sym__statements] = STATE(7098), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -31766,7 +37346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -31784,70 +37364,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [69] = { - [sym__statements] = STATE(5565), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [89] = { + [sym__statements] = STATE(7047), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2181), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -31858,7 +37438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -31876,530 +37456,990 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [70] = { - [sym__statements] = STATE(5562), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [90] = { + [aux_sym__terminated_statement] = STATE(91), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(839), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [71] = { - [sym__statements] = STATE(5559), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [91] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(841), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [72] = { - [sym__statements] = STATE(6034), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1755), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [92] = { + [aux_sym__terminated_statement] = STATE(93), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [73] = { - [sym__statements] = STATE(5797), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [93] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [74] = { - [sym__statements] = STATE(6054), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [94] = { + [aux_sym__terminated_statement] = STATE(95), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(847), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [75] = { - [sym__statements] = STATE(5545), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1562), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [95] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(849), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [96] = { + [aux_sym__terminated_statement] = STATE(99), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [97] = { + [sym__statements] = STATE(7043), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [98] = { + [sym__statements] = STATE(7034), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [99] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [100] = { + [sym__statements] = STATE(7032), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -32410,7 +38450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -32428,70 +38468,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [76] = { - [sym__statements] = STATE(5528), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [101] = { + [sym__statements] = STATE(6888), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -32502,7 +38542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -32520,714 +38560,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [77] = { - [aux_sym__terminated_statement] = STATE(77), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(491), - [anon_sym_for] = ACTIONS(494), - [anon_sym_select] = ACTIONS(497), - [anon_sym_LPAREN_LPAREN] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_while] = ACTIONS(512), - [anon_sym_until] = ACTIONS(512), - [anon_sym_if] = ACTIONS(517), - [anon_sym_case] = ACTIONS(520), - [anon_sym_function] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(535), - [anon_sym_declare] = ACTIONS(538), - [anon_sym_typeset] = ACTIONS(538), - [anon_sym_export] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_local] = ACTIONS(538), - [anon_sym_unset] = ACTIONS(541), - [anon_sym_unsetenv] = ACTIONS(541), - [anon_sym_AMP_GT] = ACTIONS(503), - [anon_sym_AMP_GT_GT] = ACTIONS(506), - [anon_sym_LT_AMP] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(503), - [anon_sym_GT_PIPE] = ACTIONS(506), - [anon_sym_LT_AMP_DASH] = ACTIONS(544), - [anon_sym_GT_AMP_DASH] = ACTIONS(544), - [anon_sym_LT_LT_LT] = ACTIONS(547), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(550), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(556), - [sym__special_character] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(565), - [sym_ansi_c_string] = ACTIONS(565), - [aux_sym_number_token1] = ACTIONS(568), - [aux_sym_number_token2] = ACTIONS(571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(577), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(583), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(589), - [sym_variable_name] = ACTIONS(592), - [sym_test_operator] = ACTIONS(595), - [sym__brace_start] = ACTIONS(598), - }, - [78] = { - [sym__statements] = STATE(5877), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [102] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(855), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [79] = { - [sym__statements] = STATE(5527), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [103] = { + [aux_sym__terminated_statement] = STATE(104), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(857), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [80] = { - [sym__statements] = STATE(5902), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1582), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [104] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [81] = { - [sym__statements] = STATE(5904), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [105] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(555), + [anon_sym_for] = ACTIONS(558), + [anon_sym_select] = ACTIONS(561), + [anon_sym_LPAREN_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_until] = ACTIONS(576), + [anon_sym_done] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_case] = ACTIONS(584), + [anon_sym_function] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(599), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_unset] = ACTIONS(605), + [anon_sym_unsetenv] = ACTIONS(605), + [anon_sym_AMP_GT] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(570), + [anon_sym_LT_AMP] = ACTIONS(567), + [anon_sym_GT_AMP] = ACTIONS(567), + [anon_sym_GT_PIPE] = ACTIONS(570), + [anon_sym_LT_AMP_DASH] = ACTIONS(608), + [anon_sym_GT_AMP_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(611), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym__special_character] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_raw_string] = ACTIONS(629), + [sym_ansi_c_string] = ACTIONS(629), + [aux_sym_number_token1] = ACTIONS(632), + [aux_sym_number_token2] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(653), + [sym_variable_name] = ACTIONS(656), + [sym_test_operator] = ACTIONS(659), + [sym__brace_start] = ACTIONS(662), + }, + [106] = { + [sym__statements] = STATE(7083), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [82] = { - [sym__statements] = STATE(5910), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [107] = { + [sym__statements] = STATE(6881), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [83] = { - [aux_sym__terminated_statement] = STATE(77), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [108] = { + [sym__statements] = STATE(6880), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [84] = { - [sym__statements] = STATE(5961), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1620), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [109] = { + [sym__statements] = STATE(6859), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -33238,7 +39278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -33256,438 +39296,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [85] = { - [sym__statements] = STATE(5982), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [86] = { - [sym__statements] = STATE(6050), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [110] = { + [sym__statements] = STATE(6831), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2179), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [87] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(491), - [anon_sym_for] = ACTIONS(494), - [anon_sym_select] = ACTIONS(497), - [anon_sym_LPAREN_LPAREN] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_while] = ACTIONS(512), - [anon_sym_until] = ACTIONS(512), - [anon_sym_done] = ACTIONS(515), - [anon_sym_if] = ACTIONS(517), - [anon_sym_case] = ACTIONS(520), - [anon_sym_function] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(535), - [anon_sym_declare] = ACTIONS(538), - [anon_sym_typeset] = ACTIONS(538), - [anon_sym_export] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_local] = ACTIONS(538), - [anon_sym_unset] = ACTIONS(541), - [anon_sym_unsetenv] = ACTIONS(541), - [anon_sym_AMP_GT] = ACTIONS(503), - [anon_sym_AMP_GT_GT] = ACTIONS(506), - [anon_sym_LT_AMP] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(503), - [anon_sym_GT_PIPE] = ACTIONS(506), - [anon_sym_LT_AMP_DASH] = ACTIONS(544), - [anon_sym_GT_AMP_DASH] = ACTIONS(544), - [anon_sym_LT_LT_LT] = ACTIONS(547), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(550), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(556), - [sym__special_character] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(565), - [sym_ansi_c_string] = ACTIONS(565), - [aux_sym_number_token1] = ACTIONS(568), - [aux_sym_number_token2] = ACTIONS(571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(577), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(583), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(589), - [sym_variable_name] = ACTIONS(592), - [sym_test_operator] = ACTIONS(595), - [sym__brace_start] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [88] = { - [sym__statements] = STATE(5613), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [111] = { + [sym__statements] = STATE(6823), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [89] = { - [sym__statements] = STATE(6109), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1621), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [112] = { + [sym__statements] = STATE(6914), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -33698,7 +39554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -33716,162 +39572,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [90] = { - [sym__statements] = STATE(6103), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [113] = { + [sym__statements] = STATE(6822), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [91] = { - [sym__statements] = STATE(6040), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1759), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [114] = { + [sym__statements] = STATE(6927), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(1939), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -33882,7 +39738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -33900,530 +39756,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [92] = { - [aux_sym__terminated_statement] = STATE(114), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [115] = { + [sym__statements] = STATE(6818), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(783), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [93] = { - [sym__statements] = STATE(5526), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [116] = { + [sym__statements] = STATE(6799), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2178), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [94] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [117] = { + [sym__statements] = STATE(6930), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(785), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [95] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [118] = { + [sym__statements] = STATE(6934), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(787), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [96] = { - [sym__statements] = STATE(6060), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [119] = { + [sym__statements] = STATE(6794), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [97] = { - [sym__statements] = STATE(6056), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1624), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [120] = { + [sym__statements] = STATE(6937), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34434,7 +40290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34452,254 +40308,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [98] = { - [sym__statements] = STATE(6052), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [121] = { + [sym__statements] = STATE(6808), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [99] = { - [sym__statements] = STATE(6049), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [122] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(861), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [100] = { - [sym__statements] = STATE(6001), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [123] = { + [sym__statements] = STATE(6801), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34710,7 +40566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34728,346 +40584,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [101] = { - [sym__statements] = STATE(6000), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [124] = { + [sym__statements] = STATE(6849), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2177), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [102] = { - [aux_sym__terminated_statement] = STATE(77), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [125] = { + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [103] = { - [aux_sym__terminated_statement] = STATE(113), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [126] = { + [sym__statements] = STATE(6854), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(791), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [104] = { - [sym__statements] = STATE(5501), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1564), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [127] = { + [sym__statements] = STATE(6855), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [128] = { + [sym__statements] = STATE(7262), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2060), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35078,7 +41026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35096,162 +41044,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [105] = { - [sym__statements] = STATE(5999), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [129] = { + [sym__statements] = STATE(7277), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [106] = { - [sym__statements] = STATE(5996), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1715), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [130] = { + [sym__statements] = STATE(7321), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [131] = { + [sym__statements] = STATE(6857), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35262,7 +41302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35280,70 +41320,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [107] = { - [sym__statements] = STATE(6045), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1626), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [132] = { + [sym__statements] = STATE(7286), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35354,7 +41394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35372,70 +41412,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [108] = { - [sym__statements] = STATE(5971), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [133] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(863), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [134] = { + [sym__statements] = STATE(6809), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2176), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35446,7 +41578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35464,254 +41596,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [109] = { - [sym__statements] = STATE(5908), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [135] = { + [sym__statements] = STATE(6897), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [110] = { - [sym__statements] = STATE(6033), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [136] = { + [sym__statements] = STATE(7203), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [111] = { - [sym__statements] = STATE(5518), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [137] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(865), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [138] = { + [sym__statements] = STATE(6911), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [139] = { + [sym__statements] = STATE(6915), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35722,7 +42038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35740,70 +42056,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [112] = { - [sym__statements] = STATE(6018), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1627), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [140] = { + [sym__statements] = STATE(7147), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2175), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35814,7 +42130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35832,346 +42148,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [113] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [141] = { + [sym__statements] = STATE(7040), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(793), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [114] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [142] = { + [sym__statements] = STATE(7033), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(795), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [115] = { - [sym__statements] = STATE(5969), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [143] = { + [aux_sym__terminated_statement] = STATE(137), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(867), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [116] = { - [sym__statements] = STATE(5980), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [144] = { + [sym__statements] = STATE(7092), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -36182,7 +42498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -36200,254 +42516,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [117] = { - [sym__statements] = STATE(6015), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [145] = { + [sym__statements] = STATE(7350), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [118] = { - [sym__statements] = STATE(6014), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [146] = { + [sym__statements] = STATE(7093), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [119] = { - [sym__statements] = STATE(6007), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1640), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [147] = { + [sym__statements] = STATE(7144), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -36458,7 +42774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -36476,162 +42792,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [120] = { - [sym__statements] = STATE(5966), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [148] = { + [sym__statements] = STATE(6951), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2120), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [121] = { - [sym__statements] = STATE(5963), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1780), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [149] = { + [sym__statements] = STATE(7250), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [150] = { + [sym__statements] = STATE(6943), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [151] = { + [sym__statements] = STATE(6850), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [152] = { + [sym__statements] = STATE(6893), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -36642,7 +43234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -36660,346 +43252,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [122] = { - [sym__statements] = STATE(6006), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [123] = { - [sym__statements] = STATE(5492), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [153] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(869), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [124] = { - [sym__statements] = STATE(6003), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [154] = { + [aux_sym__terminated_statement] = STATE(282), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [125] = { - [sym__statements] = STATE(5997), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1642), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [155] = { + [sym__statements] = STATE(6917), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -37010,7 +43510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -37028,254 +43528,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [126] = { - [sym__statements] = STATE(5995), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [156] = { + [sym__statements] = STATE(7208), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [127] = { - [sym__statements] = STATE(5992), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [157] = { + [sym__statements] = STATE(7091), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [128] = { - [sym__statements] = STATE(5977), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1644), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [158] = { + [sym__statements] = STATE(6879), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2164), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -37286,7 +43786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -37304,254 +43804,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [129] = { - [sym__statements] = STATE(5973), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [159] = { + [sym__statements] = STATE(6878), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [130] = { - [sym__statements] = STATE(5968), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [160] = { + [sym__statements] = STATE(6877), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [131] = { - [sym__statements] = STATE(5955), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1647), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [161] = { + [sym__statements] = STATE(6872), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -37562,7 +44062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -37580,254 +44080,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [132] = { - [sym__statements] = STATE(5951), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [133] = { - [sym__statements] = STATE(5943), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [134] = { - [sym__statements] = STATE(5939), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1651), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [162] = { + [sym__statements] = STATE(7165), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -37838,7 +44154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -37856,254 +44172,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [135] = { - [sym__statements] = STATE(5935), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [136] = { - [sym__statements] = STATE(5922), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [137] = { - [sym__statements] = STATE(5901), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [163] = { + [sym__statements] = STATE(7293), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -38114,7 +44246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -38132,70 +44264,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [138] = { - [sym__statements] = STATE(5921), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1657), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [164] = { + [sym__statements] = STATE(7200), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2171), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -38206,7 +44338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -38224,438 +44356,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [139] = { - [sym__statements] = STATE(5919), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [140] = { - [sym__statements] = STATE(5899), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [141] = { - [sym__statements] = STATE(5916), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [142] = { - [sym__statements] = STATE(5882), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [143] = { - [sym__statements] = STATE(5915), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1659), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [165] = { + [sym__statements] = STATE(7256), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2187), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -38666,7 +44430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -38684,70 +44448,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [144] = { - [sym__statements] = STATE(5860), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1801), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [166] = { + [sym__statements] = STATE(7148), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2185), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -38758,7 +44522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -38776,530 +44540,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [145] = { - [sym__statements] = STATE(5913), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [146] = { - [sym__statements] = STATE(5763), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [167] = { + [sym__statements] = STATE(7153), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [147] = { - [sym__statements] = STATE(5912), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [168] = { + [sym__statements] = STATE(7209), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [148] = { - [sym__statements] = STATE(5760), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [169] = { + [sym__statements] = STATE(7211), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [149] = { - [sym__statements] = STATE(5500), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [170] = { + [sym__statements] = STATE(7158), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [150] = { - [sym__statements] = STATE(5536), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1566), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [171] = { + [sym__statements] = STATE(7167), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39310,7 +44982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39328,70 +45000,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [151] = { - [sym__statements] = STATE(5617), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [172] = { + [sym__statements] = STATE(7224), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39402,7 +45074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39420,162 +45092,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [152] = { - [sym__statements] = STATE(5759), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [173] = { + [sym__statements] = STATE(7053), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [153] = { - [sym__statements] = STATE(5698), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1806), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [174] = { + [sym__statements] = STATE(7336), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2200), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39586,7 +45258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39604,254 +45276,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [154] = { - [sym__statements] = STATE(5618), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [175] = { + [sym__statements] = STATE(7342), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [155] = { - [sym__statements] = STATE(5619), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [176] = { + [sym__statements] = STATE(7347), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [156] = { - [sym__statements] = STATE(5612), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1692), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [177] = { + [sym__statements] = STATE(7364), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39862,7 +45534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39880,346 +45552,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [157] = { - [sym__statements] = STATE(5610), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [158] = { - [sym__statements] = STATE(5604), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [159] = { - [sym__statements] = STATE(5603), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [160] = { - [sym__statements] = STATE(5625), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1568), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [178] = { + [sym__statements] = STATE(7299), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40230,7 +45626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40248,70 +45644,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [161] = { - [sym__statements] = STATE(5648), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [179] = { + [sym__statements] = STATE(7441), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40322,7 +45718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40340,70 +45736,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [162] = { - [sym__statements] = STATE(5638), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [180] = { + [sym__statements] = STATE(7599), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2228), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40414,7 +45810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40432,346 +45828,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [163] = { - [sym__statements] = STATE(5649), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [164] = { - [sym__statements] = STATE(5624), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [165] = { - [sym__statements] = STATE(5843), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [181] = { + [sym__statements] = STATE(7598), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [166] = { - [sym__statements] = STATE(5834), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [182] = { + [sym__statements] = STATE(7294), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40782,7 +45994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40800,438 +46012,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [167] = { - [sym__statements] = STATE(5600), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [168] = { - [sym__statements] = STATE(5652), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [169] = { - [aux_sym__terminated_statement] = STATE(53), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [183] = { + [sym__statements] = STATE(7319), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(797), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [170] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [184] = { + [sym__statements] = STATE(7536), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(799), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [171] = { - [sym__statements] = STATE(5590), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1810), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [185] = { + [sym__statements] = STATE(7535), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41242,7 +46270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41260,70 +46288,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [172] = { - [sym__statements] = STATE(5525), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [186] = { + [sym__statements] = STATE(7520), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2236), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41334,7 +46362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41352,346 +46380,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [173] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(801), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [174] = { - [sym__statements] = STATE(5534), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [187] = { + [sym__statements] = STATE(7518), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [175] = { - [sym__statements] = STATE(5537), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [188] = { + [sym__statements] = STATE(7515), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [176] = { - [sym__statements] = STATE(5656), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1571), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [189] = { + [sym__statements] = STATE(7502), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41702,7 +46638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41720,70 +46656,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [177] = { - [sym__statements] = STATE(5511), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [190] = { + [sym__statements] = STATE(7460), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2262), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41794,7 +46730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41812,346 +46748,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [178] = { - [sym__statements] = STATE(5510), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [191] = { + [sym__statements] = STATE(7323), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [179] = { - [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [192] = { + [sym__statements] = STATE(7458), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(803), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [180] = { - [sym__statements] = STATE(5508), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [193] = { + [sym__statements] = STATE(7457), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [181] = { - [sym__statements] = STATE(5507), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [194] = { + [sym__statements] = STATE(7456), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42162,7 +47098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42180,70 +47116,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [182] = { - [sym__statements] = STATE(5538), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1828), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [195] = { + [sym__statements] = STATE(7334), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42254,7 +47190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42272,70 +47208,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [183] = { - [sym__statements] = STATE(5646), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [196] = { + [sym__statements] = STATE(7432), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2265), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42346,7 +47282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42364,438 +47300,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [184] = { - [sym__statements] = STATE(5775), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [185] = { - [aux_sym__terminated_statement] = STATE(77), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [186] = { - [sym__statements] = STATE(5736), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [197] = { + [sym__statements] = STATE(7430), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [187] = { - [sym__statements] = STATE(5737), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [198] = { + [sym__statements] = STATE(7429), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [188] = { - [sym__statements] = STATE(5520), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1779), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [199] = { + [sym__statements] = STATE(7403), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2169), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42806,7 +47558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42824,162 +47576,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [189] = { - [sym__statements] = STATE(5521), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [190] = { - [sym__statements] = STATE(5574), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [200] = { + [sym__statements] = STATE(7426), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42990,7 +47650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43008,162 +47668,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [191] = { - [sym__statements] = STATE(5523), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [192] = { - [sym__statements] = STATE(5519), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [201] = { + [sym__statements] = STATE(7375), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2264), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43174,7 +47742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43192,70 +47760,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [193] = { - [sym__statements] = STATE(5738), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1630), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [202] = { + [sym__statements] = STATE(7371), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [203] = { + [sym__statements] = STATE(7370), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [204] = { + [sym__statements] = STATE(7369), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43266,7 +48018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43284,70 +48036,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [194] = { - [sym__statements] = STATE(5543), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1592), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [205] = { + [sym__statements] = STATE(7312), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2259), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43358,7 +48110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43376,254 +48128,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [195] = { - [sym__statements] = STATE(5548), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [206] = { + [sym__statements] = STATE(7307), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [196] = { - [sym__statements] = STATE(5554), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [207] = { + [sym__statements] = STATE(7305), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [197] = { - [sym__statements] = STATE(5832), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [208] = { + [sym__statements] = STATE(7414), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [209] = { + [sym__statements] = STATE(7423), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [210] = { + [sym__statements] = STATE(7424), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43634,7 +48570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43652,70 +48588,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [198] = { - [sym__statements] = STATE(5555), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [211] = { + [sym__statements] = STATE(7600), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2168), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43726,7 +48662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43744,70 +48680,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [199] = { - [sym__statements] = STATE(5634), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1586), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [212] = { + [sym__statements] = STATE(7606), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [213] = { + [sym__statements] = STATE(7602), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [214] = { + [sym__statements] = STATE(7304), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43818,7 +48938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43836,70 +48956,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [200] = { - [sym__statements] = STATE(5985), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [215] = { + [sym__statements] = STATE(7246), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(1931), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43910,7 +49030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43928,162 +49048,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [201] = { - [sym__statements] = STATE(5986), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [216] = { + [sym__statements] = STATE(7110), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [202] = { - [sym__statements] = STATE(5577), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1724), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [217] = { + [sym__statements] = STATE(7438), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44094,7 +49214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44112,254 +49232,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [203] = { - [sym__statements] = STATE(5579), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [204] = { - [sym__statements] = STATE(5581), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [218] = { + [sym__statements] = STATE(7215), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [205] = { - [sym__statements] = STATE(5582), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [219] = { + [sym__statements] = STATE(7210), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44370,7 +49398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44388,162 +49416,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [206] = { - [sym__statements] = STATE(5987), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [207] = { - [sym__statements] = STATE(5988), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1683), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [220] = { + [sym__statements] = STATE(7161), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2255), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44554,7 +49490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44572,346 +49508,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [208] = { - [sym__statements] = STATE(5844), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [221] = { + [sym__statements] = STATE(7156), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [209] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [222] = { + [sym__statements] = STATE(7155), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(807), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [210] = { - [sym__statements] = STATE(5588), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [223] = { + [sym__statements] = STATE(7154), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [211] = { - [sym__statements] = STATE(5597), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1787), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [224] = { + [sym__statements] = STATE(7081), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2223), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44922,7 +49858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44940,254 +49876,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [212] = { - [sym__statements] = STATE(5598), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [225] = { + [sym__statements] = STATE(7075), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [213] = { - [sym__statements] = STATE(5599), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [226] = { + [aux_sym__terminated_statement] = STATE(232), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(873), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [214] = { - [sym__statements] = STATE(5605), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [227] = { + [sym__statements] = STATE(7070), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [228] = { + [sym__statements] = STATE(7067), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45198,7 +50226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45216,162 +50244,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [215] = { - [aux_sym__terminated_statement] = STATE(209), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(809), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [216] = { - [sym__statements] = STATE(5765), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1607), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [229] = { + [sym__statements] = STATE(6983), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2221), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45382,7 +50318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45400,70 +50336,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [217] = { - [sym__statements] = STATE(5620), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1709), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [230] = { + [sym__statements] = STATE(6976), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [231] = { + [sym__statements] = STATE(6840), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [232] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(875), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [233] = { + [sym__statements] = STATE(7531), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2167), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45474,7 +50686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45492,346 +50704,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [218] = { - [sym__statements] = STATE(5621), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [219] = { - [sym__statements] = STATE(5623), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [234] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(877), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [220] = { - [sym__statements] = STATE(5837), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [235] = { + [sym__statements] = STATE(6963), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [221] = { - [sym__statements] = STATE(5627), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [236] = { + [sym__statements] = STATE(6906), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2220), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45842,7 +50962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45860,162 +50980,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [222] = { - [sym__statements] = STATE(5839), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [237] = { + [aux_sym__terminated_statement] = STATE(105), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(879), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [223] = { - [sym__statements] = STATE(5661), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1822), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [238] = { + [sym__statements] = STATE(6903), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [239] = { + [sym__statements] = STATE(7529), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [240] = { + [sym__statements] = STATE(7427), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46026,7 +51330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46044,162 +51348,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [224] = { - [sym__statements] = STATE(5662), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [241] = { + [sym__statements] = STATE(6899), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [225] = { - [sym__statements] = STATE(5848), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1725), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [242] = { + [sym__statements] = STATE(6896), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46210,7 +51514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46228,70 +51532,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [226] = { - [sym__statements] = STATE(5879), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [243] = { + [sym__statements] = STATE(6815), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2219), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46302,7 +51606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46320,438 +51624,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [227] = { - [sym__statements] = STATE(5880), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [244] = { + [sym__statements] = STATE(6816), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [228] = { - [sym__statements] = STATE(5881), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [245] = { + [sym__statements] = STATE(6819), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [229] = { - [sym__statements] = STATE(5666), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [246] = { + [sym__statements] = STATE(7527), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [230] = { - [sym__statements] = STATE(5606), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [247] = { + [sym__statements] = STATE(7300), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [231] = { - [sym__statements] = STATE(5896), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1743), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [248] = { + [sym__statements] = STATE(6821), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46762,7 +52066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46780,70 +52084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [232] = { - [sym__statements] = STATE(5669), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [249] = { + [sym__statements] = STATE(6861), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2217), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46854,7 +52158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46872,70 +52176,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [233] = { - [sym__statements] = STATE(5691), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1797), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [250] = { + [sym__statements] = STATE(7526), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46946,7 +52250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46964,254 +52268,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [234] = { - [sym__statements] = STATE(5693), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [235] = { - [sym__statements] = STATE(5694), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [251] = { + [sym__statements] = STATE(6863), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [236] = { - [sym__statements] = STATE(5909), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [252] = { + [sym__statements] = STATE(7509), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2165), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47222,7 +52434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47240,70 +52452,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [237] = { - [sym__statements] = STATE(5944), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [253] = { + [sym__statements] = STATE(6864), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [254] = { + [sym__statements] = STATE(6867), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47314,7 +52618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47332,70 +52636,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [238] = { - [sym__statements] = STATE(5730), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [255] = { + [sym__statements] = STATE(6902), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2133), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47406,7 +52710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47424,70 +52728,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [239] = { - [sym__statements] = STATE(5696), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [256] = { + [sym__statements] = STATE(6905), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [257] = { + [sym__statements] = STATE(6907), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [258] = { + [sym__statements] = STATE(6909), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47498,7 +52986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47516,70 +53004,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [240] = { - [sym__statements] = STATE(5711), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1712), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [259] = { + [sym__statements] = STATE(7508), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [260] = { + [sym__statements] = STATE(7507), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [261] = { + [sym__statements] = STATE(6924), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2207), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47590,7 +53262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47608,254 +53280,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [241] = { - [sym__statements] = STATE(5712), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [262] = { + [sym__statements] = STATE(6929), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [242] = { - [sym__statements] = STATE(5715), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [263] = { + [sym__statements] = STATE(6932), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [243] = { - [sym__statements] = STATE(5716), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [264] = { + [sym__statements] = STATE(7506), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47866,7 +53538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47884,70 +53556,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [244] = { - [sym__statements] = STATE(5735), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1590), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [265] = { + [sym__statements] = STATE(6938), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47958,7 +53630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47976,254 +53648,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [245] = { - [sym__statements] = STATE(5740), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [246] = { - [sym__statements] = STATE(5742), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [247] = { - [sym__statements] = STATE(5743), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [266] = { + [sym__statements] = STATE(7048), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2206), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48234,7 +53722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48252,70 +53740,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [248] = { - [sym__statements] = STATE(5749), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1616), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [267] = { + [sym__statements] = STATE(7050), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [268] = { + [sym__statements] = STATE(7500), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2163), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48326,7 +53906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48344,346 +53924,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [249] = { - [sym__statements] = STATE(5753), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [269] = { + [sym__statements] = STATE(7499), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [250] = { - [sym__statements] = STATE(5754), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [270] = { + [sym__statements] = STATE(7498), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [251] = { - [sym__statements] = STATE(5756), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [271] = { + [sym__statements] = STATE(7058), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [252] = { - [sym__statements] = STATE(5769), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1696), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [272] = { + [sym__statements] = STATE(7060), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48694,7 +54274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48712,254 +54292,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [253] = { - [sym__statements] = STATE(5770), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [254] = { - [sym__statements] = STATE(5771), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [255] = { - [sym__statements] = STATE(5772), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [273] = { + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48970,7 +54366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48988,70 +54384,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [256] = { - [sym__statements] = STATE(5778), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1559), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [274] = { + [sym__statements] = STATE(7492), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2159), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49062,7 +54458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49080,254 +54476,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [257] = { - [sym__statements] = STATE(5658), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [275] = { + [sym__statements] = STATE(7072), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [258] = { - [sym__statements] = STATE(5781), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [276] = { + [sym__statements] = STATE(7077), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [259] = { - [sym__statements] = STATE(5782), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [277] = { + [sym__statements] = STATE(7078), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2076), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49338,7 +54734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49356,70 +54752,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [260] = { - [sym__statements] = STATE(5794), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1733), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [278] = { + [sym__statements] = STATE(7194), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2153), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49430,7 +54826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49448,622 +54844,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [261] = { - [sym__statements] = STATE(5796), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [279] = { + [sym__statements] = STATE(7079), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [262] = { - [sym__statements] = STATE(5805), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [280] = { + [aux_sym__terminated_statement] = STATE(237), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_c_style_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4567), + [sym_if_statement] = STATE(4567), + [sym_case_statement] = STATE(4951), + [sym_function_definition] = STATE(4951), + [sym_compound_statement] = STATE(4951), + [sym_subshell] = STATE(4951), + [sym_pipeline] = STATE(5163), + [sym_list] = STATE(4951), + [sym_negated_command] = STATE(4951), + [sym_test_command] = STATE(4951), + [sym_declaration_command] = STATE(4951), + [sym_unset_command] = STATE(4951), + [sym_command] = STATE(4951), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4951), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(881), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [263] = { - [sym__statements] = STATE(5812), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [281] = { + [sym__statements] = STATE(7488), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [264] = { - [sym__statements] = STATE(5862), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1752), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [282] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [265] = { - [sym__statements] = STATE(5863), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [283] = { + [sym__statements] = STATE(7485), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [266] = { - [sym__statements] = STATE(5864), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [284] = { + [aux_sym__terminated_statement] = STATE(290), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [267] = { - [sym__statements] = STATE(5866), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [285] = { + [sym__statements] = STATE(7484), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50074,7 +55470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50092,70 +55488,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [268] = { - [sym__statements] = STATE(5490), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1834), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [286] = { + [sym__statements] = STATE(7084), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2078), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50166,7 +55562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50184,70 +55580,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [269] = { - [sym__statements] = STATE(5885), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1764), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [287] = { + [sym__statements] = STATE(7475), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2157), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50258,7 +55654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50276,438 +55672,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [270] = { - [sym__statements] = STATE(5729), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [288] = { + [sym__statements] = STATE(7085), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [271] = { - [sym__statements] = STATE(5725), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [289] = { + [sym__statements] = STATE(7216), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [272] = { - [aux_sym__terminated_statement] = STATE(185), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [290] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4993), + [sym_for_statement] = STATE(4993), + [sym_c_style_for_statement] = STATE(4993), + [sym_while_statement] = STATE(4489), + [sym_if_statement] = STATE(4489), + [sym_case_statement] = STATE(4993), + [sym_function_definition] = STATE(4993), + [sym_compound_statement] = STATE(4993), + [sym_subshell] = STATE(4993), + [sym_pipeline] = STATE(5122), + [sym_list] = STATE(4993), + [sym_negated_command] = STATE(4993), + [sym_test_command] = STATE(4993), + [sym_declaration_command] = STATE(4993), + [sym_unset_command] = STATE(4993), + [sym_command] = STATE(4993), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(4993), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [273] = { - [aux_sym__terminated_statement] = STATE(170), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [291] = { + [sym__statements] = STATE(7086), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(813), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [274] = { - [sym__statements] = STATE(5677), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [292] = { + [sym__statements] = STATE(7088), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2079), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50718,7 +56114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50736,438 +56132,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), - }, - [275] = { - [sym__statements] = STATE(5683), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [276] = { - [sym__statements] = STATE(5889), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [293] = { + [sym__statements] = STATE(7095), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [277] = { - [sym__statements] = STATE(5890), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [294] = { + [sym__statements] = STATE(7230), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [278] = { - [aux_sym__terminated_statement] = STATE(179), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [295] = { + [sym__statements] = STATE(7474), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(815), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [279] = { - [sym__statements] = STATE(5900), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [296] = { + [sym__statements] = STATE(7378), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2196), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51178,7 +56482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51196,162 +56500,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [280] = { - [aux_sym__terminated_statement] = STATE(287), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [297] = { + [sym__statements] = STATE(7399), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(817), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [281] = { - [sym__statements] = STATE(5724), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1595), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [298] = { + [sym__statements] = STATE(7096), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [299] = { + [sym__statements] = STATE(7097), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2082), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51362,7 +56758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51380,70 +56776,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [282] = { - [sym__statements] = STATE(5688), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [300] = { + [sym__statements] = STATE(7107), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [301] = { + [sym__statements] = STATE(7109), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [302] = { + [sym__statements] = STATE(7111), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2083), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51454,7 +57034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51472,254 +57052,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [283] = { - [sym__statements] = STATE(5704), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [303] = { + [sym__statements] = STATE(7118), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [284] = { - [sym__statements] = STATE(5687), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [304] = { + [sym__statements] = STATE(7119), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [285] = { - [sym__statements] = STATE(5938), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1792), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [305] = { + [sym__statements] = STATE(7125), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2084), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51730,7 +57310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51748,622 +57328,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [286] = { - [sym__statements] = STATE(5952), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), - }, - [287] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3949), - [sym_for_statement] = STATE(3949), - [sym_c_style_for_statement] = STATE(3949), - [sym_while_statement] = STATE(3704), - [sym_if_statement] = STATE(3704), - [sym_case_statement] = STATE(3949), - [sym_function_definition] = STATE(3949), - [sym_compound_statement] = STATE(3949), - [sym_subshell] = STATE(3949), - [sym_pipeline] = STATE(4174), - [sym_list] = STATE(3949), - [sym_negated_command] = STATE(3949), - [sym_test_command] = STATE(3949), - [sym_declaration_command] = STATE(3949), - [sym_unset_command] = STATE(3949), - [sym_command] = STATE(3949), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(872), - [sym_variable_assignments] = STATE(3949), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [306] = { + [sym__statements] = STATE(7130), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(819), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [288] = { - [sym__statements] = STATE(5947), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [307] = { + [sym__statements] = STATE(7132), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [289] = { - [aux_sym__terminated_statement] = STATE(102), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [308] = { + [sym__statements] = STATE(7133), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2085), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [290] = { - [sym__statements] = STATE(5686), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [309] = { + [sym__statements] = STATE(7138), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [291] = { - [sym__statements] = STATE(5960), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [310] = { + [sym__statements] = STATE(7139), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [292] = { - [sym__statements] = STATE(5705), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1842), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [311] = { + [sym__statements] = STATE(7140), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2088), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52374,7 +57862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52392,254 +57880,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [293] = { - [sym__statements] = STATE(5948), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [312] = { + [sym__statements] = STATE(7151), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [294] = { - [sym__statements] = STATE(5953), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1747), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [313] = { + [sym__statements] = STATE(7152), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [295] = { - [sym__statements] = STATE(5964), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [314] = { + [sym__statements] = STATE(7160), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2096), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52650,7 +58138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52668,70 +58156,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [296] = { - [sym__statements] = STATE(6010), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1825), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [315] = { + [sym__statements] = STATE(7166), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [316] = { + [sym__statements] = STATE(7168), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [317] = { + [sym__statements] = STATE(7169), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2097), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52742,7 +58414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52760,254 +58432,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [297] = { - [sym__statements] = STATE(6016), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [318] = { + [sym__statements] = STATE(7173), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [298] = { - [sym__statements] = STATE(6021), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [319] = { + [sym__statements] = STATE(7174), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [299] = { - [sym__statements] = STATE(5974), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [320] = { + [sym__statements] = STATE(7175), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2098), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53018,7 +58690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53036,162 +58708,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [300] = { - [sym__statements] = STATE(5639), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [321] = { + [sym__statements] = STATE(7180), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [301] = { - [sym__statements] = STATE(5783), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [322] = { + [sym__statements] = STATE(7182), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [323] = { + [sym__statements] = STATE(7186), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2099), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53202,7 +58966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53220,70 +58984,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [302] = { - [sym__statements] = STATE(6028), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [324] = { + [sym__statements] = STATE(7189), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [325] = { + [sym__statements] = STATE(7190), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [326] = { + [sym__statements] = STATE(7195), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2101), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53294,7 +59242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53312,438 +59260,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [303] = { - [sym__statements] = STATE(5647), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [327] = { + [sym__statements] = STATE(7201), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [304] = { - [sym__statements] = STATE(5785), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [328] = { + [sym__statements] = STATE(7202), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [305] = { - [sym__statements] = STATE(5975), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [329] = { + [sym__statements] = STATE(7204), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2102), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [306] = { - [sym__statements] = STATE(5786), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [330] = { + [sym__statements] = STATE(7212), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [307] = { - [sym__statements] = STATE(6031), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [331] = { + [sym__statements] = STATE(7214), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [332] = { + [sym__statements] = STATE(7217), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2104), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53754,7 +59794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53772,70 +59812,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [308] = { - [sym__statements] = STATE(5682), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1587), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [333] = { + [sym__statements] = STATE(7228), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [334] = { + [sym__statements] = STATE(7229), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [335] = { + [sym__statements] = STATE(7231), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2110), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53846,7 +60070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53864,70 +60088,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [309] = { - [sym__statements] = STATE(5524), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [336] = { + [sym__statements] = STATE(7400), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [337] = { + [sym__statements] = STATE(7249), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53938,7 +60254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53956,162 +60272,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [310] = { - [sym__statements] = STATE(5979), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [338] = { + [sym__statements] = STATE(7252), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [311] = { - [sym__statements] = STATE(5983), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1751), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [339] = { + [sym__statements] = STATE(7405), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54122,7 +60438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54140,70 +60456,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [312] = { - [sym__statements] = STATE(6105), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1870), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [340] = { + [sym__statements] = STATE(6918), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2195), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54214,7 +60530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54232,346 +60548,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [313] = { - [aux_sym__terminated_statement] = STATE(83), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4011), - [sym_for_statement] = STATE(4011), - [sym_c_style_for_statement] = STATE(4011), - [sym_while_statement] = STATE(3637), - [sym_if_statement] = STATE(3637), - [sym_case_statement] = STATE(4011), - [sym_function_definition] = STATE(4011), - [sym_compound_statement] = STATE(4011), - [sym_subshell] = STATE(4011), - [sym_pipeline] = STATE(4213), - [sym_list] = STATE(4011), - [sym_negated_command] = STATE(4011), - [sym_test_command] = STATE(4011), - [sym_declaration_command] = STATE(4011), - [sym_unset_command] = STATE(4011), - [sym_command] = STATE(4011), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(838), - [sym_variable_assignments] = STATE(4011), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [341] = { + [sym__statements] = STATE(6827), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [314] = { - [sym__statements] = STATE(6163), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [342] = { + [sym__statements] = STATE(6795), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [315] = { - [sym__statements] = STATE(6041), - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3872), - [sym_for_statement] = STATE(3872), - [sym_c_style_for_statement] = STATE(3872), - [sym_while_statement] = STATE(3611), - [sym_if_statement] = STATE(3611), - [sym_case_statement] = STATE(3872), - [sym_function_definition] = STATE(3872), - [sym_compound_statement] = STATE(3872), - [sym_subshell] = STATE(3872), - [sym_pipeline] = STATE(4076), - [sym_list] = STATE(3872), - [sym_negated_command] = STATE(3872), - [sym_test_command] = STATE(3872), - [sym_declaration_command] = STATE(3872), - [sym_unset_command] = STATE(3872), - [sym_command] = STATE(3872), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(933), - [sym_variable_assignments] = STATE(3872), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [343] = { + [sym__statements] = STATE(7253), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [316] = { - [sym__statements] = STATE(5965), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [344] = { + [sym__statements] = STATE(7254), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2112), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54582,7 +60898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54600,70 +60916,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [317] = { - [sym__statements] = STATE(5858), - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3812), - [sym_for_statement] = STATE(3812), - [sym_c_style_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3612), - [sym_if_statement] = STATE(3612), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_compound_statement] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(4101), - [sym_list] = STATE(3812), - [sym_negated_command] = STATE(3812), - [sym_test_command] = STATE(3812), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(792), - [sym_variable_assignments] = STATE(3812), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1865), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(327), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [345] = { + [sym__statements] = STATE(7264), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54674,7 +60990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54692,888 +61008,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [318] = { - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3922), - [sym_for_statement] = STATE(3922), - [sym_c_style_for_statement] = STATE(3922), - [sym_while_statement] = STATE(3640), - [sym_if_statement] = STATE(3640), - [sym_case_statement] = STATE(3922), - [sym_function_definition] = STATE(3922), - [sym_compound_statement] = STATE(3922), - [sym_subshell] = STATE(3922), - [sym_pipeline] = STATE(4170), - [sym_list] = STATE(3922), - [sym_negated_command] = STATE(3922), - [sym_test_command] = STATE(3922), - [sym_declaration_command] = STATE(3922), - [sym_unset_command] = STATE(3922), - [sym_command] = STATE(3922), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(921), - [sym_variable_assignments] = STATE(3922), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(825), - [anon_sym_for] = ACTIONS(828), - [anon_sym_select] = ACTIONS(831), - [anon_sym_LPAREN_LPAREN] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_while] = ACTIONS(846), - [anon_sym_until] = ACTIONS(846), - [anon_sym_if] = ACTIONS(849), - [anon_sym_case] = ACTIONS(852), - [anon_sym_function] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LBRACK_LBRACK] = ACTIONS(867), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_typeset] = ACTIONS(870), - [anon_sym_export] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_local] = ACTIONS(870), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_unsetenv] = ACTIONS(873), - [anon_sym_AMP_GT] = ACTIONS(837), - [anon_sym_AMP_GT_GT] = ACTIONS(840), - [anon_sym_LT_AMP] = ACTIONS(837), - [anon_sym_GT_AMP] = ACTIONS(837), - [anon_sym_GT_PIPE] = ACTIONS(840), - [anon_sym_LT_AMP_DASH] = ACTIONS(876), - [anon_sym_GT_AMP_DASH] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(879), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(888), - [sym__special_character] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(894), - [sym_raw_string] = ACTIONS(897), - [sym_ansi_c_string] = ACTIONS(897), - [aux_sym_number_token1] = ACTIONS(900), - [aux_sym_number_token2] = ACTIONS(903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(906), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(915), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), + [346] = { + [sym__statements] = STATE(7266), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(921), - [sym_variable_name] = ACTIONS(924), - [sym_test_operator] = ACTIONS(927), - [sym__brace_start] = ACTIONS(930), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [319] = { - [sym__statement_not_pipeline] = STATE(5226), - [sym_redirected_statement] = STATE(3817), - [sym_for_statement] = STATE(3817), - [sym_c_style_for_statement] = STATE(3817), - [sym_while_statement] = STATE(3599), - [sym_if_statement] = STATE(3599), - [sym_case_statement] = STATE(3817), - [sym_function_definition] = STATE(3817), - [sym_compound_statement] = STATE(3817), - [sym_subshell] = STATE(3817), - [sym_pipeline] = STATE(4097), - [sym_list] = STATE(3817), - [sym_negated_command] = STATE(3817), - [sym_test_command] = STATE(3817), - [sym_declaration_command] = STATE(3817), - [sym_unset_command] = STATE(3817), - [sym_command] = STATE(3817), - [sym_command_name] = STATE(433), - [sym_variable_assignment] = STATE(789), - [sym_variable_assignments] = STATE(3817), - [sym_subscript] = STATE(5469), - [sym_file_redirect] = STATE(1637), - [sym_herestring_redirect] = STATE(1650), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(4046), - [aux_sym_command_repeat1] = STATE(803), - [aux_sym__literal_repeat1] = STATE(985), - [sym_word] = ACTIONS(7), + [347] = { + [sym__statements] = STATE(7267), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [320] = { - [aux_sym__terminated_statement] = STATE(95), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [348] = { + [sym__statements] = STATE(7270), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [321] = { - [aux_sym__terminated_statement] = STATE(42), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [349] = { + [sym__statements] = STATE(7279), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [322] = { - [aux_sym__terminated_statement] = STATE(65), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [350] = { + [sym__statements] = STATE(6804), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [323] = { - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3875), - [sym_for_statement] = STATE(3875), - [sym_c_style_for_statement] = STATE(3875), - [sym_while_statement] = STATE(3593), - [sym_if_statement] = STATE(3593), - [sym_case_statement] = STATE(3875), - [sym_function_definition] = STATE(3875), - [sym_compound_statement] = STATE(3875), - [sym_subshell] = STATE(3875), - [sym_pipeline] = STATE(4075), - [sym_list] = STATE(3875), - [sym_negated_command] = STATE(3875), - [sym_test_command] = STATE(3875), - [sym_declaration_command] = STATE(3875), - [sym_unset_command] = STATE(3875), - [sym_command] = STATE(3875), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(881), - [sym_variable_assignments] = STATE(3875), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [351] = { + [sym__statements] = STATE(7522), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2194), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [324] = { - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3667), - [sym_for_statement] = STATE(3667), - [sym_c_style_for_statement] = STATE(3667), - [sym_while_statement] = STATE(3531), - [sym_if_statement] = STATE(3531), - [sym_case_statement] = STATE(3667), - [sym_function_definition] = STATE(3667), - [sym_compound_statement] = STATE(3667), - [sym_subshell] = STATE(3667), - [sym_pipeline] = STATE(3980), - [sym_list] = STATE(3667), - [sym_negated_command] = STATE(3667), - [sym_test_command] = STATE(3667), - [sym_declaration_command] = STATE(3667), - [sym_unset_command] = STATE(3667), - [sym_command] = STATE(3667), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(689), - [sym_variable_assignments] = STATE(3667), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [352] = { + [sym__statements] = STATE(7280), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [325] = { - [aux_sym__terminated_statement] = STATE(173), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [353] = { + [sym__statements] = STATE(7473), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [326] = { - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3577), - [sym_for_statement] = STATE(3577), - [sym_c_style_for_statement] = STATE(3577), - [sym_while_statement] = STATE(3527), - [sym_if_statement] = STATE(3527), - [sym_case_statement] = STATE(3577), - [sym_function_definition] = STATE(3577), - [sym_compound_statement] = STATE(3577), - [sym_subshell] = STATE(3577), - [sym_pipeline] = STATE(3813), - [sym_list] = STATE(3577), - [sym_negated_command] = STATE(3577), - [sym_test_command] = STATE(3577), - [sym_declaration_command] = STATE(3577), - [sym_unset_command] = STATE(3577), - [sym_command] = STATE(3577), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(661), - [sym_variable_assignments] = STATE(3577), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [354] = { + [sym__statements] = STATE(7467), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [327] = { - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3810), - [sym_for_statement] = STATE(3810), - [sym_c_style_for_statement] = STATE(3810), - [sym_while_statement] = STATE(3589), - [sym_if_statement] = STATE(3589), - [sym_case_statement] = STATE(3810), - [sym_function_definition] = STATE(3810), - [sym_compound_statement] = STATE(3810), - [sym_subshell] = STATE(3810), - [sym_pipeline] = STATE(4095), - [sym_list] = STATE(3810), - [sym_negated_command] = STATE(3810), - [sym_test_command] = STATE(3810), - [sym_declaration_command] = STATE(3810), - [sym_unset_command] = STATE(3810), - [sym_command] = STATE(3810), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(815), - [sym_variable_assignments] = STATE(3810), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [355] = { + [sym__statements] = STATE(7462), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -55584,7 +61910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -55602,1691 +61928,1726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [328] = { - [aux_sym__terminated_statement] = STATE(94), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [356] = { + [sym__statements] = STATE(7472), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [329] = { - [aux_sym__terminated_statement] = STATE(51), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [357] = { + [sym__statements] = STATE(7471), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [330] = { - [aux_sym__terminated_statement] = STATE(46), - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(4043), - [sym_for_statement] = STATE(4043), - [sym_c_style_for_statement] = STATE(4043), - [sym_while_statement] = STATE(3714), - [sym_if_statement] = STATE(3714), - [sym_case_statement] = STATE(4043), - [sym_function_definition] = STATE(4043), - [sym_compound_statement] = STATE(4043), - [sym_subshell] = STATE(4043), - [sym_pipeline] = STATE(4206), - [sym_list] = STATE(4043), - [sym_negated_command] = STATE(4043), - [sym_test_command] = STATE(4043), - [sym_declaration_command] = STATE(4043), - [sym_unset_command] = STATE(4043), - [sym_command] = STATE(4043), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(821), - [sym_variable_assignments] = STATE(4043), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [358] = { + [sym__statements] = STATE(7282), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [331] = { - [sym__statement_not_pipeline] = STATE(5230), - [sym_redirected_statement] = STATE(3565), - [sym_for_statement] = STATE(3565), - [sym_c_style_for_statement] = STATE(3565), - [sym_while_statement] = STATE(3523), - [sym_if_statement] = STATE(3523), - [sym_case_statement] = STATE(3565), - [sym_function_definition] = STATE(3565), - [sym_compound_statement] = STATE(3565), - [sym_subshell] = STATE(3565), - [sym_pipeline] = STATE(3564), - [sym_list] = STATE(3565), - [sym_negated_command] = STATE(3565), - [sym_test_command] = STATE(3565), - [sym_declaration_command] = STATE(3565), - [sym_unset_command] = STATE(3565), - [sym_command] = STATE(3565), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(660), - [sym_variable_assignments] = STATE(3565), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [359] = { + [sym__statements] = STATE(7379), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2193), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [332] = { - [sym__statement_not_pipeline] = STATE(5294), - [sym_redirected_statement] = STATE(4227), - [sym_for_statement] = STATE(4227), - [sym_c_style_for_statement] = STATE(4227), - [sym_while_statement] = STATE(4079), - [sym_if_statement] = STATE(4079), - [sym_case_statement] = STATE(4227), - [sym_function_definition] = STATE(4227), - [sym_compound_statement] = STATE(4227), - [sym_subshell] = STATE(4227), - [sym_pipeline] = STATE(4400), - [sym_list] = STATE(4227), - [sym_negated_command] = STATE(4227), - [sym_test_command] = STATE(4227), - [sym_declaration_command] = STATE(4227), - [sym_unset_command] = STATE(4227), - [sym_command] = STATE(4227), - [sym_command_name] = STATE(502), - [sym_variable_assignment] = STATE(1373), - [sym_variable_assignments] = STATE(4227), - [sym_subscript] = STATE(5430), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(1225), - [sym_brace_expression] = STATE(1225), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(1225), - [sym_translated_string] = STATE(1225), - [sym_number] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), - [aux_sym_redirected_statement_repeat2] = STATE(4377), - [aux_sym_command_repeat1] = STATE(816), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(933), + [360] = { + [sym__statements] = STATE(7283), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2141), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(939), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(943), - [anon_sym_typeset] = ACTIONS(943), - [anon_sym_export] = ACTIONS(943), - [anon_sym_readonly] = ACTIONS(943), - [anon_sym_local] = ACTIONS(943), - [anon_sym_unset] = ACTIONS(945), - [anon_sym_unsetenv] = ACTIONS(945), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(937), - [anon_sym_LT_AMP] = ACTIONS(935), - [anon_sym_GT_AMP] = ACTIONS(935), - [anon_sym_GT_PIPE] = ACTIONS(937), - [anon_sym_LT_AMP_DASH] = ACTIONS(947), - [anon_sym_GT_AMP_DASH] = ACTIONS(947), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(953), - [sym_ansi_c_string] = ACTIONS(953), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(955), - [sym_variable_name] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [333] = { - [sym__statement_not_pipeline] = STATE(5273), - [sym_redirected_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_c_style_for_statement] = STATE(3700), - [sym_while_statement] = STATE(3539), - [sym_if_statement] = STATE(3539), - [sym_case_statement] = STATE(3700), - [sym_function_definition] = STATE(3700), - [sym_compound_statement] = STATE(3700), - [sym_subshell] = STATE(3700), - [sym_pipeline] = STATE(3698), - [sym_list] = STATE(3700), - [sym_negated_command] = STATE(3700), - [sym_test_command] = STATE(3700), - [sym_declaration_command] = STATE(3700), - [sym_unset_command] = STATE(3700), - [sym_command] = STATE(3700), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(713), - [sym_variable_assignments] = STATE(3700), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [361] = { + [sym__statements] = STATE(7288), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [334] = { - [sym__statement_not_pipeline] = STATE(3881), - [sym_redirected_statement] = STATE(3881), - [sym_for_statement] = STATE(3881), - [sym_c_style_for_statement] = STATE(3881), - [sym_while_statement] = STATE(4107), - [sym_if_statement] = STATE(4107), - [sym_case_statement] = STATE(3881), - [sym_function_definition] = STATE(3881), - [sym_compound_statement] = STATE(3881), - [sym_subshell] = STATE(3881), - [sym_pipeline] = STATE(4436), - [sym_list] = STATE(3881), - [sym_negated_command] = STATE(3881), - [sym_test_command] = STATE(3881), - [sym_declaration_command] = STATE(3881), - [sym_unset_command] = STATE(3881), - [sym_command] = STATE(3881), - [sym_command_name] = STATE(502), - [sym_variable_assignment] = STATE(1216), - [sym_variable_assignments] = STATE(3881), - [sym_subscript] = STATE(5430), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(1225), - [sym_brace_expression] = STATE(1225), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(1225), - [sym_translated_string] = STATE(1225), - [sym_number] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), - [aux_sym_redirected_statement_repeat2] = STATE(4377), - [aux_sym_command_repeat1] = STATE(816), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(933), + [362] = { + [sym__statements] = STATE(7289), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(939), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(943), - [anon_sym_typeset] = ACTIONS(943), - [anon_sym_export] = ACTIONS(943), - [anon_sym_readonly] = ACTIONS(943), - [anon_sym_local] = ACTIONS(943), - [anon_sym_unset] = ACTIONS(945), - [anon_sym_unsetenv] = ACTIONS(945), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(937), - [anon_sym_LT_AMP] = ACTIONS(935), - [anon_sym_GT_AMP] = ACTIONS(935), - [anon_sym_GT_PIPE] = ACTIONS(937), - [anon_sym_LT_AMP_DASH] = ACTIONS(947), - [anon_sym_GT_AMP_DASH] = ACTIONS(947), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(953), - [sym_ansi_c_string] = ACTIONS(953), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(955), - [sym_variable_name] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [335] = { - [sym__statement_not_pipeline] = STATE(5294), - [sym_redirected_statement] = STATE(4224), - [sym_for_statement] = STATE(4224), - [sym_c_style_for_statement] = STATE(4224), - [sym_while_statement] = STATE(4105), - [sym_if_statement] = STATE(4105), - [sym_case_statement] = STATE(4224), - [sym_function_definition] = STATE(4224), - [sym_compound_statement] = STATE(4224), - [sym_subshell] = STATE(4224), - [sym_pipeline] = STATE(4222), - [sym_list] = STATE(4224), - [sym_negated_command] = STATE(4224), - [sym_test_command] = STATE(4224), - [sym_declaration_command] = STATE(4224), - [sym_unset_command] = STATE(4224), - [sym_command] = STATE(4224), - [sym_command_name] = STATE(502), - [sym_variable_assignment] = STATE(1236), - [sym_variable_assignments] = STATE(4224), - [sym_subscript] = STATE(5430), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(1225), - [sym_brace_expression] = STATE(1225), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(1225), - [sym_translated_string] = STATE(1225), - [sym_number] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), - [aux_sym_redirected_statement_repeat2] = STATE(4377), - [aux_sym_command_repeat1] = STATE(816), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(933), + [363] = { + [sym__statements] = STATE(7227), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(939), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(943), - [anon_sym_typeset] = ACTIONS(943), - [anon_sym_export] = ACTIONS(943), - [anon_sym_readonly] = ACTIONS(943), - [anon_sym_local] = ACTIONS(943), - [anon_sym_unset] = ACTIONS(945), - [anon_sym_unsetenv] = ACTIONS(945), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(937), - [anon_sym_LT_AMP] = ACTIONS(935), - [anon_sym_GT_AMP] = ACTIONS(935), - [anon_sym_GT_PIPE] = ACTIONS(937), - [anon_sym_LT_AMP_DASH] = ACTIONS(947), - [anon_sym_GT_AMP_DASH] = ACTIONS(947), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(953), - [sym_ansi_c_string] = ACTIONS(953), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(955), - [sym_variable_name] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [336] = { - [sym__statement_not_pipeline] = STATE(5323), - [sym_redirected_statement] = STATE(3896), - [sym_for_statement] = STATE(3896), - [sym_c_style_for_statement] = STATE(3896), - [sym_while_statement] = STATE(3554), - [sym_if_statement] = STATE(3554), - [sym_case_statement] = STATE(3896), - [sym_function_definition] = STATE(3896), - [sym_compound_statement] = STATE(3896), - [sym_subshell] = STATE(3896), - [sym_pipeline] = STATE(3905), - [sym_list] = STATE(3896), - [sym_negated_command] = STATE(3896), - [sym_test_command] = STATE(3896), - [sym_declaration_command] = STATE(3896), - [sym_unset_command] = STATE(3896), - [sym_command] = STATE(3896), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(882), - [sym_variable_assignments] = STATE(3896), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [364] = { + [sym__statements] = STATE(7290), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [337] = { - [sym__statement_not_pipeline] = STATE(5226), - [sym_redirected_statement] = STATE(3887), - [sym_for_statement] = STATE(3887), - [sym_c_style_for_statement] = STATE(3887), - [sym_while_statement] = STATE(3634), - [sym_if_statement] = STATE(3634), - [sym_case_statement] = STATE(3887), - [sym_function_definition] = STATE(3887), - [sym_compound_statement] = STATE(3887), - [sym_subshell] = STATE(3887), - [sym_pipeline] = STATE(3897), - [sym_list] = STATE(3887), - [sym_negated_command] = STATE(3887), - [sym_test_command] = STATE(3887), - [sym_declaration_command] = STATE(3887), - [sym_unset_command] = STATE(3887), - [sym_command] = STATE(3887), - [sym_command_name] = STATE(433), - [sym_variable_assignment] = STATE(776), - [sym_variable_assignments] = STATE(3887), - [sym_subscript] = STATE(5469), - [sym_file_redirect] = STATE(1637), - [sym_herestring_redirect] = STATE(1650), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym_redirected_statement_repeat2] = STATE(4046), - [aux_sym_command_repeat1] = STATE(803), - [aux_sym__literal_repeat1] = STATE(985), - [sym_word] = ACTIONS(7), + [365] = { + [sym__statements] = STATE(7335), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [338] = { - [sym__statement_not_pipeline] = STATE(3881), - [sym_redirected_statement] = STATE(3881), - [sym_for_statement] = STATE(3881), - [sym_c_style_for_statement] = STATE(3881), - [sym_while_statement] = STATE(3583), - [sym_if_statement] = STATE(3583), - [sym_case_statement] = STATE(3881), - [sym_function_definition] = STATE(3881), - [sym_compound_statement] = STATE(3881), - [sym_subshell] = STATE(3881), - [sym_pipeline] = STATE(4441), - [sym_list] = STATE(3881), - [sym_negated_command] = STATE(3881), - [sym_test_command] = STATE(3881), - [sym_declaration_command] = STATE(3881), - [sym_unset_command] = STATE(3881), - [sym_command] = STATE(3881), - [sym_command_name] = STATE(433), - [sym_variable_assignment] = STATE(744), - [sym_variable_assignments] = STATE(3881), - [sym_subscript] = STATE(5469), - [sym_file_redirect] = STATE(1637), - [sym_herestring_redirect] = STATE(1650), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym_redirected_statement_repeat2] = STATE(4046), - [aux_sym_command_repeat1] = STATE(803), - [aux_sym__literal_repeat1] = STATE(985), - [sym_word] = ACTIONS(7), + [366] = { + [sym__statements] = STATE(7333), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [339] = { - [sym__statement_not_pipeline] = STATE(3915), - [sym_redirected_statement] = STATE(3915), - [sym_for_statement] = STATE(3915), - [sym_c_style_for_statement] = STATE(3915), - [sym_while_statement] = STATE(3538), - [sym_if_statement] = STATE(3538), - [sym_case_statement] = STATE(3915), - [sym_function_definition] = STATE(3915), - [sym_compound_statement] = STATE(3915), - [sym_subshell] = STATE(3915), - [sym_pipeline] = STATE(4435), - [sym_list] = STATE(3915), - [sym_negated_command] = STATE(3915), - [sym_test_command] = STATE(3915), - [sym_declaration_command] = STATE(3915), - [sym_unset_command] = STATE(3915), - [sym_command] = STATE(3915), - [sym_command_name] = STATE(428), - [sym_variable_assignment] = STATE(728), - [sym_variable_assignments] = STATE(3915), - [sym_subscript] = STATE(5383), - [sym_file_redirect] = STATE(1461), - [sym_herestring_redirect] = STATE(1442), - [sym_arithmetic_expansion] = STATE(732), - [sym_brace_expression] = STATE(732), - [sym_concatenation] = STATE(945), - [sym_string] = STATE(732), - [sym_translated_string] = STATE(732), - [sym_number] = STATE(732), - [sym_simple_expansion] = STATE(732), - [sym_expansion] = STATE(732), - [sym_command_substitution] = STATE(732), - [sym_process_substitution] = STATE(732), - [aux_sym_redirected_statement_repeat2] = STATE(3823), - [aux_sym_command_repeat1] = STATE(759), - [aux_sym__literal_repeat1] = STATE(827), - [sym_word] = ACTIONS(651), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(655), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(665), - [anon_sym_typeset] = ACTIONS(665), - [anon_sym_export] = ACTIONS(665), - [anon_sym_readonly] = ACTIONS(665), - [anon_sym_local] = ACTIONS(665), - [anon_sym_unset] = ACTIONS(667), - [anon_sym_unsetenv] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(655), - [anon_sym_AMP_GT_GT] = ACTIONS(657), - [anon_sym_LT_AMP] = ACTIONS(655), - [anon_sym_GT_AMP] = ACTIONS(655), - [anon_sym_GT_PIPE] = ACTIONS(657), - [anon_sym_LT_AMP_DASH] = ACTIONS(669), - [anon_sym_GT_AMP_DASH] = ACTIONS(669), - [anon_sym_LT_LT_LT] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [sym__special_character] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(683), - [sym_ansi_c_string] = ACTIONS(683), - [aux_sym_number_token1] = ACTIONS(685), - [aux_sym_number_token2] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [367] = { + [sym__statements] = STATE(7295), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2136), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(699), - [sym_variable_name] = ACTIONS(701), - [sym_test_operator] = ACTIONS(703), - [sym__brace_start] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [340] = { - [sym__statement_not_pipeline] = STATE(3881), - [sym_redirected_statement] = STATE(3881), - [sym_for_statement] = STATE(3881), - [sym_c_style_for_statement] = STATE(3881), - [sym_while_statement] = STATE(3561), - [sym_if_statement] = STATE(3561), - [sym_case_statement] = STATE(3881), - [sym_function_definition] = STATE(3881), - [sym_compound_statement] = STATE(3881), - [sym_subshell] = STATE(3881), - [sym_pipeline] = STATE(4432), - [sym_list] = STATE(3881), - [sym_negated_command] = STATE(3881), - [sym_test_command] = STATE(3881), - [sym_declaration_command] = STATE(3881), - [sym_unset_command] = STATE(3881), - [sym_command] = STATE(3881), - [sym_command_name] = STATE(439), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(3881), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1890), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(3954), - [aux_sym_command_repeat1] = STATE(814), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(767), + [368] = { + [sym__statements] = STATE(7310), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(769), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(773), - [anon_sym_typeset] = ACTIONS(773), - [anon_sym_export] = ACTIONS(773), - [anon_sym_readonly] = ACTIONS(773), - [anon_sym_local] = ACTIONS(773), - [anon_sym_unset] = ACTIONS(775), - [anon_sym_unsetenv] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [341] = { - [sym__statement_not_pipeline] = STATE(4447), - [sym_redirected_statement] = STATE(4447), - [sym_for_statement] = STATE(4447), - [sym_c_style_for_statement] = STATE(4447), - [sym_while_statement] = STATE(4113), - [sym_if_statement] = STATE(4113), - [sym_case_statement] = STATE(4447), - [sym_function_definition] = STATE(4447), - [sym_compound_statement] = STATE(4447), - [sym_subshell] = STATE(4447), - [sym_pipeline] = STATE(4442), - [sym_list] = STATE(4447), - [sym_negated_command] = STATE(4447), - [sym_test_command] = STATE(4447), - [sym_declaration_command] = STATE(4447), - [sym_unset_command] = STATE(4447), - [sym_command] = STATE(4447), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(1536), - [sym_variable_assignments] = STATE(4447), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(2352), - [sym_herestring_redirect] = STATE(2428), - [sym_arithmetic_expansion] = STATE(1487), - [sym_brace_expression] = STATE(1487), - [sym_concatenation] = STATE(1945), - [sym_string] = STATE(1487), - [sym_translated_string] = STATE(1487), - [sym_number] = STATE(1487), - [sym_simple_expansion] = STATE(1487), - [sym_expansion] = STATE(1487), - [sym_command_substitution] = STATE(1487), - [sym_process_substitution] = STATE(1487), - [aux_sym_redirected_statement_repeat2] = STATE(4417), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(1928), - [sym_word] = ACTIONS(961), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(965), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(965), - [anon_sym_GT_AMP] = ACTIONS(965), - [anon_sym_GT_PIPE] = ACTIONS(967), - [anon_sym_LT_AMP_DASH] = ACTIONS(973), - [anon_sym_GT_AMP_DASH] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(981), - [sym__special_character] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [sym_raw_string] = ACTIONS(987), - [sym_ansi_c_string] = ACTIONS(987), - [aux_sym_number_token1] = ACTIONS(989), - [aux_sym_number_token2] = ACTIONS(991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(999), - [anon_sym_LT_LPAREN] = ACTIONS(1001), - [anon_sym_GT_LPAREN] = ACTIONS(1001), + [369] = { + [sym__statements] = STATE(7311), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1003), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(1005), - [sym__brace_start] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [342] = { - [sym__statement_not_pipeline] = STATE(5354), - [sym_redirected_statement] = STATE(4372), - [sym_for_statement] = STATE(4372), - [sym_c_style_for_statement] = STATE(4372), - [sym_while_statement] = STATE(4194), - [sym_if_statement] = STATE(4194), - [sym_case_statement] = STATE(4372), - [sym_function_definition] = STATE(4372), - [sym_compound_statement] = STATE(4372), - [sym_subshell] = STATE(4372), - [sym_pipeline] = STATE(4367), - [sym_list] = STATE(4372), - [sym_negated_command] = STATE(4372), - [sym_test_command] = STATE(4372), - [sym_declaration_command] = STATE(4372), - [sym_unset_command] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(1423), - [sym_variable_assignments] = STATE(4372), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(2352), - [sym_herestring_redirect] = STATE(2428), - [sym_arithmetic_expansion] = STATE(1487), - [sym_brace_expression] = STATE(1487), - [sym_concatenation] = STATE(1945), - [sym_string] = STATE(1487), - [sym_translated_string] = STATE(1487), - [sym_number] = STATE(1487), - [sym_simple_expansion] = STATE(1487), - [sym_expansion] = STATE(1487), - [sym_command_substitution] = STATE(1487), - [sym_process_substitution] = STATE(1487), - [aux_sym_redirected_statement_repeat2] = STATE(4417), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(1928), - [sym_word] = ACTIONS(961), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(965), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(965), - [anon_sym_GT_AMP] = ACTIONS(965), - [anon_sym_GT_PIPE] = ACTIONS(967), - [anon_sym_LT_AMP_DASH] = ACTIONS(973), - [anon_sym_GT_AMP_DASH] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(981), - [sym__special_character] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [sym_raw_string] = ACTIONS(987), - [sym_ansi_c_string] = ACTIONS(987), - [aux_sym_number_token1] = ACTIONS(989), - [aux_sym_number_token2] = ACTIONS(991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(999), - [anon_sym_LT_LPAREN] = ACTIONS(1001), - [anon_sym_GT_LPAREN] = ACTIONS(1001), + [370] = { + [sym__statements] = STATE(7314), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1003), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(1005), - [sym__brace_start] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [343] = { - [sym__statement_not_pipeline] = STATE(3915), - [sym_redirected_statement] = STATE(3915), - [sym_for_statement] = STATE(3915), - [sym_c_style_for_statement] = STATE(3915), - [sym_while_statement] = STATE(3526), - [sym_if_statement] = STATE(3526), - [sym_case_statement] = STATE(3915), - [sym_function_definition] = STATE(3915), - [sym_compound_statement] = STATE(3915), - [sym_subshell] = STATE(3915), - [sym_pipeline] = STATE(4434), - [sym_list] = STATE(3915), - [sym_negated_command] = STATE(3915), - [sym_test_command] = STATE(3915), - [sym_declaration_command] = STATE(3915), - [sym_unset_command] = STATE(3915), - [sym_command] = STATE(3915), - [sym_command_name] = STATE(426), - [sym_variable_assignment] = STATE(679), - [sym_variable_assignments] = STATE(3915), - [sym_subscript] = STATE(5418), - [sym_file_redirect] = STATE(1344), - [sym_herestring_redirect] = STATE(1384), - [sym_arithmetic_expansion] = STATE(674), - [sym_brace_expression] = STATE(674), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(674), - [sym_translated_string] = STATE(674), - [sym_number] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [aux_sym_redirected_statement_repeat2] = STATE(3730), - [aux_sym_command_repeat1] = STATE(758), - [aux_sym__literal_repeat1] = STATE(757), - [sym_word] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_select] = ACTIONS(393), - [anon_sym_LPAREN_LPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_until] = ACTIONS(403), - [anon_sym_if] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(425), - [anon_sym_declare] = ACTIONS(427), - [anon_sym_typeset] = ACTIONS(427), - [anon_sym_export] = ACTIONS(427), - [anon_sym_readonly] = ACTIONS(427), - [anon_sym_local] = ACTIONS(427), - [anon_sym_unset] = ACTIONS(429), - [anon_sym_unsetenv] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_GT_PIPE] = ACTIONS(399), - [anon_sym_LT_AMP_DASH] = ACTIONS(431), - [anon_sym_GT_AMP_DASH] = ACTIONS(431), - [anon_sym_LT_LT_LT] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [sym_ansi_c_string] = ACTIONS(445), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(455), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(459), - [anon_sym_GT_LPAREN] = ACTIONS(459), + [371] = { + [sym__statements] = STATE(7316), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2140), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(461), - [sym_variable_name] = ACTIONS(463), - [sym_test_operator] = ACTIONS(465), - [sym__brace_start] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [344] = { - [sym__statement_not_pipeline] = STATE(3881), - [sym_redirected_statement] = STATE(3881), - [sym_for_statement] = STATE(3881), - [sym_c_style_for_statement] = STATE(3881), - [sym_while_statement] = STATE(3665), - [sym_if_statement] = STATE(3665), - [sym_case_statement] = STATE(3881), - [sym_function_definition] = STATE(3881), - [sym_compound_statement] = STATE(3881), - [sym_subshell] = STATE(3881), - [sym_pipeline] = STATE(4480), - [sym_list] = STATE(3881), - [sym_negated_command] = STATE(3881), - [sym_test_command] = STATE(3881), - [sym_declaration_command] = STATE(3881), - [sym_unset_command] = STATE(3881), - [sym_command] = STATE(3881), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(900), - [sym_variable_assignments] = STATE(3881), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [372] = { + [sym__statements] = STATE(7325), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [345] = { - [sym__statement_not_pipeline] = STATE(5359), - [sym_redirected_statement] = STATE(3984), - [sym_for_statement] = STATE(3984), - [sym_c_style_for_statement] = STATE(3984), - [sym_while_statement] = STATE(3666), - [sym_if_statement] = STATE(3666), - [sym_case_statement] = STATE(3984), - [sym_function_definition] = STATE(3984), - [sym_compound_statement] = STATE(3984), - [sym_subshell] = STATE(3984), - [sym_pipeline] = STATE(3985), - [sym_list] = STATE(3984), - [sym_negated_command] = STATE(3984), - [sym_test_command] = STATE(3984), - [sym_declaration_command] = STATE(3984), - [sym_unset_command] = STATE(3984), - [sym_command] = STATE(3984), - [sym_command_name] = STATE(437), - [sym_variable_assignment] = STATE(908), - [sym_variable_assignments] = STATE(3984), - [sym_subscript] = STATE(5438), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(925), - [sym_brace_expression] = STATE(925), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(925), - [sym_translated_string] = STATE(925), - [sym_number] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [aux_sym_redirected_statement_repeat2] = STATE(4087), - [aux_sym_command_repeat1] = STATE(788), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(276), + [373] = { + [sym__statements] = STATE(7327), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(290), + [anon_sym_function] = ACTIONS(801), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(294), - [anon_sym_typeset] = ACTIONS(294), - [anon_sym_export] = ACTIONS(294), - [anon_sym_readonly] = ACTIONS(294), - [anon_sym_local] = ACTIONS(294), - [anon_sym_unset] = ACTIONS(296), - [anon_sym_unsetenv] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(280), - [anon_sym_AMP_GT_GT] = ACTIONS(282), - [anon_sym_LT_AMP] = ACTIONS(280), - [anon_sym_GT_AMP] = ACTIONS(280), - [anon_sym_GT_PIPE] = ACTIONS(282), - [anon_sym_LT_AMP_DASH] = ACTIONS(298), - [anon_sym_GT_AMP_DASH] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(312), - [sym_ansi_c_string] = ACTIONS(312), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym_test_operator] = ACTIONS(332), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [346] = { - [sym__statement_not_pipeline] = STATE(5314), - [sym_redirected_statement] = STATE(3745), - [sym_for_statement] = STATE(3745), - [sym_c_style_for_statement] = STATE(3745), - [sym_while_statement] = STATE(3557), - [sym_if_statement] = STATE(3557), - [sym_case_statement] = STATE(3745), - [sym_function_definition] = STATE(3745), - [sym_compound_statement] = STATE(3745), - [sym_subshell] = STATE(3745), - [sym_pipeline] = STATE(3752), - [sym_list] = STATE(3745), - [sym_negated_command] = STATE(3745), - [sym_test_command] = STATE(3745), - [sym_declaration_command] = STATE(3745), - [sym_unset_command] = STATE(3745), - [sym_command] = STATE(3745), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(3745), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [374] = { + [sym__statements] = STATE(7306), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2189), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57297,7 +63658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57315,68 +63676,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [347] = { - [sym__statement_not_pipeline] = STATE(3881), - [sym_redirected_statement] = STATE(3881), - [sym_for_statement] = STATE(3881), - [sym_c_style_for_statement] = STATE(3881), - [sym_while_statement] = STATE(3591), - [sym_if_statement] = STATE(3591), - [sym_case_statement] = STATE(3881), - [sym_function_definition] = STATE(3881), - [sym_compound_statement] = STATE(3881), - [sym_subshell] = STATE(3881), - [sym_pipeline] = STATE(4477), - [sym_list] = STATE(3881), - [sym_negated_command] = STATE(3881), - [sym_test_command] = STATE(3881), - [sym_declaration_command] = STATE(3881), - [sym_unset_command] = STATE(3881), - [sym_command] = STATE(3881), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(802), - [sym_variable_assignments] = STATE(3881), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(782), - [sym_brace_expression] = STATE(782), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(782), - [sym_translated_string] = STATE(782), - [sym_number] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_command_substitution] = STATE(782), - [sym_process_substitution] = STATE(782), - [aux_sym_redirected_statement_repeat2] = STATE(4007), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(735), + [375] = { + [sym__statements] = STATE(7183), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57387,7 +63750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57405,6067 +63768,12830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(743), - [sym_ansi_c_string] = ACTIONS(743), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(745), - [sym__brace_start] = ACTIONS(334), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [348] = { - [sym__statement_not_pipeline] = STATE(5294), - [sym_redirected_statement] = STATE(4246), - [sym_for_statement] = STATE(4246), - [sym_c_style_for_statement] = STATE(4246), - [sym_while_statement] = STATE(4086), - [sym_if_statement] = STATE(4086), - [sym_case_statement] = STATE(4246), - [sym_function_definition] = STATE(4246), - [sym_compound_statement] = STATE(4246), - [sym_subshell] = STATE(4246), - [sym_pipeline] = STATE(4409), - [sym_list] = STATE(4246), - [sym_negated_command] = STATE(4246), - [sym_test_command] = STATE(4246), - [sym_declaration_command] = STATE(4246), - [sym_unset_command] = STATE(4246), - [sym_command] = STATE(4246), - [sym_command_name] = STATE(502), - [sym_variable_assignment] = STATE(1372), - [sym_variable_assignments] = STATE(4246), - [sym_subscript] = STATE(5430), - [sym_file_redirect] = STATE(1603), - [sym_herestring_redirect] = STATE(1697), - [sym_arithmetic_expansion] = STATE(1225), - [sym_brace_expression] = STATE(1225), - [sym_concatenation] = STATE(1176), - [sym_string] = STATE(1225), - [sym_translated_string] = STATE(1225), - [sym_number] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), - [aux_sym_redirected_statement_repeat2] = STATE(4377), - [aux_sym_command_repeat1] = STATE(816), - [aux_sym__literal_repeat1] = STATE(948), - [sym_word] = ACTIONS(933), + [376] = { + [sym__statements] = STATE(7329), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2212), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(939), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(769), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(943), - [anon_sym_typeset] = ACTIONS(943), - [anon_sym_export] = ACTIONS(943), - [anon_sym_readonly] = ACTIONS(943), - [anon_sym_local] = ACTIONS(943), - [anon_sym_unset] = ACTIONS(945), - [anon_sym_unsetenv] = ACTIONS(945), - [anon_sym_AMP_GT] = ACTIONS(935), - [anon_sym_AMP_GT_GT] = ACTIONS(937), - [anon_sym_LT_AMP] = ACTIONS(935), - [anon_sym_GT_AMP] = ACTIONS(935), - [anon_sym_GT_PIPE] = ACTIONS(937), - [anon_sym_LT_AMP_DASH] = ACTIONS(947), - [anon_sym_GT_AMP_DASH] = ACTIONS(947), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym__special_character] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_raw_string] = ACTIONS(953), - [sym_ansi_c_string] = ACTIONS(953), - [aux_sym_number_token1] = ACTIONS(314), - [aux_sym_number_token2] = ACTIONS(316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(320), - [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(324), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(955), - [sym_variable_name] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [sym__brace_start] = ACTIONS(334), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [349] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [377] = { + [sym__statements] = STATE(7338), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1029), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [350] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [378] = { + [sym__statements] = STATE(7339), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1035), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [351] = { - [sym__expression] = STATE(2590), - [sym_binary_expression] = STATE(2153), - [sym_ternary_expression] = STATE(2153), - [sym_unary_expression] = STATE(2153), - [sym_postfix_expression] = STATE(2153), - [sym_parenthesized_expression] = STATE(2153), - [sym_arithmetic_expansion] = STATE(2117), - [sym_brace_expression] = STATE(2117), - [sym_concatenation] = STATE(2153), - [sym_string] = STATE(2117), - [sym_translated_string] = STATE(2117), - [sym_number] = STATE(2117), - [sym_simple_expansion] = STATE(2117), - [sym_expansion] = STATE(2117), - [sym_command_substitution] = STATE(2117), - [sym_process_substitution] = STATE(2117), - [aux_sym__literal_repeat1] = STATE(2171), - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_word] = ACTIONS(1037), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_RBRACK_RBRACK] = ACTIONS(344), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1045), - [anon_sym_DASH_DASH2] = ACTIONS(1045), - [anon_sym_DASH2] = ACTIONS(1047), - [anon_sym_PLUS2] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1049), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1051), - [aux_sym_concatenation_token1] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1061), - [sym_ansi_c_string] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(1063), - [aux_sym_number_token2] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1073), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), + [379] = { + [sym__statements] = STATE(7340), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1053), - [sym_test_operator] = ACTIONS(1077), - [sym__brace_start] = ACTIONS(1079), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [352] = { - [sym__expression] = STATE(2534), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(2053), - [sym_brace_expression] = STATE(2053), - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(2053), - [sym_translated_string] = STATE(2053), - [sym_number] = STATE(2053), - [sym_simple_expansion] = STATE(2053), - [sym_expansion] = STATE(2053), - [sym_command_substitution] = STATE(2053), - [sym_process_substitution] = STATE(2053), - [aux_sym__literal_repeat1] = STATE(2172), - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym_word] = ACTIONS(340), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_RBRACK] = ACTIONS(344), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(363), - [sym_ansi_c_string] = ACTIONS(363), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [380] = { + [sym__statements] = STATE(7341), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2142), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1023), - [sym_test_operator] = ACTIONS(379), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [353] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [381] = { + [sym__statements] = STATE(7357), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1083), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [354] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1085), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [382] = { + [sym__statements] = STATE(7358), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1087), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [355] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [383] = { + [sym__statements] = STATE(7359), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1091), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [356] = { - [sym__expression] = STATE(2530), - [sym_binary_expression] = STATE(2153), - [sym_ternary_expression] = STATE(2153), - [sym_unary_expression] = STATE(2153), - [sym_postfix_expression] = STATE(2153), - [sym_parenthesized_expression] = STATE(2153), - [sym_arithmetic_expansion] = STATE(2062), - [sym_brace_expression] = STATE(2062), - [sym_concatenation] = STATE(2153), - [sym_string] = STATE(2062), - [sym_translated_string] = STATE(2062), - [sym_number] = STATE(2062), - [sym_simple_expansion] = STATE(2062), - [sym_expansion] = STATE(2062), - [sym_command_substitution] = STATE(2062), - [sym_process_substitution] = STATE(2062), - [aux_sym__literal_repeat1] = STATE(2099), - [aux_sym_concatenation_repeat1] = STATE(2038), - [sym_word] = ACTIONS(1093), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1097), - [anon_sym_DASH_DASH2] = ACTIONS(1097), - [anon_sym_DASH2] = ACTIONS(1099), - [anon_sym_PLUS2] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1051), - [aux_sym_concatenation_token1] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1105), - [sym_ansi_c_string] = ACTIONS(1105), - [aux_sym_number_token1] = ACTIONS(1063), - [aux_sym_number_token2] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1073), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), + [384] = { + [sym__statements] = STATE(7360), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2143), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1053), - [sym_test_operator] = ACTIONS(1107), - [sym__brace_start] = ACTIONS(1079), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [357] = { - [sym__expression] = STATE(2579), - [sym_binary_expression] = STATE(2153), - [sym_ternary_expression] = STATE(2153), - [sym_unary_expression] = STATE(2153), - [sym_postfix_expression] = STATE(2153), - [sym_parenthesized_expression] = STATE(2153), - [sym_arithmetic_expansion] = STATE(2109), - [sym_brace_expression] = STATE(2109), - [sym_concatenation] = STATE(2153), - [sym_string] = STATE(2109), - [sym_translated_string] = STATE(2109), - [sym_number] = STATE(2109), - [sym_simple_expansion] = STATE(2109), - [sym_expansion] = STATE(2109), - [sym_command_substitution] = STATE(2109), - [sym_process_substitution] = STATE(2109), - [aux_sym__literal_repeat1] = STATE(2099), - [aux_sym_concatenation_repeat1] = STATE(2111), - [sym_word] = ACTIONS(1109), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN_RPAREN] = ACTIONS(344), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1113), - [anon_sym_DASH_DASH2] = ACTIONS(1113), - [anon_sym_DASH2] = ACTIONS(1115), - [anon_sym_PLUS2] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1051), - [aux_sym_concatenation_token1] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1121), - [sym_ansi_c_string] = ACTIONS(1121), - [aux_sym_number_token1] = ACTIONS(1063), - [aux_sym_number_token2] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1073), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), + [385] = { + [sym__statements] = STATE(7366), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1053), - [sym_test_operator] = ACTIONS(1123), - [sym__brace_start] = ACTIONS(1079), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [358] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [386] = { + [sym__statements] = STATE(7367), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1127), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [359] = { - [sym__expression] = STATE(2323), - [sym_binary_expression] = STATE(2425), - [sym_ternary_expression] = STATE(2425), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_arithmetic_expansion] = STATE(2110), - [sym_brace_expression] = STATE(2110), - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(2110), - [sym_translated_string] = STATE(2110), - [sym_number] = STATE(2110), - [sym_simple_expansion] = STATE(2110), - [sym_expansion] = STATE(2110), - [sym_command_substitution] = STATE(2110), - [sym_process_substitution] = STATE(2110), - [aux_sym__literal_repeat1] = STATE(2096), - [aux_sym_concatenation_repeat1] = STATE(2032), - [sym_word] = ACTIONS(1009), - [anon_sym_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(344), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1017), - [anon_sym_DASH_DASH2] = ACTIONS(1017), - [anon_sym_DASH2] = ACTIONS(1019), - [anon_sym_PLUS2] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [aux_sym_concatenation_token1] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(357), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(361), - [sym_raw_string] = ACTIONS(1027), - [sym_ansi_c_string] = ACTIONS(1027), - [aux_sym_number_token1] = ACTIONS(365), - [aux_sym_number_token2] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(377), - [anon_sym_GT_LPAREN] = ACTIONS(377), + [387] = { + [sym__statements] = STATE(7368), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(344), - [sym_test_operator] = ACTIONS(1031), - [sym__brace_start] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [360] = { - [sym__expression] = STATE(2442), - [sym_binary_expression] = STATE(2582), - [sym_ternary_expression] = STATE(2582), - [sym_unary_expression] = STATE(2582), - [sym_postfix_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_arithmetic_expansion] = STATE(2112), - [sym_brace_expression] = STATE(2112), - [sym_concatenation] = STATE(2582), - [sym_string] = STATE(2112), - [sym_translated_string] = STATE(2112), - [sym_number] = STATE(2112), - [sym_simple_expansion] = STATE(2112), - [sym_expansion] = STATE(2112), - [sym_command_substitution] = STATE(2112), - [sym_process_substitution] = STATE(2112), - [aux_sym__literal_repeat1] = STATE(2140), - [aux_sym_concatenation_repeat1] = STATE(2056), - [sym_word] = ACTIONS(227), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_RPAREN] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(240), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1131), - [aux_sym_concatenation_token1] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(248), - [sym__special_character] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_raw_string] = ACTIONS(1139), - [sym_ansi_c_string] = ACTIONS(1139), - [aux_sym_number_token1] = ACTIONS(254), - [aux_sym_number_token2] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1143), - [anon_sym_LT_LPAREN] = ACTIONS(1145), - [anon_sym_GT_LPAREN] = ACTIONS(1145), + [388] = { + [sym__statements] = STATE(7372), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2144), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1133), - [sym_test_operator] = ACTIONS(272), - [sym__brace_start] = ACTIONS(274), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [361] = { - [sym__expression] = STATE(2653), - [sym_binary_expression] = STATE(2153), - [sym_ternary_expression] = STATE(2153), - [sym_unary_expression] = STATE(2153), - [sym_postfix_expression] = STATE(2153), - [sym_parenthesized_expression] = STATE(2153), - [sym_arithmetic_expansion] = STATE(2156), - [sym_brace_expression] = STATE(2156), - [sym_concatenation] = STATE(2153), - [sym_string] = STATE(2156), - [sym_translated_string] = STATE(2156), - [sym_number] = STATE(2156), - [sym_simple_expansion] = STATE(2156), - [sym_expansion] = STATE(2156), - [sym_command_substitution] = STATE(2156), - [sym_process_substitution] = STATE(2156), - [aux_sym__literal_repeat1] = STATE(2099), - [aux_sym_concatenation_repeat1] = STATE(2183), - [sym_word] = ACTIONS(1147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_EQ_TILDE] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_PLUS_PLUS2] = ACTIONS(1151), - [anon_sym_DASH_DASH2] = ACTIONS(1151), - [anon_sym_DASH2] = ACTIONS(1153), - [anon_sym_PLUS2] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1051), - [aux_sym_concatenation_token1] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1063), - [aux_sym_number_token2] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1073), - [anon_sym_LT_LPAREN] = ACTIONS(1075), - [anon_sym_GT_LPAREN] = ACTIONS(1075), + [389] = { + [sym__statements] = STATE(7382), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1053), - [sym_test_operator] = ACTIONS(1161), - [sym__brace_start] = ACTIONS(1079), - }, - [362] = { - [sym_string] = STATE(382), - [sym_word] = ACTIONS(1163), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_EQ] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(1163), - [anon_sym_DASH_EQ] = ACTIONS(1163), - [anon_sym_STAR_EQ] = ACTIONS(1163), - [anon_sym_SLASH_EQ] = ACTIONS(1163), - [anon_sym_PERCENT_EQ] = ACTIONS(1163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1163), - [anon_sym_LT_LT_EQ] = ACTIONS(1163), - [anon_sym_GT_GT_EQ] = ACTIONS(1163), - [anon_sym_AMP_EQ] = ACTIONS(1163), - [anon_sym_CARET_EQ] = ACTIONS(1163), - [anon_sym_PIPE_EQ] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LT_EQ] = ACTIONS(1163), - [anon_sym_GT_EQ] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1163), - [anon_sym_STAR_STAR] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1163), - [anon_sym_AMP_GT_GT] = ACTIONS(1163), - [anon_sym_LT_AMP] = ACTIONS(1163), - [anon_sym_GT_AMP] = ACTIONS(1163), - [anon_sym_GT_PIPE] = ACTIONS(1163), - [anon_sym_LT_AMP_DASH] = ACTIONS(1163), - [anon_sym_GT_AMP_DASH] = ACTIONS(1163), - [anon_sym_LT_LT_DASH] = ACTIONS(1163), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1165), - [sym__special_character] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_raw_string] = ACTIONS(1163), - [sym_ansi_c_string] = ACTIONS(1163), - [aux_sym_number_token1] = ACTIONS(1163), - [aux_sym_number_token2] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1163), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1163), - [anon_sym_GT_LPAREN] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1169), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1169), - [anon_sym_AT2] = ACTIONS(1165), - [anon_sym_0] = ACTIONS(1165), - [anon_sym__] = ACTIONS(1165), - [sym_file_descriptor] = ACTIONS(1171), - [sym_test_operator] = ACTIONS(1171), - [sym__bare_dollar] = ACTIONS(1171), - [sym__brace_start] = ACTIONS(1171), - }, - [363] = { - [sym_string] = STATE(382), - [sym_word] = ACTIONS(1173), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_EQ] = ACTIONS(1173), - [anon_sym_DASH_EQ] = ACTIONS(1173), - [anon_sym_STAR_EQ] = ACTIONS(1173), - [anon_sym_SLASH_EQ] = ACTIONS(1173), - [anon_sym_PERCENT_EQ] = ACTIONS(1173), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1173), - [anon_sym_LT_LT_EQ] = ACTIONS(1173), - [anon_sym_GT_GT_EQ] = ACTIONS(1173), - [anon_sym_AMP_EQ] = ACTIONS(1173), - [anon_sym_CARET_EQ] = ACTIONS(1173), - [anon_sym_PIPE_EQ] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_CARET] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_BANG_EQ] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_LT_EQ] = ACTIONS(1173), - [anon_sym_GT_EQ] = ACTIONS(1173), - [anon_sym_LT_LT] = ACTIONS(1173), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1173), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1173), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [anon_sym_GT_PIPE] = ACTIONS(1173), - [anon_sym_LT_AMP_DASH] = ACTIONS(1173), - [anon_sym_GT_AMP_DASH] = ACTIONS(1173), - [anon_sym_LT_LT_DASH] = ACTIONS(1173), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1173), - [anon_sym_LT_LT_LT] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1165), - [sym__special_character] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_raw_string] = ACTIONS(1173), - [sym_ansi_c_string] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(1173), - [aux_sym_number_token2] = ACTIONS(1173), - [anon_sym_POUND] = ACTIONS(1165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1169), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1169), - [anon_sym_AT2] = ACTIONS(1165), - [anon_sym_0] = ACTIONS(1165), - [anon_sym__] = ACTIONS(1165), - [sym_file_descriptor] = ACTIONS(1175), - [sym_test_operator] = ACTIONS(1175), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), - }, - [364] = { - [sym_string] = STATE(413), - [sym_word] = ACTIONS(1173), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_EQ] = ACTIONS(1173), - [anon_sym_DASH_EQ] = ACTIONS(1173), - [anon_sym_STAR_EQ] = ACTIONS(1173), - [anon_sym_SLASH_EQ] = ACTIONS(1173), - [anon_sym_PERCENT_EQ] = ACTIONS(1173), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1173), - [anon_sym_LT_LT_EQ] = ACTIONS(1173), - [anon_sym_GT_GT_EQ] = ACTIONS(1173), - [anon_sym_AMP_EQ] = ACTIONS(1173), - [anon_sym_CARET_EQ] = ACTIONS(1173), - [anon_sym_PIPE_EQ] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_CARET] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_BANG_EQ] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_LT_EQ] = ACTIONS(1173), - [anon_sym_GT_EQ] = ACTIONS(1173), - [anon_sym_LT_LT] = ACTIONS(1173), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1173), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_EQ_TILDE] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1173), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [anon_sym_GT_PIPE] = ACTIONS(1173), - [anon_sym_LT_AMP_DASH] = ACTIONS(1173), - [anon_sym_GT_AMP_DASH] = ACTIONS(1173), - [anon_sym_LT_LT_DASH] = ACTIONS(1173), - [anon_sym_LT_LT_LT] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym__special_character] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_raw_string] = ACTIONS(1173), - [sym_ansi_c_string] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(1173), - [aux_sym_number_token2] = ACTIONS(1173), - [anon_sym_POUND] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1181), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1181), - [anon_sym_AT2] = ACTIONS(1177), - [anon_sym_0] = ACTIONS(1177), - [anon_sym__] = ACTIONS(1177), - [sym_file_descriptor] = ACTIONS(1175), - [sym_test_operator] = ACTIONS(1175), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, - [365] = { - [sym_string] = STATE(413), - [sym_word] = ACTIONS(1163), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1163), - [anon_sym_EQ] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(1163), - [anon_sym_DASH_EQ] = ACTIONS(1163), - [anon_sym_STAR_EQ] = ACTIONS(1163), - [anon_sym_SLASH_EQ] = ACTIONS(1163), - [anon_sym_PERCENT_EQ] = ACTIONS(1163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1163), - [anon_sym_LT_LT_EQ] = ACTIONS(1163), - [anon_sym_GT_GT_EQ] = ACTIONS(1163), - [anon_sym_AMP_EQ] = ACTIONS(1163), - [anon_sym_CARET_EQ] = ACTIONS(1163), - [anon_sym_PIPE_EQ] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LT_EQ] = ACTIONS(1163), - [anon_sym_GT_EQ] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1163), - [anon_sym_STAR_STAR] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1163), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1163), - [anon_sym_AMP_GT_GT] = ACTIONS(1163), - [anon_sym_LT_AMP] = ACTIONS(1163), - [anon_sym_GT_AMP] = ACTIONS(1163), - [anon_sym_GT_PIPE] = ACTIONS(1163), - [anon_sym_LT_AMP_DASH] = ACTIONS(1163), - [anon_sym_GT_AMP_DASH] = ACTIONS(1163), - [anon_sym_LT_LT_DASH] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym__special_character] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_raw_string] = ACTIONS(1163), - [sym_ansi_c_string] = ACTIONS(1163), - [aux_sym_number_token1] = ACTIONS(1163), - [aux_sym_number_token2] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1163), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1163), - [anon_sym_GT_LPAREN] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1181), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1181), - [anon_sym_AT2] = ACTIONS(1177), - [anon_sym_0] = ACTIONS(1177), - [anon_sym__] = ACTIONS(1177), - [sym_file_descriptor] = ACTIONS(1171), - [sym_test_operator] = ACTIONS(1171), - [sym__bare_dollar] = ACTIONS(1171), - [sym__brace_start] = ACTIONS(1171), + [390] = { + [sym__statements] = STATE(7383), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, - [366] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1187), - [anon_sym_AMP_AMP] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1183), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1183), - [anon_sym_LT_AMP_DASH] = ACTIONS(1183), - [anon_sym_GT_AMP_DASH] = ACTIONS(1183), - [anon_sym_LT_LT_DASH] = ACTIONS(1183), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1183), - [anon_sym_LT_LPAREN] = ACTIONS(1183), - [anon_sym_GT_LPAREN] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1193), - [sym__concat] = ACTIONS(270), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), - }, - [367] = { - [aux_sym_concatenation_repeat1] = STATE(367), - [sym_word] = ACTIONS(1198), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1198), - [anon_sym_DASH_EQ] = ACTIONS(1198), - [anon_sym_STAR_EQ] = ACTIONS(1198), - [anon_sym_SLASH_EQ] = ACTIONS(1198), - [anon_sym_PERCENT_EQ] = ACTIONS(1198), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1198), - [anon_sym_LT_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_GT_EQ] = ACTIONS(1198), - [anon_sym_AMP_EQ] = ACTIONS(1198), - [anon_sym_CARET_EQ] = ACTIONS(1198), - [anon_sym_PIPE_EQ] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_GT_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP_DASH] = ACTIONS(1198), - [anon_sym_GT_AMP_DASH] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1198), - [aux_sym_concatenation_token1] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(1198), - [sym_ansi_c_string] = ACTIONS(1198), - [aux_sym_number_token1] = ACTIONS(1198), - [aux_sym_number_token2] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1198), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1200), - [sym__concat] = ACTIONS(1205), - [sym_test_operator] = ACTIONS(1200), - [sym__bare_dollar] = ACTIONS(1200), - [sym__brace_start] = ACTIONS(1200), - }, - [368] = { - [aux_sym_concatenation_repeat1] = STATE(367), - [sym_word] = ACTIONS(1208), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_EQ] = ACTIONS(1208), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1208), - [anon_sym_PIPE_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_SEMI_SEMI] = ACTIONS(1208), - [anon_sym_PIPE_AMP] = ACTIONS(1208), - [anon_sym_EQ_TILDE] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1208), - [anon_sym_AMP_GT_GT] = ACTIONS(1208), - [anon_sym_LT_AMP] = ACTIONS(1208), - [anon_sym_GT_AMP] = ACTIONS(1208), - [anon_sym_GT_PIPE] = ACTIONS(1208), - [anon_sym_LT_AMP_DASH] = ACTIONS(1208), - [anon_sym_GT_AMP_DASH] = ACTIONS(1208), - [anon_sym_LT_LT_DASH] = ACTIONS(1208), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1208), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(1208), - [sym__special_character] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_raw_string] = ACTIONS(1208), - [sym_ansi_c_string] = ACTIONS(1208), - [aux_sym_number_token1] = ACTIONS(1208), - [aux_sym_number_token2] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1208), - [anon_sym_GT_LPAREN] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1210), - [sym__concat] = ACTIONS(1212), - [sym_test_operator] = ACTIONS(1210), - [sym__bare_dollar] = ACTIONS(1210), - [sym__brace_start] = ACTIONS(1210), - }, - [369] = { - [aux_sym_concatenation_repeat1] = STATE(367), - [sym_word] = ACTIONS(1214), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_EQ] = ACTIONS(1214), - [anon_sym_DASH_EQ] = ACTIONS(1214), - [anon_sym_STAR_EQ] = ACTIONS(1214), - [anon_sym_SLASH_EQ] = ACTIONS(1214), - [anon_sym_PERCENT_EQ] = ACTIONS(1214), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1214), - [anon_sym_LT_LT_EQ] = ACTIONS(1214), - [anon_sym_GT_GT_EQ] = ACTIONS(1214), - [anon_sym_AMP_EQ] = ACTIONS(1214), - [anon_sym_CARET_EQ] = ACTIONS(1214), - [anon_sym_PIPE_EQ] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1214), - [anon_sym_BANG_EQ] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_GT] = ACTIONS(1214), - [anon_sym_LT_EQ] = ACTIONS(1214), - [anon_sym_GT_EQ] = ACTIONS(1214), - [anon_sym_LT_LT] = ACTIONS(1214), - [anon_sym_GT_GT] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_SLASH] = ACTIONS(1214), - [anon_sym_PERCENT] = ACTIONS(1214), - [anon_sym_STAR_STAR] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_SEMI_SEMI] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_EQ_TILDE] = ACTIONS(1214), - [anon_sym_AMP_GT] = ACTIONS(1214), - [anon_sym_AMP_GT_GT] = ACTIONS(1214), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_GT_PIPE] = ACTIONS(1214), - [anon_sym_LT_AMP_DASH] = ACTIONS(1214), - [anon_sym_GT_AMP_DASH] = ACTIONS(1214), - [anon_sym_LT_LT_DASH] = ACTIONS(1214), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1214), - [anon_sym_QMARK] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1214), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1214), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(1214), - [sym__special_character] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_raw_string] = ACTIONS(1214), - [sym_ansi_c_string] = ACTIONS(1214), - [aux_sym_number_token1] = ACTIONS(1214), - [aux_sym_number_token2] = ACTIONS(1214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1214), - [anon_sym_GT_LPAREN] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1216), - [sym__concat] = ACTIONS(1218), - [sym_test_operator] = ACTIONS(1216), - [sym__bare_dollar] = ACTIONS(1216), - [sym__brace_start] = ACTIONS(1216), - }, - [370] = { - [aux_sym_concatenation_repeat1] = STATE(369), - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1220), - [anon_sym_LT_AMP_DASH] = ACTIONS(1220), - [anon_sym_GT_AMP_DASH] = ACTIONS(1220), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1220), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_raw_string] = ACTIONS(1220), - [sym_ansi_c_string] = ACTIONS(1220), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1220), - [anon_sym_LT_LPAREN] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(270), - [sym_test_operator] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), - }, - [371] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1187), - [anon_sym_AMP_AMP] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1183), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1183), - [anon_sym_LT_AMP_DASH] = ACTIONS(1183), - [anon_sym_GT_AMP_DASH] = ACTIONS(1183), - [anon_sym_LT_LT_DASH] = ACTIONS(1183), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), - [aux_sym_concatenation_token1] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1183), - [anon_sym_LT_LPAREN] = ACTIONS(1183), - [anon_sym_GT_LPAREN] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1193), - [sym__concat] = ACTIONS(270), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), - }, - [372] = { - [sym_word] = ACTIONS(1224), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_GT_EQ] = ACTIONS(1224), - [anon_sym_AMP_EQ] = ACTIONS(1224), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_GT_PIPE] = ACTIONS(1224), - [anon_sym_LT_AMP_DASH] = ACTIONS(1224), - [anon_sym_GT_AMP_DASH] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1224), - [aux_sym_concatenation_token1] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [sym__special_character] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [sym_ansi_c_string] = ACTIONS(1224), - [aux_sym_number_token1] = ACTIONS(1224), - [aux_sym_number_token2] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1226), - [sym__concat] = ACTIONS(1226), - [sym_test_operator] = ACTIONS(1226), - [sym__bare_dollar] = ACTIONS(1226), - [sym__brace_start] = ACTIONS(1226), - }, - [373] = { - [sym_word] = ACTIONS(1228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_GT_EQ] = ACTIONS(1228), - [anon_sym_AMP_EQ] = ACTIONS(1228), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_GT_PIPE] = ACTIONS(1228), - [anon_sym_LT_AMP_DASH] = ACTIONS(1228), - [anon_sym_GT_AMP_DASH] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1230), - [anon_sym_LT_LT_LT] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1228), - [aux_sym_concatenation_token1] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [sym__special_character] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_raw_string] = ACTIONS(1228), - [sym_ansi_c_string] = ACTIONS(1228), - [aux_sym_number_token1] = ACTIONS(1228), - [aux_sym_number_token2] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1228), - [anon_sym_LT_LPAREN] = ACTIONS(1228), - [anon_sym_GT_LPAREN] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1230), - [sym__concat] = ACTIONS(1230), - [sym_test_operator] = ACTIONS(1230), - [sym__bare_dollar] = ACTIONS(1230), - [sym__brace_start] = ACTIONS(1230), - }, - [374] = { - [sym_word] = ACTIONS(1232), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_SLASH] = ACTIONS(1232), - [anon_sym_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_STAR] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1232), - [anon_sym_SEMI_SEMI] = ACTIONS(1232), - [anon_sym_PIPE_AMP] = ACTIONS(1232), - [anon_sym_EQ_TILDE] = ACTIONS(1232), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(1232), - [anon_sym_LT_AMP] = ACTIONS(1232), - [anon_sym_GT_AMP] = ACTIONS(1232), - [anon_sym_GT_PIPE] = ACTIONS(1232), - [anon_sym_LT_AMP_DASH] = ACTIONS(1232), - [anon_sym_GT_AMP_DASH] = ACTIONS(1232), - [anon_sym_LT_LT_DASH] = ACTIONS(1232), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1232), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1232), - [aux_sym_concatenation_token1] = ACTIONS(1232), - [anon_sym_DOLLAR] = ACTIONS(1232), - [sym__special_character] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_raw_string] = ACTIONS(1232), - [sym_ansi_c_string] = ACTIONS(1232), - [aux_sym_number_token1] = ACTIONS(1232), - [aux_sym_number_token2] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1232), - [anon_sym_BQUOTE] = ACTIONS(1232), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1232), - [anon_sym_LT_LPAREN] = ACTIONS(1232), - [anon_sym_GT_LPAREN] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(1234), - [sym_test_operator] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [375] = { - [sym_word] = ACTIONS(1236), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_STAR] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_RPAREN] = ACTIONS(1236), - [anon_sym_SEMI_SEMI] = ACTIONS(1236), - [anon_sym_PIPE_AMP] = ACTIONS(1236), - [anon_sym_EQ_TILDE] = ACTIONS(1236), - [anon_sym_AMP_GT] = ACTIONS(1236), - [anon_sym_AMP_GT_GT] = ACTIONS(1236), - [anon_sym_LT_AMP] = ACTIONS(1236), - [anon_sym_GT_AMP] = ACTIONS(1236), - [anon_sym_GT_PIPE] = ACTIONS(1236), - [anon_sym_LT_AMP_DASH] = ACTIONS(1236), - [anon_sym_GT_AMP_DASH] = ACTIONS(1236), - [anon_sym_LT_LT_DASH] = ACTIONS(1236), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1238), - [anon_sym_LT_LT_LT] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1236), - [aux_sym_concatenation_token1] = ACTIONS(1236), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_raw_string] = ACTIONS(1236), - [sym_ansi_c_string] = ACTIONS(1236), - [aux_sym_number_token1] = ACTIONS(1236), - [aux_sym_number_token2] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1236), - [anon_sym_BQUOTE] = ACTIONS(1236), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1236), - [anon_sym_LT_LPAREN] = ACTIONS(1236), - [anon_sym_GT_LPAREN] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1238), - [sym__concat] = ACTIONS(1238), - [sym_test_operator] = ACTIONS(1238), - [sym__bare_dollar] = ACTIONS(1238), - [sym__brace_start] = ACTIONS(1238), - }, - [376] = { - [sym_word] = ACTIONS(1240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_SEMI_SEMI] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1240), - [anon_sym_AMP_GT] = ACTIONS(1240), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1240), - [anon_sym_GT_AMP] = ACTIONS(1240), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(1240), - [anon_sym_DOLLAR] = ACTIONS(1240), - [sym__special_character] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1240), - [aux_sym_number_token2] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1242), - [sym__concat] = ACTIONS(1242), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1242), - [sym__brace_start] = ACTIONS(1242), - }, - [377] = { - [sym_word] = ACTIONS(1244), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_STAR] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_SEMI_SEMI] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_AMP_GT] = ACTIONS(1244), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1244), - [anon_sym_LT_AMP_DASH] = ACTIONS(1244), - [anon_sym_GT_AMP_DASH] = ACTIONS(1244), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1244), - [aux_sym_concatenation_token1] = ACTIONS(1244), - [anon_sym_DOLLAR] = ACTIONS(1244), - [sym__special_character] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1244), - [sym_ansi_c_string] = ACTIONS(1244), - [aux_sym_number_token1] = ACTIONS(1244), - [aux_sym_number_token2] = ACTIONS(1244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1244), - [anon_sym_BQUOTE] = ACTIONS(1244), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), - [anon_sym_LT_LPAREN] = ACTIONS(1244), - [anon_sym_GT_LPAREN] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1246), - [sym__concat] = ACTIONS(1246), - [sym_test_operator] = ACTIONS(1246), - [sym__bare_dollar] = ACTIONS(1246), - [sym__brace_start] = ACTIONS(1246), - }, - [378] = { - [sym_word] = ACTIONS(1248), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_STAR] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_SEMI_SEMI] = ACTIONS(1248), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1248), - [anon_sym_LT_AMP_DASH] = ACTIONS(1248), - [anon_sym_GT_AMP_DASH] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1248), - [aux_sym_concatenation_token1] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1248), - [sym__special_character] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1248), - [sym_ansi_c_string] = ACTIONS(1248), - [aux_sym_number_token1] = ACTIONS(1248), - [aux_sym_number_token2] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), - [anon_sym_LT_LPAREN] = ACTIONS(1248), - [anon_sym_GT_LPAREN] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), - }, - [379] = { - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_AMP_DASH] = ACTIONS(1252), - [anon_sym_GT_AMP_DASH] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [sym_test_operator] = ACTIONS(1254), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [380] = { - [sym_word] = ACTIONS(1256), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_EQ] = ACTIONS(1256), - [anon_sym_DASH_EQ] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1256), - [anon_sym_PERCENT_EQ] = ACTIONS(1256), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1256), - [anon_sym_LT_LT_EQ] = ACTIONS(1256), - [anon_sym_GT_GT_EQ] = ACTIONS(1256), - [anon_sym_AMP_EQ] = ACTIONS(1256), - [anon_sym_CARET_EQ] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_GT_PIPE] = ACTIONS(1256), - [anon_sym_LT_AMP_DASH] = ACTIONS(1256), - [anon_sym_GT_AMP_DASH] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1256), - [aux_sym_concatenation_token1] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [sym_ansi_c_string] = ACTIONS(1256), - [aux_sym_number_token1] = ACTIONS(1256), - [aux_sym_number_token2] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1258), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), - }, - [381] = { - [sym_word] = ACTIONS(1260), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_GT_PIPE] = ACTIONS(1260), - [anon_sym_LT_AMP_DASH] = ACTIONS(1260), - [anon_sym_GT_AMP_DASH] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1260), - [aux_sym_concatenation_token1] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [sym__special_character] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [sym_ansi_c_string] = ACTIONS(1260), - [aux_sym_number_token1] = ACTIONS(1260), - [aux_sym_number_token2] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1262), - [sym__concat] = ACTIONS(1262), - [sym_test_operator] = ACTIONS(1262), - [sym__bare_dollar] = ACTIONS(1262), - [sym__brace_start] = ACTIONS(1262), - }, - [382] = { - [sym_word] = ACTIONS(1264), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1264), - [anon_sym_LT_AMP_DASH] = ACTIONS(1264), - [anon_sym_GT_AMP_DASH] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1264), - [aux_sym_concatenation_token1] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_raw_string] = ACTIONS(1264), - [sym_ansi_c_string] = ACTIONS(1264), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1266), - [sym_test_operator] = ACTIONS(1266), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), - }, - [383] = { - [sym_word] = ACTIONS(1240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_SEMI_SEMI] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1240), - [anon_sym_AMP_GT] = ACTIONS(1240), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1240), - [anon_sym_GT_AMP] = ACTIONS(1240), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(1240), - [anon_sym_DOLLAR] = ACTIONS(1240), - [sym__special_character] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1240), - [aux_sym_number_token2] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1242), - [sym__concat] = ACTIONS(1242), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1242), - [sym__brace_start] = ACTIONS(1242), - }, - [384] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_AMP_DASH] = ACTIONS(1268), - [anon_sym_GT_AMP_DASH] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym_test_operator] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [385] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_AMP_DASH] = ACTIONS(1272), - [anon_sym_GT_AMP_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [386] = { - [sym_word] = ACTIONS(1198), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1198), - [anon_sym_DASH_EQ] = ACTIONS(1198), - [anon_sym_STAR_EQ] = ACTIONS(1198), - [anon_sym_SLASH_EQ] = ACTIONS(1198), - [anon_sym_PERCENT_EQ] = ACTIONS(1198), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1198), - [anon_sym_LT_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_GT_EQ] = ACTIONS(1198), - [anon_sym_AMP_EQ] = ACTIONS(1198), - [anon_sym_CARET_EQ] = ACTIONS(1198), - [anon_sym_PIPE_EQ] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_GT_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP_DASH] = ACTIONS(1198), - [anon_sym_GT_AMP_DASH] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1198), - [aux_sym_concatenation_token1] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(1198), - [sym_ansi_c_string] = ACTIONS(1198), - [aux_sym_number_token1] = ACTIONS(1198), - [aux_sym_number_token2] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1198), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1200), - [sym__concat] = ACTIONS(1200), - [sym_test_operator] = ACTIONS(1200), - [sym__bare_dollar] = ACTIONS(1200), - [sym__brace_start] = ACTIONS(1200), - }, - [387] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_AMP_DASH] = ACTIONS(1276), - [anon_sym_GT_AMP_DASH] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [388] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_AMP_DASH] = ACTIONS(1280), - [anon_sym_GT_AMP_DASH] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_test_operator] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), - }, - [389] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_AMP_DASH] = ACTIONS(1284), - [anon_sym_GT_AMP_DASH] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_test_operator] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [390] = { - [sym_word] = ACTIONS(1288), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1288), - [anon_sym_LT_AMP_DASH] = ACTIONS(1288), - [anon_sym_GT_AMP_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1288), - [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [sym_ansi_c_string] = ACTIONS(1288), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), - }, - [391] = { - [aux_sym__literal_repeat1] = STATE(391), - [sym_word] = ACTIONS(1292), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1292), - [anon_sym_LT_AMP_DASH] = ACTIONS(1292), - [anon_sym_GT_AMP_DASH] = ACTIONS(1292), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [sym_ansi_c_string] = ACTIONS(1292), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), + [391] = { + [sym__statements] = STATE(7384), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [392] = { - [aux_sym__literal_repeat1] = STATE(391), - [sym_word] = ACTIONS(231), - [anon_sym_LPAREN_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(235), - [anon_sym_AMP_AMP] = ACTIONS(235), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(235), - [anon_sym_GT_GT] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_SEMI_SEMI] = ACTIONS(231), - [anon_sym_PIPE_AMP] = ACTIONS(231), - [anon_sym_EQ_TILDE] = ACTIONS(235), - [anon_sym_AMP_GT] = ACTIONS(231), - [anon_sym_AMP_GT_GT] = ACTIONS(231), - [anon_sym_LT_AMP] = ACTIONS(231), - [anon_sym_GT_AMP] = ACTIONS(231), - [anon_sym_GT_PIPE] = ACTIONS(231), - [anon_sym_LT_AMP_DASH] = ACTIONS(231), - [anon_sym_GT_AMP_DASH] = ACTIONS(231), - [anon_sym_LT_LT_DASH] = ACTIONS(231), - [aux_sym_heredoc_redirect_token1] = ACTIONS(268), - [anon_sym_LT_LT_LT] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym__special_character] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_raw_string] = ACTIONS(231), - [sym_ansi_c_string] = ACTIONS(231), - [aux_sym_number_token1] = ACTIONS(231), - [aux_sym_number_token2] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(231), - [anon_sym_BQUOTE] = ACTIONS(231), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(231), - [anon_sym_LT_LPAREN] = ACTIONS(231), - [anon_sym_GT_LPAREN] = ACTIONS(231), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(268), - [sym_test_operator] = ACTIONS(346), - [sym__bare_dollar] = ACTIONS(268), - [sym__brace_start] = ACTIONS(268), + [sym__statements] = STATE(7385), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2146), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [393] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(1198), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1198), - [anon_sym_DASH_EQ] = ACTIONS(1198), - [anon_sym_STAR_EQ] = ACTIONS(1198), - [anon_sym_SLASH_EQ] = ACTIONS(1198), - [anon_sym_PERCENT_EQ] = ACTIONS(1198), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1198), - [anon_sym_LT_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_EQ] = ACTIONS(1200), - [anon_sym_CARET_EQ] = ACTIONS(1198), - [anon_sym_PIPE_EQ] = ACTIONS(1200), - [anon_sym_PIPE_PIPE] = ACTIONS(1200), - [anon_sym_AMP_AMP] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1200), - [anon_sym_RBRACK] = ACTIONS(1200), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1200), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_GT_PIPE] = ACTIONS(1200), - [anon_sym_LT_AMP_DASH] = ACTIONS(1200), - [anon_sym_GT_AMP_DASH] = ACTIONS(1200), - [anon_sym_LT_LT_DASH] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1200), - [aux_sym_concatenation_token1] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1200), - [sym_ansi_c_string] = ACTIONS(1200), - [aux_sym_number_token1] = ACTIONS(1198), - [aux_sym_number_token2] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1200), - [anon_sym_LT_LPAREN] = ACTIONS(1200), - [anon_sym_GT_LPAREN] = ACTIONS(1200), + [sym__statements] = STATE(7388), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1200), - [sym__concat] = ACTIONS(1301), - [sym_test_operator] = ACTIONS(1200), - [sym__bare_dollar] = ACTIONS(1200), - [sym__brace_start] = ACTIONS(1200), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [394] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(1208), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1210), - [anon_sym_GT_GT_EQ] = ACTIONS(1210), - [anon_sym_AMP_EQ] = ACTIONS(1210), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_PIPE_AMP] = ACTIONS(1210), - [anon_sym_RBRACK] = ACTIONS(1210), - [anon_sym_EQ_TILDE] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1208), - [anon_sym_AMP_GT_GT] = ACTIONS(1210), - [anon_sym_LT_AMP] = ACTIONS(1208), - [anon_sym_GT_AMP] = ACTIONS(1208), - [anon_sym_GT_PIPE] = ACTIONS(1210), - [anon_sym_LT_AMP_DASH] = ACTIONS(1210), - [anon_sym_GT_AMP_DASH] = ACTIONS(1210), - [anon_sym_LT_LT_DASH] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1210), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1208), - [sym__special_character] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_raw_string] = ACTIONS(1210), - [sym_ansi_c_string] = ACTIONS(1210), - [aux_sym_number_token1] = ACTIONS(1208), - [aux_sym_number_token2] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1210), - [anon_sym_LT_LPAREN] = ACTIONS(1210), - [anon_sym_GT_LPAREN] = ACTIONS(1210), + [sym__statements] = STATE(7390), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1210), - [sym__concat] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1210), - [sym__bare_dollar] = ACTIONS(1210), - [sym__brace_start] = ACTIONS(1210), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [395] = { - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1187), - [anon_sym_AMP_AMP] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1183), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1183), - [anon_sym_LT_AMP_DASH] = ACTIONS(1183), - [anon_sym_GT_AMP_DASH] = ACTIONS(1183), - [anon_sym_LT_LT_DASH] = ACTIONS(1183), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1183), - [anon_sym_LT_LPAREN] = ACTIONS(1183), - [anon_sym_GT_LPAREN] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1193), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), + [sym__statements] = STATE(7391), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [396] = { - [aux_sym_concatenation_repeat1] = STATE(398), - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP_EQ] = ACTIONS(1222), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1222), - [anon_sym_LT_AMP_DASH] = ACTIONS(1222), - [anon_sym_GT_AMP_DASH] = ACTIONS(1222), - [anon_sym_LT_LT_DASH] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1222), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1222), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [sym_ansi_c_string] = ACTIONS(1222), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), + [sym__statements] = STATE(7394), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2148), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(355), - [sym_test_operator] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [397] = { - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1220), - [anon_sym_LT_AMP_DASH] = ACTIONS(1220), - [anon_sym_GT_AMP_DASH] = ACTIONS(1220), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_raw_string] = ACTIONS(1220), - [sym_ansi_c_string] = ACTIONS(1220), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1220), - [anon_sym_LT_LPAREN] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1222), - [sym_test_operator] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym__statements] = STATE(7407), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [398] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(1214), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_EQ] = ACTIONS(1214), - [anon_sym_DASH_EQ] = ACTIONS(1214), - [anon_sym_STAR_EQ] = ACTIONS(1214), - [anon_sym_SLASH_EQ] = ACTIONS(1214), - [anon_sym_PERCENT_EQ] = ACTIONS(1214), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1214), - [anon_sym_LT_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_GT_EQ] = ACTIONS(1216), - [anon_sym_AMP_EQ] = ACTIONS(1216), - [anon_sym_CARET_EQ] = ACTIONS(1214), - [anon_sym_PIPE_EQ] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1214), - [anon_sym_BANG_EQ] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_GT] = ACTIONS(1214), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1214), - [anon_sym_GT_GT] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_SLASH] = ACTIONS(1214), - [anon_sym_PERCENT] = ACTIONS(1214), - [anon_sym_STAR_STAR] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_RBRACK] = ACTIONS(1216), - [anon_sym_EQ_TILDE] = ACTIONS(1214), - [anon_sym_AMP_GT] = ACTIONS(1214), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_GT_PIPE] = ACTIONS(1216), - [anon_sym_LT_AMP_DASH] = ACTIONS(1216), - [anon_sym_GT_AMP_DASH] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1216), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1214), - [sym__special_character] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [sym_ansi_c_string] = ACTIONS(1216), - [aux_sym_number_token1] = ACTIONS(1214), - [aux_sym_number_token2] = ACTIONS(1214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym__statements] = STATE(7409), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1216), - [sym__concat] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1216), - [sym__bare_dollar] = ACTIONS(1216), - [sym__brace_start] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [399] = { - [aux_sym_concatenation_repeat1] = STATE(394), - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1193), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1193), - [anon_sym_LT_AMP_DASH] = ACTIONS(1193), - [anon_sym_GT_AMP_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1193), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_raw_string] = ACTIONS(1193), - [sym_ansi_c_string] = ACTIONS(1193), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1193), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), + [sym__statements] = STATE(7410), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1193), - [sym__concat] = ACTIONS(355), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [400] = { - [aux_sym_concatenation_repeat1] = STATE(394), - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1193), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1193), - [anon_sym_LT_AMP_DASH] = ACTIONS(1193), - [anon_sym_GT_AMP_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1193), - [aux_sym_concatenation_token1] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_raw_string] = ACTIONS(1193), - [sym_ansi_c_string] = ACTIONS(1193), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1193), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), + [sym__statements] = STATE(7411), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2149), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1193), - [sym__concat] = ACTIONS(355), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [401] = { - [sym_word] = ACTIONS(1260), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_GT_PIPE] = ACTIONS(1262), - [anon_sym_LT_AMP_DASH] = ACTIONS(1262), - [anon_sym_GT_AMP_DASH] = ACTIONS(1262), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1262), - [aux_sym_concatenation_token1] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [sym__special_character] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_raw_string] = ACTIONS(1262), - [sym_ansi_c_string] = ACTIONS(1262), - [aux_sym_number_token1] = ACTIONS(1260), - [aux_sym_number_token2] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), - [anon_sym_LT_LPAREN] = ACTIONS(1262), - [anon_sym_GT_LPAREN] = ACTIONS(1262), + [sym__statements] = STATE(7418), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1262), - [sym__concat] = ACTIONS(1262), - [sym_test_operator] = ACTIONS(1262), - [sym__bare_dollar] = ACTIONS(1262), - [sym__brace_start] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [402] = { - [sym_word] = ACTIONS(1240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_RBRACK] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1240), - [anon_sym_AMP_GT] = ACTIONS(1240), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1240), - [anon_sym_GT_AMP] = ACTIONS(1240), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_AMP_DASH] = ACTIONS(1242), - [anon_sym_GT_AMP_DASH] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [sym__special_character] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1240), - [aux_sym_number_token2] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym__statements] = STATE(7419), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1242), - [sym__concat] = ACTIONS(1242), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1242), - [sym__brace_start] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [403] = { - [sym_word] = ACTIONS(1240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_RBRACK] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1240), - [anon_sym_AMP_GT] = ACTIONS(1240), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1240), - [anon_sym_GT_AMP] = ACTIONS(1240), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_AMP_DASH] = ACTIONS(1242), - [anon_sym_GT_AMP_DASH] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [sym__special_character] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1240), - [aux_sym_number_token2] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym__statements] = STATE(7420), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1242), - [sym__concat] = ACTIONS(1242), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1242), - [sym__brace_start] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [404] = { - [sym_word] = ACTIONS(1198), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1198), - [anon_sym_DASH_EQ] = ACTIONS(1198), - [anon_sym_STAR_EQ] = ACTIONS(1198), - [anon_sym_SLASH_EQ] = ACTIONS(1198), - [anon_sym_PERCENT_EQ] = ACTIONS(1198), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1198), - [anon_sym_LT_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_EQ] = ACTIONS(1200), - [anon_sym_CARET_EQ] = ACTIONS(1198), - [anon_sym_PIPE_EQ] = ACTIONS(1200), - [anon_sym_PIPE_PIPE] = ACTIONS(1200), - [anon_sym_AMP_AMP] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1200), - [anon_sym_RBRACK] = ACTIONS(1200), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1200), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_GT_PIPE] = ACTIONS(1200), - [anon_sym_LT_AMP_DASH] = ACTIONS(1200), - [anon_sym_GT_AMP_DASH] = ACTIONS(1200), - [anon_sym_LT_LT_DASH] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1200), - [aux_sym_concatenation_token1] = ACTIONS(1200), - [anon_sym_DOLLAR] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1200), - [sym_ansi_c_string] = ACTIONS(1200), - [aux_sym_number_token1] = ACTIONS(1198), - [aux_sym_number_token2] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1200), - [anon_sym_LT_LPAREN] = ACTIONS(1200), - [anon_sym_GT_LPAREN] = ACTIONS(1200), + [sym__statements] = STATE(7421), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2150), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1200), - [sym__concat] = ACTIONS(1200), - [sym_test_operator] = ACTIONS(1200), - [sym__bare_dollar] = ACTIONS(1200), - [sym__brace_start] = ACTIONS(1200), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [405] = { - [sym_word] = ACTIONS(1228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP_EQ] = ACTIONS(1230), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [anon_sym_AMP_AMP] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1230), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_GT_PIPE] = ACTIONS(1230), - [anon_sym_LT_AMP_DASH] = ACTIONS(1230), - [anon_sym_GT_AMP_DASH] = ACTIONS(1230), - [anon_sym_LT_LT_DASH] = ACTIONS(1230), - [anon_sym_LT_LT_LT] = ACTIONS(1230), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1230), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1230), - [aux_sym_concatenation_token1] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1228), - [sym__special_character] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1230), - [sym_ansi_c_string] = ACTIONS(1230), - [aux_sym_number_token1] = ACTIONS(1228), - [aux_sym_number_token2] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1230), - [anon_sym_LT_LPAREN] = ACTIONS(1230), - [anon_sym_GT_LPAREN] = ACTIONS(1230), + [sym__statements] = STATE(7428), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1230), - [sym__concat] = ACTIONS(1230), - [sym_test_operator] = ACTIONS(1230), - [sym__bare_dollar] = ACTIONS(1230), - [sym__brace_start] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [406] = { - [sym_word] = ACTIONS(1224), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1226), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_GT_PIPE] = ACTIONS(1226), - [anon_sym_LT_AMP_DASH] = ACTIONS(1226), - [anon_sym_GT_AMP_DASH] = ACTIONS(1226), - [anon_sym_LT_LT_DASH] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1226), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1226), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1226), - [aux_sym_concatenation_token1] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1224), - [sym__special_character] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_raw_string] = ACTIONS(1226), - [sym_ansi_c_string] = ACTIONS(1226), - [aux_sym_number_token1] = ACTIONS(1224), - [aux_sym_number_token2] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), - [anon_sym_LT_LPAREN] = ACTIONS(1226), - [anon_sym_GT_LPAREN] = ACTIONS(1226), + [sym__statements] = STATE(7431), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1226), - [sym__concat] = ACTIONS(1226), - [sym_test_operator] = ACTIONS(1226), - [sym__bare_dollar] = ACTIONS(1226), - [sym__brace_start] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [407] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_EQ] = ACTIONS(1282), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1282), - [anon_sym_LT_AMP_DASH] = ACTIONS(1282), - [anon_sym_GT_AMP_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1282), - [aux_sym_concatenation_token1] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [sym_ansi_c_string] = ACTIONS(1282), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), + [sym__statements] = STATE(7434), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_test_operator] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [408] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_AMP_DASH] = ACTIONS(1286), - [anon_sym_GT_AMP_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym__statements] = STATE(7436), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2151), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_test_operator] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [409] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_AMP_DASH] = ACTIONS(1274), - [anon_sym_GT_AMP_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [sym__statements] = STATE(7445), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [410] = { - [sym_word] = ACTIONS(1236), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_EQ] = ACTIONS(1238), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_STAR] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_PIPE_AMP] = ACTIONS(1238), - [anon_sym_RBRACK] = ACTIONS(1238), - [anon_sym_EQ_TILDE] = ACTIONS(1236), - [anon_sym_AMP_GT] = ACTIONS(1236), - [anon_sym_AMP_GT_GT] = ACTIONS(1238), - [anon_sym_LT_AMP] = ACTIONS(1236), - [anon_sym_GT_AMP] = ACTIONS(1236), - [anon_sym_GT_PIPE] = ACTIONS(1238), - [anon_sym_LT_AMP_DASH] = ACTIONS(1238), - [anon_sym_GT_AMP_DASH] = ACTIONS(1238), - [anon_sym_LT_LT_DASH] = ACTIONS(1238), - [anon_sym_LT_LT_LT] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1238), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1238), - [aux_sym_concatenation_token1] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1238), - [sym_ansi_c_string] = ACTIONS(1238), - [aux_sym_number_token1] = ACTIONS(1236), - [aux_sym_number_token2] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1236), - [anon_sym_BQUOTE] = ACTIONS(1236), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1238), - [anon_sym_LT_LPAREN] = ACTIONS(1238), - [anon_sym_GT_LPAREN] = ACTIONS(1238), + [sym__statements] = STATE(7301), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1238), - [sym__concat] = ACTIONS(1238), - [sym_test_operator] = ACTIONS(1238), - [sym__bare_dollar] = ACTIONS(1238), - [sym__brace_start] = ACTIONS(1238), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [411] = { - [sym_word] = ACTIONS(1232), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1234), - [anon_sym_GT_GT_EQ] = ACTIONS(1234), - [anon_sym_AMP_EQ] = ACTIONS(1234), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_SLASH] = ACTIONS(1232), - [anon_sym_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_STAR] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_RBRACK] = ACTIONS(1234), - [anon_sym_EQ_TILDE] = ACTIONS(1232), - [anon_sym_AMP_GT] = ACTIONS(1232), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1232), - [anon_sym_GT_AMP] = ACTIONS(1232), - [anon_sym_GT_PIPE] = ACTIONS(1234), - [anon_sym_LT_AMP_DASH] = ACTIONS(1234), - [anon_sym_GT_AMP_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1234), - [aux_sym_concatenation_token1] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(1232), - [sym__special_character] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_raw_string] = ACTIONS(1234), - [sym_ansi_c_string] = ACTIONS(1234), - [aux_sym_number_token1] = ACTIONS(1232), - [aux_sym_number_token2] = ACTIONS(1232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1232), - [anon_sym_BQUOTE] = ACTIONS(1232), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), - [anon_sym_LT_LPAREN] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(1234), + [sym__statements] = STATE(7446), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(1234), - [sym_test_operator] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [412] = { - [sym_word] = ACTIONS(1256), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_EQ] = ACTIONS(1256), - [anon_sym_DASH_EQ] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1256), - [anon_sym_PERCENT_EQ] = ACTIONS(1256), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1256), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_AMP_DASH] = ACTIONS(1258), - [anon_sym_GT_AMP_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1256), - [aux_sym_number_token2] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), + [sym__statements] = STATE(7447), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1258), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [413] = { - [sym_word] = ACTIONS(1264), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_EQ] = ACTIONS(1266), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1266), - [anon_sym_RBRACK] = ACTIONS(1266), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1266), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1266), - [anon_sym_LT_AMP_DASH] = ACTIONS(1266), - [anon_sym_GT_AMP_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1266), - [sym_ansi_c_string] = ACTIONS(1266), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), - [anon_sym_LT_LPAREN] = ACTIONS(1266), - [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym__statements] = STATE(7448), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2070), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1266), - [sym_test_operator] = ACTIONS(1266), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [414] = { - [sym_word] = ACTIONS(1248), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_STAR] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_AMP_DASH] = ACTIONS(1250), - [anon_sym_GT_AMP_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1248), - [sym__special_character] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1248), - [aux_sym_number_token2] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [sym__statements] = STATE(7454), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [415] = { - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_AMP_DASH] = ACTIONS(1254), - [anon_sym_GT_AMP_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), + [sym__statements] = STATE(7455), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [sym_test_operator] = ACTIONS(1254), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [416] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_AMP_DASH] = ACTIONS(1278), - [anon_sym_GT_AMP_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), + [sym__statements] = STATE(7459), + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5070), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [417] = { - [sym_word] = ACTIONS(1288), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_GT_EQ] = ACTIONS(1290), - [anon_sym_AMP_EQ] = ACTIONS(1290), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1290), - [anon_sym_LT_AMP_DASH] = ACTIONS(1290), - [anon_sym_GT_AMP_DASH] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1290), - [aux_sym_concatenation_token1] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_ansi_c_string] = ACTIONS(1290), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym__statements] = STATE(7463), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_c_style_for_statement] = STATE(4797), + [sym_while_statement] = STATE(4400), + [sym_if_statement] = STATE(4400), + [sym_case_statement] = STATE(4797), + [sym_function_definition] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_subshell] = STATE(4797), + [sym_pipeline] = STATE(5054), + [sym_list] = STATE(4797), + [sym_negated_command] = STATE(4797), + [sym_test_command] = STATE(4797), + [sym_declaration_command] = STATE(4797), + [sym_unset_command] = STATE(4797), + [sym_command] = STATE(4797), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(945), + [sym_variable_assignments] = STATE(4797), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(1930), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [418] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_AMP_DASH] = ACTIONS(1270), - [anon_sym_GT_AMP_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [aux_sym__terminated_statement] = STATE(234), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym_test_operator] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [419] = { - [sym_word] = ACTIONS(1244), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_STAR] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_AMP_GT] = ACTIONS(1244), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_AMP_DASH] = ACTIONS(1246), - [anon_sym_GT_AMP_DASH] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1244), - [sym__special_character] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1244), - [aux_sym_number_token2] = ACTIONS(1244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1244), - [anon_sym_BQUOTE] = ACTIONS(1244), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4928), + [sym_for_statement] = STATE(4928), + [sym_c_style_for_statement] = STATE(4928), + [sym_while_statement] = STATE(4415), + [sym_if_statement] = STATE(4415), + [sym_case_statement] = STATE(4928), + [sym_function_definition] = STATE(4928), + [sym_compound_statement] = STATE(4928), + [sym_subshell] = STATE(4928), + [sym_pipeline] = STATE(5248), + [sym_list] = STATE(4928), + [sym_negated_command] = STATE(4928), + [sym_test_command] = STATE(4928), + [sym_declaration_command] = STATE(4928), + [sym_unset_command] = STATE(4928), + [sym_command] = STATE(4928), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4928), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(889), + [anon_sym_for] = ACTIONS(892), + [anon_sym_select] = ACTIONS(895), + [anon_sym_LPAREN_LPAREN] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(910), + [anon_sym_until] = ACTIONS(910), + [anon_sym_if] = ACTIONS(913), + [anon_sym_case] = ACTIONS(916), + [anon_sym_function] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(931), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_typeset] = ACTIONS(934), + [anon_sym_export] = ACTIONS(934), + [anon_sym_readonly] = ACTIONS(934), + [anon_sym_local] = ACTIONS(934), + [anon_sym_unset] = ACTIONS(937), + [anon_sym_unsetenv] = ACTIONS(937), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(904), + [anon_sym_LT_AMP] = ACTIONS(901), + [anon_sym_GT_AMP] = ACTIONS(901), + [anon_sym_GT_PIPE] = ACTIONS(904), + [anon_sym_LT_AMP_DASH] = ACTIONS(940), + [anon_sym_GT_AMP_DASH] = ACTIONS(940), + [anon_sym_LT_LT_LT] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(952), + [sym__special_character] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_raw_string] = ACTIONS(961), + [sym_ansi_c_string] = ACTIONS(961), + [aux_sym_number_token1] = ACTIONS(964), + [aux_sym_number_token2] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(982), + [anon_sym_GT_LPAREN] = ACTIONS(982), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1246), - [sym__concat] = ACTIONS(1246), - [sym_test_operator] = ACTIONS(1246), - [sym__bare_dollar] = ACTIONS(1246), - [sym__brace_start] = ACTIONS(1246), + [sym_file_descriptor] = ACTIONS(985), + [sym_variable_name] = ACTIONS(988), + [sym_test_operator] = ACTIONS(991), + [sym__brace_start] = ACTIONS(994), }, [420] = { - [aux_sym__literal_repeat1] = STATE(421), - [sym_word] = ACTIONS(231), - [anon_sym_LPAREN_LPAREN] = ACTIONS(268), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_STAR_STAR_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(344), - [anon_sym_GT_GT_EQ] = ACTIONS(344), - [anon_sym_AMP_EQ] = ACTIONS(344), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(235), - [anon_sym_GT_GT] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_PIPE_AMP] = ACTIONS(268), - [anon_sym_RBRACK] = ACTIONS(344), - [anon_sym_EQ_TILDE] = ACTIONS(235), - [anon_sym_AMP_GT] = ACTIONS(231), - [anon_sym_AMP_GT_GT] = ACTIONS(268), - [anon_sym_LT_AMP] = ACTIONS(231), - [anon_sym_GT_AMP] = ACTIONS(231), - [anon_sym_GT_PIPE] = ACTIONS(268), - [anon_sym_LT_AMP_DASH] = ACTIONS(268), - [anon_sym_GT_AMP_DASH] = ACTIONS(268), - [anon_sym_LT_LT_DASH] = ACTIONS(268), - [anon_sym_LT_LT_LT] = ACTIONS(268), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(268), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(268), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym__special_character] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(268), - [sym_raw_string] = ACTIONS(268), - [sym_ansi_c_string] = ACTIONS(268), - [aux_sym_number_token1] = ACTIONS(231), - [aux_sym_number_token2] = ACTIONS(231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(231), - [anon_sym_BQUOTE] = ACTIONS(268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(268), - [anon_sym_LT_LPAREN] = ACTIONS(268), - [anon_sym_GT_LPAREN] = ACTIONS(268), + [aux_sym__terminated_statement] = STATE(59), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(268), - [sym_test_operator] = ACTIONS(346), - [sym__bare_dollar] = ACTIONS(268), - [sym__brace_start] = ACTIONS(268), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [421] = { - [aux_sym__literal_repeat1] = STATE(421), - [sym_word] = ACTIONS(1292), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_AMP_DASH] = ACTIONS(1294), - [anon_sym_GT_AMP_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), + [aux_sym__terminated_statement] = STATE(153), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [422] = { - [sym_word] = ACTIONS(1183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1193), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1187), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1193), - [anon_sym_LT_AMP_DASH] = ACTIONS(1193), - [anon_sym_GT_AMP_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_DASH] = ACTIONS(1193), - [anon_sym_LT_LT_LT] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_raw_string] = ACTIONS(1193), - [sym_ansi_c_string] = ACTIONS(1193), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1193), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), + [aux_sym__terminated_statement] = STATE(133), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1193), - [sym_test_operator] = ACTIONS(1195), - [sym__bare_dollar] = ACTIONS(1193), - [sym__brace_start] = ACTIONS(1193), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [423] = { - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP_EQ] = ACTIONS(1222), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1222), - [anon_sym_LT_AMP_DASH] = ACTIONS(1222), - [anon_sym_GT_AMP_DASH] = ACTIONS(1222), - [anon_sym_LT_LT_DASH] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1222), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [sym_ansi_c_string] = ACTIONS(1222), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4778), + [sym_for_statement] = STATE(4778), + [sym_c_style_for_statement] = STATE(4778), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4778), + [sym_function_definition] = STATE(4778), + [sym_compound_statement] = STATE(4778), + [sym_subshell] = STATE(4778), + [sym_pipeline] = STATE(5051), + [sym_list] = STATE(4778), + [sym_negated_command] = STATE(4778), + [sym_test_command] = STATE(4778), + [sym_declaration_command] = STATE(4778), + [sym_unset_command] = STATE(4778), + [sym_command] = STATE(4778), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(1002), + [sym_variable_assignments] = STATE(4778), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1222), - [sym_test_operator] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), }, [424] = { - [sym_subshell] = STATE(4510), - [sym_test_command] = STATE(4510), - [sym_command] = STATE(4514), - [sym_command_name] = STATE(516), - [sym_variable_assignment] = STATE(2298), - [sym_subscript] = STATE(5431), - [sym_file_redirect] = STATE(3000), - [sym_herestring_redirect] = STATE(3000), - [sym__expression] = STATE(2535), - [sym_binary_expression] = STATE(2449), - [sym_ternary_expression] = STATE(2449), - [sym_unary_expression] = STATE(2449), - [sym_postfix_expression] = STATE(2449), - [sym_parenthesized_expression] = STATE(2449), - [sym_arithmetic_expansion] = STATE(400), - [sym_brace_expression] = STATE(400), - [sym_concatenation] = STATE(422), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_number] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_command_repeat1] = STATE(806), - [aux_sym__literal_repeat1] = STATE(420), - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_AMP_DASH] = ACTIONS(1324), - [anon_sym_GT_AMP_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), + [aux_sym__terminated_statement] = STATE(50), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1328), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, [425] = { - [sym_subshell] = STATE(4041), - [sym_test_command] = STATE(4041), - [sym_command] = STATE(4039), - [sym_command_name] = STATE(431), - [sym_variable_assignment] = STATE(1576), - [sym_subscript] = STATE(5403), - [sym_file_redirect] = STATE(3000), - [sym_herestring_redirect] = STATE(3000), - [sym__expression] = STATE(2441), - [sym_binary_expression] = STATE(2582), - [sym_ternary_expression] = STATE(2582), - [sym_unary_expression] = STATE(2582), - [sym_postfix_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_arithmetic_expansion] = STATE(371), - [sym_brace_expression] = STATE(371), - [sym_concatenation] = STATE(395), - [sym_string] = STATE(371), - [sym_translated_string] = STATE(371), - [sym_number] = STATE(371), - [sym_simple_expansion] = STATE(371), - [sym_expansion] = STATE(371), - [sym_command_substitution] = STATE(371), - [sym_process_substitution] = STATE(371), - [aux_sym_command_repeat1] = STATE(812), - [aux_sym__literal_repeat1] = STATE(392), - [sym_word] = ACTIONS(1330), - [anon_sym_LPAREN_LPAREN] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(240), + [aux_sym__terminated_statement] = STATE(122), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_AMP_DASH] = ACTIONS(1324), - [anon_sym_GT_AMP_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), - [sym__special_character] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [sym_ansi_c_string] = ACTIONS(119), - [aux_sym_number_token1] = ACTIONS(121), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(127), - [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1328), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(139), - [sym__brace_start] = ACTIONS(141), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1342), 1, - anon_sym_LT_LT_LT, - ACTIONS(1344), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1346), 1, - sym__special_character, - ACTIONS(1348), 1, - anon_sym_DQUOTE, - ACTIONS(1350), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1352), 1, - anon_sym_BQUOTE, - ACTIONS(1354), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1358), 1, - sym_test_operator, - ACTIONS(1360), 1, - sym__bare_dollar, - STATE(432), 1, - aux_sym_command_repeat2, - STATE(867), 1, - aux_sym__literal_repeat1, - STATE(977), 1, - sym_concatenation, - STATE(979), 1, - sym_herestring_redirect, - STATE(3952), 1, + [426] = { + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4433), + [sym_for_statement] = STATE(4433), + [sym_c_style_for_statement] = STATE(4433), + [sym_while_statement] = STATE(4249), + [sym_if_statement] = STATE(4249), + [sym_case_statement] = STATE(4433), + [sym_function_definition] = STATE(4433), + [sym_compound_statement] = STATE(4433), + [sym_subshell] = STATE(4433), + [sym_pipeline] = STATE(4939), + [sym_list] = STATE(4433), + [sym_negated_command] = STATE(4433), + [sym_test_command] = STATE(4433), + [sym_declaration_command] = STATE(4433), + [sym_unset_command] = STATE(4433), + [sym_command] = STATE(4433), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(835), + [sym_variable_assignments] = STATE(4433), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [427] = { + [sym__statement_not_pipeline] = STATE(6572), + [sym_redirected_statement] = STATE(4663), + [sym_for_statement] = STATE(4663), + [sym_c_style_for_statement] = STATE(4663), + [sym_while_statement] = STATE(4312), + [sym_if_statement] = STATE(4312), + [sym_case_statement] = STATE(4663), + [sym_function_definition] = STATE(4663), + [sym_compound_statement] = STATE(4663), + [sym_subshell] = STATE(4663), + [sym_pipeline] = STATE(5108), + [sym_list] = STATE(4663), + [sym_negated_command] = STATE(4663), + [sym_test_command] = STATE(4663), + [sym_declaration_command] = STATE(4663), + [sym_unset_command] = STATE(4663), + [sym_command] = STATE(4663), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4663), + [sym_subscript] = STATE(6774), + [sym_file_redirect] = STATE(2055), + [sym_herestring_redirect] = STATE(2156), + [sym_arithmetic_expansion] = STATE(957), + [sym_brace_expression] = STATE(957), + [sym_concatenation] = STATE(1386), + [sym_string] = STATE(957), + [sym_translated_string] = STATE(957), + [sym_number] = STATE(957), + [sym_simple_expansion] = STATE(957), + [sym_expansion] = STATE(957), + [sym_command_substitution] = STATE(957), + [sym_process_substitution] = STATE(957), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4571), + [aux_sym_command_repeat1] = STATE(937), + [aux_sym__literal_repeat1] = STATE(1212), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [428] = { + [aux_sym__terminated_statement] = STATE(102), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [429] = { + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4793), + [sym_for_statement] = STATE(4793), + [sym_c_style_for_statement] = STATE(4793), + [sym_while_statement] = STATE(4397), + [sym_if_statement] = STATE(4397), + [sym_case_statement] = STATE(4793), + [sym_function_definition] = STATE(4793), + [sym_compound_statement] = STATE(4793), + [sym_subshell] = STATE(4793), + [sym_pipeline] = STATE(5040), + [sym_list] = STATE(4793), + [sym_negated_command] = STATE(4793), + [sym_test_command] = STATE(4793), + [sym_declaration_command] = STATE(4793), + [sym_unset_command] = STATE(4793), + [sym_command] = STATE(4793), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1132), + [sym_variable_assignments] = STATE(4793), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [430] = { + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [431] = { + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_c_style_for_statement] = STATE(4341), + [sym_while_statement] = STATE(4223), + [sym_if_statement] = STATE(4223), + [sym_case_statement] = STATE(4341), + [sym_function_definition] = STATE(4341), + [sym_compound_statement] = STATE(4341), + [sym_subshell] = STATE(4341), + [sym_pipeline] = STATE(4792), + [sym_list] = STATE(4341), + [sym_negated_command] = STATE(4341), + [sym_test_command] = STATE(4341), + [sym_declaration_command] = STATE(4341), + [sym_unset_command] = STATE(4341), + [sym_command] = STATE(4341), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(818), + [sym_variable_assignments] = STATE(4341), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), + }, + [432] = { + [aux_sym__terminated_statement] = STATE(54), + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(5007), + [sym_for_statement] = STATE(5007), + [sym_c_style_for_statement] = STATE(5007), + [sym_while_statement] = STATE(4551), + [sym_if_statement] = STATE(4551), + [sym_case_statement] = STATE(5007), + [sym_function_definition] = STATE(5007), + [sym_compound_statement] = STATE(5007), + [sym_subshell] = STATE(5007), + [sym_pipeline] = STATE(5189), + [sym_list] = STATE(5007), + [sym_negated_command] = STATE(5007), + [sym_test_command] = STATE(5007), + [sym_declaration_command] = STATE(5007), + [sym_unset_command] = STATE(5007), + [sym_command] = STATE(5007), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1151), + [sym_variable_assignments] = STATE(5007), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [433] = { + [sym__statement_not_pipeline] = STATE(6572), + [sym_redirected_statement] = STATE(4745), + [sym_for_statement] = STATE(4745), + [sym_c_style_for_statement] = STATE(4745), + [sym_while_statement] = STATE(4281), + [sym_if_statement] = STATE(4281), + [sym_case_statement] = STATE(4745), + [sym_function_definition] = STATE(4745), + [sym_compound_statement] = STATE(4745), + [sym_subshell] = STATE(4745), + [sym_pipeline] = STATE(4608), + [sym_list] = STATE(4745), + [sym_negated_command] = STATE(4745), + [sym_test_command] = STATE(4745), + [sym_declaration_command] = STATE(4745), + [sym_unset_command] = STATE(4745), + [sym_command] = STATE(4745), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(1006), + [sym_variable_assignments] = STATE(4745), + [sym_subscript] = STATE(6774), + [sym_file_redirect] = STATE(2055), + [sym_herestring_redirect] = STATE(2156), + [sym_arithmetic_expansion] = STATE(957), + [sym_brace_expression] = STATE(957), + [sym_concatenation] = STATE(1386), + [sym_string] = STATE(957), + [sym_translated_string] = STATE(957), + [sym_number] = STATE(957), + [sym_simple_expansion] = STATE(957), + [sym_expansion] = STATE(957), + [sym_command_substitution] = STATE(957), + [sym_process_substitution] = STATE(957), + [aux_sym_redirected_statement_repeat2] = STATE(4571), + [aux_sym_command_repeat1] = STATE(937), + [aux_sym__literal_repeat1] = STATE(1212), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [434] = { + [sym__statement_not_pipeline] = STATE(6566), + [sym_redirected_statement] = STATE(5381), + [sym_for_statement] = STATE(5381), + [sym_c_style_for_statement] = STATE(5381), + [sym_while_statement] = STATE(5118), + [sym_if_statement] = STATE(5118), + [sym_case_statement] = STATE(5381), + [sym_function_definition] = STATE(5381), + [sym_compound_statement] = STATE(5381), + [sym_subshell] = STATE(5381), + [sym_pipeline] = STATE(5533), + [sym_list] = STATE(5381), + [sym_negated_command] = STATE(5381), + [sym_test_command] = STATE(5381), + [sym_declaration_command] = STATE(5381), + [sym_unset_command] = STATE(5381), + [sym_command] = STATE(5381), + [sym_command_name] = STATE(596), + [sym_variable_assignment] = STATE(1706), + [sym_variable_assignments] = STATE(5381), + [sym_subscript] = STATE(6759), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1717), + [sym_brace_expression] = STATE(1717), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1717), + [sym_translated_string] = STATE(1717), + [sym_number] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [aux_sym_redirected_statement_repeat2] = STATE(5176), + [aux_sym_command_repeat1] = STATE(933), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(997), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(344), + }, + [435] = { + [sym__statement_not_pipeline] = STATE(4942), + [sym_redirected_statement] = STATE(4942), + [sym_for_statement] = STATE(4942), + [sym_c_style_for_statement] = STATE(4942), + [sym_while_statement] = STATE(4234), + [sym_if_statement] = STATE(4234), + [sym_case_statement] = STATE(4942), + [sym_function_definition] = STATE(4942), + [sym_compound_statement] = STATE(4942), + [sym_subshell] = STATE(4942), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(4942), + [sym_negated_command] = STATE(4942), + [sym_test_command] = STATE(4942), + [sym_declaration_command] = STATE(4942), + [sym_unset_command] = STATE(4942), + [sym_command] = STATE(4942), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(847), + [sym_variable_assignments] = STATE(4942), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [436] = { + [sym__statement_not_pipeline] = STATE(6674), + [sym_redirected_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_c_style_for_statement] = STATE(4528), + [sym_while_statement] = STATE(4254), + [sym_if_statement] = STATE(4254), + [sym_case_statement] = STATE(4528), + [sym_function_definition] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_subshell] = STATE(4528), + [sym_pipeline] = STATE(4428), + [sym_list] = STATE(4528), + [sym_negated_command] = STATE(4528), + [sym_test_command] = STATE(4528), + [sym_declaration_command] = STATE(4528), + [sym_unset_command] = STATE(4528), + [sym_command] = STATE(4528), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(839), + [sym_variable_assignments] = STATE(4528), + [sym_subscript] = STATE(6760), + [sym_file_redirect] = STATE(1893), + [sym_herestring_redirect] = STATE(1892), + [sym_arithmetic_expansion] = STATE(852), + [sym_brace_expression] = STATE(852), + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(852), + [sym_translated_string] = STATE(852), + [sym_number] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [aux_sym_redirected_statement_repeat2] = STATE(4371), + [aux_sym_command_repeat1] = STATE(989), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [437] = { + [sym__statement_not_pipeline] = STATE(4794), + [sym_redirected_statement] = STATE(4794), + [sym_for_statement] = STATE(4794), + [sym_c_style_for_statement] = STATE(4794), + [sym_while_statement] = STATE(4269), + [sym_if_statement] = STATE(4269), + [sym_case_statement] = STATE(4794), + [sym_function_definition] = STATE(4794), + [sym_compound_statement] = STATE(4794), + [sym_subshell] = STATE(4794), + [sym_pipeline] = STATE(5558), + [sym_list] = STATE(4794), + [sym_negated_command] = STATE(4794), + [sym_test_command] = STATE(4794), + [sym_declaration_command] = STATE(4794), + [sym_unset_command] = STATE(4794), + [sym_command] = STATE(4794), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1028), + [sym_variable_assignments] = STATE(4794), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [438] = { + [sym__statement_not_pipeline] = STATE(4616), + [sym_redirected_statement] = STATE(4616), + [sym_for_statement] = STATE(4616), + [sym_c_style_for_statement] = STATE(4616), + [sym_while_statement] = STATE(4227), + [sym_if_statement] = STATE(4227), + [sym_case_statement] = STATE(4616), + [sym_function_definition] = STATE(4616), + [sym_compound_statement] = STATE(4616), + [sym_subshell] = STATE(4616), + [sym_pipeline] = STATE(5614), + [sym_list] = STATE(4616), + [sym_negated_command] = STATE(4616), + [sym_test_command] = STATE(4616), + [sym_declaration_command] = STATE(4616), + [sym_unset_command] = STATE(4616), + [sym_command] = STATE(4616), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(822), + [sym_variable_assignments] = STATE(4616), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), + }, + [439] = { + [sym__statement_not_pipeline] = STATE(5561), + [sym_redirected_statement] = STATE(5561), + [sym_for_statement] = STATE(5561), + [sym_c_style_for_statement] = STATE(5561), + [sym_while_statement] = STATE(5213), + [sym_if_statement] = STATE(5213), + [sym_case_statement] = STATE(5561), + [sym_function_definition] = STATE(5561), + [sym_compound_statement] = STATE(5561), + [sym_subshell] = STATE(5561), + [sym_pipeline] = STATE(5551), + [sym_list] = STATE(5561), + [sym_negated_command] = STATE(5561), + [sym_test_command] = STATE(5561), + [sym_declaration_command] = STATE(5561), + [sym_unset_command] = STATE(5561), + [sym_command] = STATE(5561), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1907), + [sym_variable_assignments] = STATE(5561), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2780), + [sym_herestring_redirect] = STATE(2886), + [sym_arithmetic_expansion] = STATE(1799), + [sym_brace_expression] = STATE(1799), + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(1799), + [sym_translated_string] = STATE(1799), + [sym_number] = STATE(1799), + [sym_simple_expansion] = STATE(1799), + [sym_expansion] = STATE(1799), + [sym_command_substitution] = STATE(1799), + [sym_process_substitution] = STATE(1799), + [aux_sym_redirected_statement_repeat2] = STATE(5362), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(2332), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1029), + [anon_sym_GT_AMP] = ACTIONS(1029), + [anon_sym_GT_PIPE] = ACTIONS(1031), + [anon_sym_LT_AMP_DASH] = ACTIONS(1037), + [anon_sym_GT_AMP_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym__special_character] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1051), + [sym_ansi_c_string] = ACTIONS(1051), + [aux_sym_number_token1] = ACTIONS(1053), + [aux_sym_number_token2] = ACTIONS(1055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(1069), + [sym__brace_start] = ACTIONS(1071), + }, + [440] = { + [sym__statement_not_pipeline] = STATE(6566), + [sym_redirected_statement] = STATE(5383), + [sym_for_statement] = STATE(5383), + [sym_c_style_for_statement] = STATE(5383), + [sym_while_statement] = STATE(5117), + [sym_if_statement] = STATE(5117), + [sym_case_statement] = STATE(5383), + [sym_function_definition] = STATE(5383), + [sym_compound_statement] = STATE(5383), + [sym_subshell] = STATE(5383), + [sym_pipeline] = STATE(5535), + [sym_list] = STATE(5383), + [sym_negated_command] = STATE(5383), + [sym_test_command] = STATE(5383), + [sym_declaration_command] = STATE(5383), + [sym_unset_command] = STATE(5383), + [sym_command] = STATE(5383), + [sym_command_name] = STATE(596), + [sym_variable_assignment] = STATE(1707), + [sym_variable_assignments] = STATE(5383), + [sym_subscript] = STATE(6759), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1717), + [sym_brace_expression] = STATE(1717), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1717), + [sym_translated_string] = STATE(1717), + [sym_number] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [aux_sym_redirected_statement_repeat2] = STATE(5176), + [aux_sym_command_repeat1] = STATE(933), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(997), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(344), + }, + [441] = { + [sym__statement_not_pipeline] = STATE(6614), + [sym_redirected_statement] = STATE(4717), + [sym_for_statement] = STATE(4717), + [sym_c_style_for_statement] = STATE(4717), + [sym_while_statement] = STATE(4376), + [sym_if_statement] = STATE(4376), + [sym_case_statement] = STATE(4717), + [sym_function_definition] = STATE(4717), + [sym_compound_statement] = STATE(4717), + [sym_subshell] = STATE(4717), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4717), + [sym_negated_command] = STATE(4717), + [sym_test_command] = STATE(4717), + [sym_declaration_command] = STATE(4717), + [sym_unset_command] = STATE(4717), + [sym_command] = STATE(4717), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(948), + [sym_variable_assignments] = STATE(4717), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), + }, + [442] = { + [sym__statement_not_pipeline] = STATE(4794), + [sym_redirected_statement] = STATE(4794), + [sym_for_statement] = STATE(4794), + [sym_c_style_for_statement] = STATE(4794), + [sym_while_statement] = STATE(4353), + [sym_if_statement] = STATE(4353), + [sym_case_statement] = STATE(4794), + [sym_function_definition] = STATE(4794), + [sym_compound_statement] = STATE(4794), + [sym_subshell] = STATE(4794), + [sym_pipeline] = STATE(5550), + [sym_list] = STATE(4794), + [sym_negated_command] = STATE(4794), + [sym_test_command] = STATE(4794), + [sym_declaration_command] = STATE(4794), + [sym_unset_command] = STATE(4794), + [sym_command] = STATE(4794), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(961), + [sym_variable_assignments] = STATE(4794), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(938), + [sym_brace_expression] = STATE(938), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(938), + [sym_translated_string] = STATE(938), + [sym_number] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [aux_sym_redirected_statement_repeat2] = STATE(4480), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(773), + [sym_ansi_c_string] = ACTIONS(773), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(775), + [sym__brace_start] = ACTIONS(344), + }, + [443] = { + [sym__statement_not_pipeline] = STATE(4794), + [sym_redirected_statement] = STATE(4794), + [sym_for_statement] = STATE(4794), + [sym_c_style_for_statement] = STATE(4794), + [sym_while_statement] = STATE(4565), + [sym_if_statement] = STATE(4565), + [sym_case_statement] = STATE(4794), + [sym_function_definition] = STATE(4794), + [sym_compound_statement] = STATE(4794), + [sym_subshell] = STATE(4794), + [sym_pipeline] = STATE(5554), + [sym_list] = STATE(4794), + [sym_negated_command] = STATE(4794), + [sym_test_command] = STATE(4794), + [sym_declaration_command] = STATE(4794), + [sym_unset_command] = STATE(4794), + [sym_command] = STATE(4794), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1098), + [sym_variable_assignments] = STATE(4794), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [444] = { + [sym__statement_not_pipeline] = STATE(6718), + [sym_redirected_statement] = STATE(4996), + [sym_for_statement] = STATE(4996), + [sym_c_style_for_statement] = STATE(4996), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(4996), + [sym_function_definition] = STATE(4996), + [sym_compound_statement] = STATE(4996), + [sym_subshell] = STATE(4996), + [sym_pipeline] = STATE(4997), + [sym_list] = STATE(4996), + [sym_negated_command] = STATE(4996), + [sym_test_command] = STATE(4996), + [sym_declaration_command] = STATE(4996), + [sym_unset_command] = STATE(4996), + [sym_command] = STATE(4996), + [sym_command_name] = STATE(544), + [sym_variable_assignment] = STATE(1096), + [sym_variable_assignments] = STATE(4996), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4644), + [aux_sym_command_repeat1] = STATE(997), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(286), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(304), + [anon_sym_typeset] = ACTIONS(304), + [anon_sym_export] = ACTIONS(304), + [anon_sym_readonly] = ACTIONS(304), + [anon_sym_local] = ACTIONS(304), + [anon_sym_unset] = ACTIONS(306), + [anon_sym_unsetenv] = ACTIONS(306), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [445] = { + [sym__statement_not_pipeline] = STATE(6566), + [sym_redirected_statement] = STATE(5368), + [sym_for_statement] = STATE(5368), + [sym_c_style_for_statement] = STATE(5368), + [sym_while_statement] = STATE(5056), + [sym_if_statement] = STATE(5056), + [sym_case_statement] = STATE(5368), + [sym_function_definition] = STATE(5368), + [sym_compound_statement] = STATE(5368), + [sym_subshell] = STATE(5368), + [sym_pipeline] = STATE(5369), + [sym_list] = STATE(5368), + [sym_negated_command] = STATE(5368), + [sym_test_command] = STATE(5368), + [sym_declaration_command] = STATE(5368), + [sym_unset_command] = STATE(5368), + [sym_command] = STATE(5368), + [sym_command_name] = STATE(596), + [sym_variable_assignment] = STATE(1562), + [sym_variable_assignments] = STATE(5368), + [sym_subscript] = STATE(6759), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1717), + [sym_brace_expression] = STATE(1717), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1717), + [sym_translated_string] = STATE(1717), + [sym_number] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [aux_sym_redirected_statement_repeat2] = STATE(5176), + [aux_sym_command_repeat1] = STATE(933), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(997), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(344), + }, + [446] = { + [sym__statement_not_pipeline] = STATE(4794), + [sym_redirected_statement] = STATE(4794), + [sym_for_statement] = STATE(4794), + [sym_c_style_for_statement] = STATE(4794), + [sym_while_statement] = STATE(5058), + [sym_if_statement] = STATE(5058), + [sym_case_statement] = STATE(4794), + [sym_function_definition] = STATE(4794), + [sym_compound_statement] = STATE(4794), + [sym_subshell] = STATE(4794), + [sym_pipeline] = STATE(5559), + [sym_list] = STATE(4794), + [sym_negated_command] = STATE(4794), + [sym_test_command] = STATE(4794), + [sym_declaration_command] = STATE(4794), + [sym_unset_command] = STATE(4794), + [sym_command] = STATE(4794), + [sym_command_name] = STATE(596), + [sym_variable_assignment] = STATE(1627), + [sym_variable_assignments] = STATE(4794), + [sym_subscript] = STATE(6759), + [sym_file_redirect] = STATE(2019), + [sym_herestring_redirect] = STATE(2017), + [sym_arithmetic_expansion] = STATE(1717), + [sym_brace_expression] = STATE(1717), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1717), + [sym_translated_string] = STATE(1717), + [sym_number] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [aux_sym_redirected_statement_repeat2] = STATE(5176), + [aux_sym_command_repeat1] = STATE(933), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(997), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(344), + }, + [447] = { + [sym__statement_not_pipeline] = STATE(6568), + [sym_redirected_statement] = STATE(5421), + [sym_for_statement] = STATE(5421), + [sym_c_style_for_statement] = STATE(5421), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5421), + [sym_function_definition] = STATE(5421), + [sym_compound_statement] = STATE(5421), + [sym_subshell] = STATE(5421), + [sym_pipeline] = STATE(5419), + [sym_list] = STATE(5421), + [sym_negated_command] = STATE(5421), + [sym_test_command] = STATE(5421), + [sym_declaration_command] = STATE(5421), + [sym_unset_command] = STATE(5421), + [sym_command] = STATE(5421), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(1882), + [sym_variable_assignments] = STATE(5421), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(2780), + [sym_herestring_redirect] = STATE(2886), + [sym_arithmetic_expansion] = STATE(1799), + [sym_brace_expression] = STATE(1799), + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(1799), + [sym_translated_string] = STATE(1799), + [sym_number] = STATE(1799), + [sym_simple_expansion] = STATE(1799), + [sym_expansion] = STATE(1799), + [sym_command_substitution] = STATE(1799), + [sym_process_substitution] = STATE(1799), + [aux_sym_redirected_statement_repeat2] = STATE(5362), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(2332), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1029), + [anon_sym_GT_AMP] = ACTIONS(1029), + [anon_sym_GT_PIPE] = ACTIONS(1031), + [anon_sym_LT_AMP_DASH] = ACTIONS(1037), + [anon_sym_GT_AMP_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym__special_character] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1051), + [sym_ansi_c_string] = ACTIONS(1051), + [aux_sym_number_token1] = ACTIONS(1053), + [aux_sym_number_token2] = ACTIONS(1055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(1069), + [sym__brace_start] = ACTIONS(1071), + }, + [448] = { + [sym__statement_not_pipeline] = STATE(4794), + [sym_redirected_statement] = STATE(4794), + [sym_for_statement] = STATE(4794), + [sym_c_style_for_statement] = STATE(4794), + [sym_while_statement] = STATE(4381), + [sym_if_statement] = STATE(4381), + [sym_case_statement] = STATE(4794), + [sym_function_definition] = STATE(4794), + [sym_compound_statement] = STATE(4794), + [sym_subshell] = STATE(4794), + [sym_pipeline] = STATE(5557), + [sym_list] = STATE(4794), + [sym_negated_command] = STATE(4794), + [sym_test_command] = STATE(4794), + [sym_declaration_command] = STATE(4794), + [sym_unset_command] = STATE(4794), + [sym_command] = STATE(4794), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(986), + [sym_variable_assignments] = STATE(4794), + [sym_subscript] = STATE(6774), + [sym_file_redirect] = STATE(2055), + [sym_herestring_redirect] = STATE(2156), + [sym_arithmetic_expansion] = STATE(957), + [sym_brace_expression] = STATE(957), + [sym_concatenation] = STATE(1386), + [sym_string] = STATE(957), + [sym_translated_string] = STATE(957), + [sym_number] = STATE(957), + [sym_simple_expansion] = STATE(957), + [sym_expansion] = STATE(957), + [sym_command_substitution] = STATE(957), + [sym_process_substitution] = STATE(957), + [aux_sym_redirected_statement_repeat2] = STATE(4571), + [aux_sym_command_repeat1] = STATE(937), + [aux_sym__literal_repeat1] = STATE(1212), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [449] = { + [sym__statement_not_pipeline] = STATE(6558), + [sym_redirected_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_c_style_for_statement] = STATE(4722), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4722), + [sym_function_definition] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_subshell] = STATE(4722), + [sym_pipeline] = STATE(4724), + [sym_list] = STATE(4722), + [sym_negated_command] = STATE(4722), + [sym_test_command] = STATE(4722), + [sym_declaration_command] = STATE(4722), + [sym_unset_command] = STATE(4722), + [sym_command] = STATE(4722), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(1059), + [sym_variable_assignments] = STATE(4722), + [sym_subscript] = STATE(6790), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2272), + [sym_arithmetic_expansion] = STATE(1078), + [sym_brace_expression] = STATE(1078), + [sym_concatenation] = STATE(1376), + [sym_string] = STATE(1078), + [sym_translated_string] = STATE(1078), + [sym_number] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [aux_sym_redirected_statement_repeat2] = STATE(4573), + [aux_sym_command_repeat1] = STATE(958), + [aux_sym__literal_repeat1] = STATE(1267), + [sym_word] = ACTIONS(799), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(805), + [anon_sym_typeset] = ACTIONS(805), + [anon_sym_export] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(805), + [anon_sym_local] = ACTIONS(805), + [anon_sym_unset] = ACTIONS(807), + [anon_sym_unsetenv] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(290), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(290), + [anon_sym_GT_AMP] = ACTIONS(290), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_LT_AMP_DASH] = ACTIONS(308), + [anon_sym_GT_AMP_DASH] = ACTIONS(308), + [anon_sym_LT_LT_LT] = ACTIONS(310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [sym_ansi_c_string] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), + [anon_sym_LT_LPAREN] = ACTIONS(336), + [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(340), + [sym_test_operator] = ACTIONS(342), + [sym__brace_start] = ACTIONS(344), + }, + [450] = { + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_c_style_for_statement] = STATE(4342), + [sym_while_statement] = STATE(4224), + [sym_if_statement] = STATE(4224), + [sym_case_statement] = STATE(4342), + [sym_function_definition] = STATE(4342), + [sym_compound_statement] = STATE(4342), + [sym_subshell] = STATE(4342), + [sym_pipeline] = STATE(4339), + [sym_list] = STATE(4342), + [sym_negated_command] = STATE(4342), + [sym_test_command] = STATE(4342), + [sym_declaration_command] = STATE(4342), + [sym_unset_command] = STATE(4342), + [sym_command] = STATE(4342), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(809), + [sym_variable_assignments] = STATE(4342), + [sym_subscript] = STATE(6736), + [sym_file_redirect] = STATE(1635), + [sym_herestring_redirect] = STATE(1634), + [sym_arithmetic_expansion] = STATE(815), + [sym_brace_expression] = STATE(815), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(815), + [sym_translated_string] = STATE(815), + [sym_number] = STATE(815), + [sym_simple_expansion] = STATE(815), + [sym_expansion] = STATE(815), + [sym_command_substitution] = STATE(815), + [sym_process_substitution] = STATE(815), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(925), + [aux_sym__literal_repeat1] = STATE(926), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(439), + [anon_sym_declare] = ACTIONS(441), + [anon_sym_typeset] = ACTIONS(441), + [anon_sym_export] = ACTIONS(441), + [anon_sym_readonly] = ACTIONS(441), + [anon_sym_local] = ACTIONS(441), + [anon_sym_unset] = ACTIONS(443), + [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(445), + [anon_sym_GT_AMP_DASH] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(453), + [sym__special_character] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(457), + [sym_raw_string] = ACTIONS(459), + [sym_ansi_c_string] = ACTIONS(459), + [aux_sym_number_token1] = ACTIONS(461), + [aux_sym_number_token2] = ACTIONS(463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_BQUOTE] = ACTIONS(469), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(473), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(475), + [sym_variable_name] = ACTIONS(477), + [sym_test_operator] = ACTIONS(479), + [sym__brace_start] = ACTIONS(481), + }, + [451] = { + [sym__expression] = STATE(3098), + [sym_binary_expression] = STATE(3053), + [sym_ternary_expression] = STATE(3053), + [sym_unary_expression] = STATE(3053), + [sym_postfix_expression] = STATE(3053), + [sym_parenthesized_expression] = STATE(3053), + [sym_arithmetic_expansion] = STATE(2500), + [sym_brace_expression] = STATE(2500), + [sym_concatenation] = STATE(3053), + [sym_string] = STATE(2500), + [sym_translated_string] = STATE(2500), + [sym_number] = STATE(2500), + [sym_simple_expansion] = STATE(2500), + [sym_expansion] = STATE(2500), + [sym_command_substitution] = STATE(2500), + [sym_process_substitution] = STATE(2500), + [aux_sym__literal_repeat1] = STATE(2690), + [aux_sym_concatenation_repeat1] = STATE(2491), + [sym_word] = ACTIONS(237), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(103), + [anon_sym_DASH_DASH2] = ACTIONS(103), + [anon_sym_DASH2] = ACTIONS(105), + [anon_sym_PLUS2] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1073), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1075), + [aux_sym_concatenation_token1] = ACTIONS(1077), + [anon_sym_DOLLAR] = ACTIONS(258), + [sym__special_character] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1083), + [sym_ansi_c_string] = ACTIONS(1083), + [aux_sym_number_token1] = ACTIONS(264), + [aux_sym_number_token2] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1087), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1077), + [sym_test_operator] = ACTIONS(282), + [sym__brace_start] = ACTIONS(284), + }, + [452] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1111), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [453] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1115), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1117), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [454] = { + [sym__expression] = STATE(3012), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(2521), + [sym_brace_expression] = STATE(2521), + [sym_concatenation] = STATE(3071), + [sym_string] = STATE(2521), + [sym_translated_string] = STATE(2521), + [sym_number] = STATE(2521), + [sym_simple_expansion] = STATE(2521), + [sym_expansion] = STATE(2521), + [sym_command_substitution] = STATE(2521), + [sym_process_substitution] = STATE(2521), + [aux_sym__literal_repeat1] = STATE(2641), + [aux_sym_concatenation_repeat1] = STATE(2555), + [sym_word] = ACTIONS(350), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [sym_ansi_c_string] = ACTIONS(373), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1105), + [sym_test_operator] = ACTIONS(389), + [sym__brace_start] = ACTIONS(391), + }, + [455] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1121), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [456] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(354), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [457] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1123), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1125), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [458] = { + [sym__expression] = STATE(3089), + [sym_binary_expression] = STATE(2594), + [sym_ternary_expression] = STATE(2594), + [sym_unary_expression] = STATE(2594), + [sym_postfix_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(2594), + [sym_arithmetic_expansion] = STATE(2573), + [sym_brace_expression] = STATE(2573), + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(2573), + [sym_translated_string] = STATE(2573), + [sym_number] = STATE(2573), + [sym_simple_expansion] = STATE(2573), + [sym_expansion] = STATE(2573), + [sym_command_substitution] = STATE(2573), + [sym_process_substitution] = STATE(2573), + [aux_sym__literal_repeat1] = STATE(2484), + [aux_sym_concatenation_repeat1] = STATE(2459), + [sym_word] = ACTIONS(1127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1135), + [anon_sym_DASH_DASH2] = ACTIONS(1135), + [anon_sym_DASH2] = ACTIONS(1137), + [anon_sym_PLUS2] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), + [aux_sym_concatenation_token1] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1145), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1151), + [sym_ansi_c_string] = ACTIONS(1151), + [aux_sym_number_token1] = ACTIONS(1153), + [aux_sym_number_token2] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1167), + [sym__brace_start] = ACTIONS(1169), + }, + [459] = { + [sym__expression] = STATE(3112), + [sym_binary_expression] = STATE(2594), + [sym_ternary_expression] = STATE(2594), + [sym_unary_expression] = STATE(2594), + [sym_postfix_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(2594), + [sym_arithmetic_expansion] = STATE(2456), + [sym_brace_expression] = STATE(2456), + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(2456), + [sym_translated_string] = STATE(2456), + [sym_number] = STATE(2456), + [sym_simple_expansion] = STATE(2456), + [sym_expansion] = STATE(2456), + [sym_command_substitution] = STATE(2456), + [sym_process_substitution] = STATE(2456), + [aux_sym__literal_repeat1] = STATE(2484), + [aux_sym_concatenation_repeat1] = STATE(2495), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN_RPAREN] = ACTIONS(354), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1175), + [anon_sym_DASH_DASH2] = ACTIONS(1175), + [anon_sym_DASH2] = ACTIONS(1177), + [anon_sym_PLUS2] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), + [aux_sym_concatenation_token1] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1145), + [sym__special_character] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1183), + [sym_ansi_c_string] = ACTIONS(1183), + [aux_sym_number_token1] = ACTIONS(1153), + [aux_sym_number_token2] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1169), + }, + [460] = { + [sym__expression] = STATE(3041), + [sym_binary_expression] = STATE(2594), + [sym_ternary_expression] = STATE(2594), + [sym_unary_expression] = STATE(2594), + [sym_postfix_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(2594), + [sym_arithmetic_expansion] = STATE(2503), + [sym_brace_expression] = STATE(2503), + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(2503), + [sym_translated_string] = STATE(2503), + [sym_number] = STATE(2503), + [sym_simple_expansion] = STATE(2503), + [sym_expansion] = STATE(2503), + [sym_command_substitution] = STATE(2503), + [sym_process_substitution] = STATE(2503), + [aux_sym__literal_repeat1] = STATE(2717), + [aux_sym_concatenation_repeat1] = STATE(2466), + [sym_word] = ACTIONS(1187), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_RBRACK_RBRACK] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1191), + [anon_sym_DASH_DASH2] = ACTIONS(1191), + [anon_sym_DASH2] = ACTIONS(1193), + [anon_sym_PLUS2] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), + [aux_sym_concatenation_token1] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1145), + [sym__special_character] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1199), + [sym_ansi_c_string] = ACTIONS(1199), + [aux_sym_number_token1] = ACTIONS(1153), + [aux_sym_number_token2] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1201), + [sym__brace_start] = ACTIONS(1169), + }, + [461] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1205), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [462] = { + [sym__expression] = STATE(2933), + [sym_binary_expression] = STATE(2863), + [sym_ternary_expression] = STATE(2863), + [sym_unary_expression] = STATE(2863), + [sym_postfix_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_arithmetic_expansion] = STATE(2451), + [sym_brace_expression] = STATE(2451), + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2451), + [sym_translated_string] = STATE(2451), + [sym_number] = STATE(2451), + [sym_simple_expansion] = STATE(2451), + [sym_expansion] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2472), + [aux_sym_concatenation_repeat1] = STATE(2540), + [sym_word] = ACTIONS(1091), + [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1099), + [anon_sym_DASH_DASH2] = ACTIONS(1099), + [anon_sym_DASH2] = ACTIONS(1101), + [anon_sym_PLUS2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(367), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_raw_string] = ACTIONS(1109), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(375), + [aux_sym_number_token2] = ACTIONS(377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), + [anon_sym_LT_LPAREN] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(387), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1209), + [sym_test_operator] = ACTIONS(1113), + [sym__brace_start] = ACTIONS(391), + }, + [463] = { + [sym__expression] = STATE(3197), + [sym_binary_expression] = STATE(2594), + [sym_ternary_expression] = STATE(2594), + [sym_unary_expression] = STATE(2594), + [sym_postfix_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(2594), + [sym_arithmetic_expansion] = STATE(2588), + [sym_brace_expression] = STATE(2588), + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(2588), + [sym_translated_string] = STATE(2588), + [sym_number] = STATE(2588), + [sym_simple_expansion] = STATE(2588), + [sym_expansion] = STATE(2588), + [sym_command_substitution] = STATE(2588), + [sym_process_substitution] = STATE(2588), + [aux_sym__literal_repeat1] = STATE(2484), + [aux_sym_concatenation_repeat1] = STATE(2723), + [sym_word] = ACTIONS(1211), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(354), + [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_PLUS_PLUS2] = ACTIONS(1215), + [anon_sym_DASH_DASH2] = ACTIONS(1215), + [anon_sym_DASH2] = ACTIONS(1217), + [anon_sym_PLUS2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), + [aux_sym_concatenation_token1] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1145), + [sym__special_character] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1223), + [sym_ansi_c_string] = ACTIONS(1223), + [aux_sym_number_token1] = ACTIONS(1153), + [aux_sym_number_token2] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1225), + [sym__brace_start] = ACTIONS(1169), + }, + [464] = { + [sym_string] = STATE(489), + [sym_word] = ACTIONS(1227), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_GT_PIPE] = ACTIONS(1227), + [anon_sym_LT_AMP_DASH] = ACTIONS(1227), + [anon_sym_GT_AMP_DASH] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1227), + [sym_ansi_c_string] = ACTIONS(1227), + [aux_sym_number_token1] = ACTIONS(1227), + [aux_sym_number_token2] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1233), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1233), + [anon_sym_AT2] = ACTIONS(1229), + [anon_sym_0] = ACTIONS(1229), + [anon_sym__] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1235), + [sym__bare_dollar] = ACTIONS(1235), + [sym__brace_start] = ACTIONS(1235), + }, + [465] = { + [sym_string] = STATE(489), + [sym_word] = ACTIONS(1239), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_SEMI_SEMI] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_GT_PIPE] = ACTIONS(1239), + [anon_sym_LT_AMP_DASH] = ACTIONS(1239), + [anon_sym_GT_AMP_DASH] = ACTIONS(1239), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1239), + [anon_sym_LT_LT_LT] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1239), + [sym_ansi_c_string] = ACTIONS(1239), + [aux_sym_number_token1] = ACTIONS(1239), + [aux_sym_number_token2] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1239), + [anon_sym_LT_LPAREN] = ACTIONS(1239), + [anon_sym_GT_LPAREN] = ACTIONS(1239), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1233), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1233), + [anon_sym_AT2] = ACTIONS(1229), + [anon_sym_0] = ACTIONS(1229), + [anon_sym__] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1241), + [sym__bare_dollar] = ACTIONS(1241), + [sym__brace_start] = ACTIONS(1241), + }, + [466] = { + [sym_string] = STATE(503), + [sym_word] = ACTIONS(1227), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_GT_PIPE] = ACTIONS(1227), + [anon_sym_LT_AMP_DASH] = ACTIONS(1227), + [anon_sym_GT_AMP_DASH] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym__special_character] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1227), + [sym_ansi_c_string] = ACTIONS(1227), + [aux_sym_number_token1] = ACTIONS(1227), + [aux_sym_number_token2] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1247), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1247), + [anon_sym_AT2] = ACTIONS(1243), + [anon_sym_0] = ACTIONS(1243), + [anon_sym__] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1249), + [sym_test_operator] = ACTIONS(1235), + [sym__bare_dollar] = ACTIONS(1235), + [sym__brace_start] = ACTIONS(1235), + }, + [467] = { + [sym_string] = STATE(503), + [sym_word] = ACTIONS(1239), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_GT_PIPE] = ACTIONS(1239), + [anon_sym_LT_AMP_DASH] = ACTIONS(1239), + [anon_sym_GT_AMP_DASH] = ACTIONS(1239), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [anon_sym_LT_LT_LT] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym__special_character] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1239), + [sym_ansi_c_string] = ACTIONS(1239), + [aux_sym_number_token1] = ACTIONS(1239), + [aux_sym_number_token2] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1239), + [anon_sym_LT_LPAREN] = ACTIONS(1239), + [anon_sym_GT_LPAREN] = ACTIONS(1239), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1247), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1247), + [anon_sym_AT2] = ACTIONS(1243), + [anon_sym_0] = ACTIONS(1243), + [anon_sym__] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1249), + [sym_test_operator] = ACTIONS(1241), + [sym__bare_dollar] = ACTIONS(1241), + [sym__brace_start] = ACTIONS(1241), + }, + [468] = { + [aux_sym_concatenation_repeat1] = STATE(468), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_AMP_DASH] = ACTIONS(1251), + [anon_sym_GT_AMP_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1258), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), + }, + [469] = { + [aux_sym_concatenation_repeat1] = STATE(470), + [sym_word] = ACTIONS(1261), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1261), + [anon_sym_LT_AMP_DASH] = ACTIONS(1261), + [anon_sym_GT_AMP_DASH] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_raw_string] = ACTIONS(1261), + [sym_ansi_c_string] = ACTIONS(1261), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(1261), + [anon_sym_GT_LPAREN] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(280), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [470] = { + [aux_sym_concatenation_repeat1] = STATE(468), + [sym_word] = ACTIONS(1265), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_SEMI_SEMI] = ACTIONS(1265), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_AMP_GT] = ACTIONS(1265), + [anon_sym_AMP_GT_GT] = ACTIONS(1265), + [anon_sym_LT_AMP] = ACTIONS(1265), + [anon_sym_GT_AMP] = ACTIONS(1265), + [anon_sym_GT_PIPE] = ACTIONS(1265), + [anon_sym_LT_AMP_DASH] = ACTIONS(1265), + [anon_sym_GT_AMP_DASH] = ACTIONS(1265), + [anon_sym_LT_LT_DASH] = ACTIONS(1265), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1265), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym__special_character] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1265), + [sym_ansi_c_string] = ACTIONS(1265), + [aux_sym_number_token1] = ACTIONS(1265), + [aux_sym_number_token2] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1267), + [sym__concat] = ACTIONS(1269), + [sym_test_operator] = ACTIONS(1267), + [sym__bare_dollar] = ACTIONS(1267), + [sym__brace_start] = ACTIONS(1267), + }, + [471] = { + [aux_sym_concatenation_repeat1] = STATE(473), + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_AMP_DASH] = ACTIONS(1271), + [anon_sym_GT_AMP_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(280), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [472] = { + [aux_sym_concatenation_repeat1] = STATE(473), + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_AMP_DASH] = ACTIONS(1271), + [anon_sym_GT_AMP_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(280), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [473] = { + [aux_sym_concatenation_repeat1] = STATE(468), + [sym_word] = ACTIONS(1286), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1286), + [anon_sym_PERCENT] = ACTIONS(1286), + [anon_sym_STAR_STAR] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_SEMI_SEMI] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_EQ_TILDE] = ACTIONS(1286), + [anon_sym_AMP_GT] = ACTIONS(1286), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1286), + [anon_sym_GT_AMP] = ACTIONS(1286), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [aux_sym_concatenation_token1] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(1286), + [sym__special_character] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_raw_string] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1286), + [aux_sym_number_token2] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), + [anon_sym_BQUOTE] = ACTIONS(1286), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1288), + [sym__concat] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1288), + [sym__brace_start] = ACTIONS(1288), + }, + [474] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_GT_EQ] = ACTIONS(1292), + [anon_sym_AMP_EQ] = ACTIONS(1292), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_SEMI_SEMI] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1292), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1292), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1292), + [anon_sym_LT_AMP_DASH] = ACTIONS(1292), + [anon_sym_GT_AMP_DASH] = ACTIONS(1292), + [anon_sym_LT_LT_DASH] = ACTIONS(1292), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1292), + [aux_sym_concatenation_token1] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_raw_string] = ACTIONS(1292), + [sym_ansi_c_string] = ACTIONS(1292), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), + }, + [475] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1296), + [anon_sym_LT_AMP_DASH] = ACTIONS(1296), + [anon_sym_GT_AMP_DASH] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1296), + [aux_sym_concatenation_token1] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_ansi_c_string] = ACTIONS(1296), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), + }, + [476] = { + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_EQ] = ACTIONS(1300), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1300), + [anon_sym_LT_AMP_DASH] = ACTIONS(1300), + [anon_sym_GT_AMP_DASH] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1300), + [aux_sym_concatenation_token1] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_ansi_c_string] = ACTIONS(1300), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym_test_operator] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), + }, + [477] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_AMP_DASH] = ACTIONS(1304), + [anon_sym_GT_AMP_DASH] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [478] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_EQ] = ACTIONS(1308), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1308), + [anon_sym_LT_AMP_DASH] = ACTIONS(1308), + [anon_sym_GT_AMP_DASH] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), + [aux_sym_concatenation_token1] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1308), + [sym_ansi_c_string] = ACTIONS(1308), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [479] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_AMP_DASH] = ACTIONS(1312), + [anon_sym_GT_AMP_DASH] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [480] = { + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_EQ] = ACTIONS(1316), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1316), + [anon_sym_LT_AMP_DASH] = ACTIONS(1316), + [anon_sym_GT_AMP_DASH] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1316), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), + }, + [481] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1320), + [anon_sym_LT_AMP_DASH] = ACTIONS(1320), + [anon_sym_GT_AMP_DASH] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1320), + [aux_sym_concatenation_token1] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_raw_string] = ACTIONS(1320), + [sym_ansi_c_string] = ACTIONS(1320), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), + [anon_sym_LT_LPAREN] = ACTIONS(1320), + [anon_sym_GT_LPAREN] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), + }, + [482] = { + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_AMP_DASH] = ACTIONS(1251), + [anon_sym_GT_AMP_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1253), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), + }, + [483] = { + [sym_word] = ACTIONS(1324), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_CARET] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_EQ_EQ] = ACTIONS(1324), + [anon_sym_BANG_EQ] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1324), + [anon_sym_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT] = ACTIONS(1324), + [anon_sym_GT_GT] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [anon_sym_STAR_STAR] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_SEMI_SEMI] = ACTIONS(1324), + [anon_sym_PIPE_AMP] = ACTIONS(1324), + [anon_sym_EQ_TILDE] = ACTIONS(1324), + [anon_sym_AMP_GT] = ACTIONS(1324), + [anon_sym_AMP_GT_GT] = ACTIONS(1324), + [anon_sym_LT_AMP] = ACTIONS(1324), + [anon_sym_GT_AMP] = ACTIONS(1324), + [anon_sym_GT_PIPE] = ACTIONS(1324), + [anon_sym_LT_AMP_DASH] = ACTIONS(1324), + [anon_sym_GT_AMP_DASH] = ACTIONS(1324), + [anon_sym_LT_LT_DASH] = ACTIONS(1324), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1324), + [aux_sym_concatenation_token1] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1324), + [sym__special_character] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_raw_string] = ACTIONS(1324), + [sym_ansi_c_string] = ACTIONS(1324), + [aux_sym_number_token1] = ACTIONS(1324), + [aux_sym_number_token2] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), + [anon_sym_LT_LPAREN] = ACTIONS(1324), + [anon_sym_GT_LPAREN] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1326), + [sym__concat] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1326), + [sym__bare_dollar] = ACTIONS(1326), + [sym__brace_start] = ACTIONS(1326), + }, + [484] = { + [sym_word] = ACTIONS(1328), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(1328), + [anon_sym_DASH_EQ] = ACTIONS(1328), + [anon_sym_STAR_EQ] = ACTIONS(1328), + [anon_sym_SLASH_EQ] = ACTIONS(1328), + [anon_sym_PERCENT_EQ] = ACTIONS(1328), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1328), + [anon_sym_LT_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_GT_EQ] = ACTIONS(1328), + [anon_sym_AMP_EQ] = ACTIONS(1328), + [anon_sym_CARET_EQ] = ACTIONS(1328), + [anon_sym_PIPE_EQ] = ACTIONS(1328), + [anon_sym_PIPE_PIPE] = ACTIONS(1328), + [anon_sym_AMP_AMP] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_EQ_EQ] = ACTIONS(1328), + [anon_sym_BANG_EQ] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_EQ] = ACTIONS(1328), + [anon_sym_LT_LT] = ACTIONS(1328), + [anon_sym_GT_GT] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_STAR_STAR] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_SEMI_SEMI] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(1328), + [anon_sym_EQ_TILDE] = ACTIONS(1328), + [anon_sym_AMP_GT] = ACTIONS(1328), + [anon_sym_AMP_GT_GT] = ACTIONS(1328), + [anon_sym_LT_AMP] = ACTIONS(1328), + [anon_sym_GT_AMP] = ACTIONS(1328), + [anon_sym_GT_PIPE] = ACTIONS(1328), + [anon_sym_LT_AMP_DASH] = ACTIONS(1328), + [anon_sym_GT_AMP_DASH] = ACTIONS(1328), + [anon_sym_LT_LT_DASH] = ACTIONS(1328), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1328), + [aux_sym_concatenation_token1] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [sym__special_character] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_raw_string] = ACTIONS(1328), + [sym_ansi_c_string] = ACTIONS(1328), + [aux_sym_number_token1] = ACTIONS(1328), + [aux_sym_number_token2] = ACTIONS(1328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), + [anon_sym_LT_LPAREN] = ACTIONS(1328), + [anon_sym_GT_LPAREN] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1330), + [sym__concat] = ACTIONS(1330), + [sym_test_operator] = ACTIONS(1330), + [sym__bare_dollar] = ACTIONS(1330), + [sym__brace_start] = ACTIONS(1330), + }, + [485] = { + [sym_word] = ACTIONS(1332), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_EQ] = ACTIONS(1332), + [anon_sym_DASH_EQ] = ACTIONS(1332), + [anon_sym_STAR_EQ] = ACTIONS(1332), + [anon_sym_SLASH_EQ] = ACTIONS(1332), + [anon_sym_PERCENT_EQ] = ACTIONS(1332), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), + [anon_sym_LT_LT_EQ] = ACTIONS(1332), + [anon_sym_GT_GT_EQ] = ACTIONS(1332), + [anon_sym_AMP_EQ] = ACTIONS(1332), + [anon_sym_CARET_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1332), + [anon_sym_PIPE_PIPE] = ACTIONS(1332), + [anon_sym_AMP_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_EQ_EQ] = ACTIONS(1332), + [anon_sym_BANG_EQ] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_EQ] = ACTIONS(1332), + [anon_sym_GT_EQ] = ACTIONS(1332), + [anon_sym_LT_LT] = ACTIONS(1332), + [anon_sym_GT_GT] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1332), + [anon_sym_PERCENT] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_SEMI_SEMI] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(1332), + [anon_sym_EQ_TILDE] = ACTIONS(1332), + [anon_sym_AMP_GT] = ACTIONS(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(1332), + [anon_sym_LT_AMP] = ACTIONS(1332), + [anon_sym_GT_AMP] = ACTIONS(1332), + [anon_sym_GT_PIPE] = ACTIONS(1332), + [anon_sym_LT_AMP_DASH] = ACTIONS(1332), + [anon_sym_GT_AMP_DASH] = ACTIONS(1332), + [anon_sym_LT_LT_DASH] = ACTIONS(1332), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_QMARK] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1332), + [aux_sym_concatenation_token1] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1332), + [sym__special_character] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_raw_string] = ACTIONS(1332), + [sym_ansi_c_string] = ACTIONS(1332), + [aux_sym_number_token1] = ACTIONS(1332), + [aux_sym_number_token2] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1332), + [anon_sym_LT_LPAREN] = ACTIONS(1332), + [anon_sym_GT_LPAREN] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1334), + [sym__concat] = ACTIONS(1334), + [sym_test_operator] = ACTIONS(1334), + [sym__bare_dollar] = ACTIONS(1334), + [sym__brace_start] = ACTIONS(1334), + }, + [486] = { + [sym_word] = ACTIONS(1336), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1336), + [anon_sym_DASH_EQ] = ACTIONS(1336), + [anon_sym_STAR_EQ] = ACTIONS(1336), + [anon_sym_SLASH_EQ] = ACTIONS(1336), + [anon_sym_PERCENT_EQ] = ACTIONS(1336), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1336), + [anon_sym_LT_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_GT_EQ] = ACTIONS(1336), + [anon_sym_AMP_EQ] = ACTIONS(1336), + [anon_sym_CARET_EQ] = ACTIONS(1336), + [anon_sym_PIPE_EQ] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1336), + [anon_sym_BANG_EQ] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_SEMI_SEMI] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_EQ_TILDE] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1336), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_GT_PIPE] = ACTIONS(1336), + [anon_sym_LT_AMP_DASH] = ACTIONS(1336), + [anon_sym_GT_AMP_DASH] = ACTIONS(1336), + [anon_sym_LT_LT_DASH] = ACTIONS(1336), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1336), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1336), + [aux_sym_concatenation_token1] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1336), + [sym__special_character] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [sym_ansi_c_string] = ACTIONS(1336), + [aux_sym_number_token1] = ACTIONS(1336), + [aux_sym_number_token2] = ACTIONS(1336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1338), + [sym__concat] = ACTIONS(1338), + [sym_test_operator] = ACTIONS(1338), + [sym__bare_dollar] = ACTIONS(1338), + [sym__brace_start] = ACTIONS(1338), + }, + [487] = { + [sym_word] = ACTIONS(1340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_EQ] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(1340), + [anon_sym_DASH_EQ] = ACTIONS(1340), + [anon_sym_STAR_EQ] = ACTIONS(1340), + [anon_sym_SLASH_EQ] = ACTIONS(1340), + [anon_sym_PERCENT_EQ] = ACTIONS(1340), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), + [anon_sym_LT_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_GT_EQ] = ACTIONS(1340), + [anon_sym_AMP_EQ] = ACTIONS(1340), + [anon_sym_CARET_EQ] = ACTIONS(1340), + [anon_sym_PIPE_EQ] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_EQ_EQ] = ACTIONS(1340), + [anon_sym_BANG_EQ] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_EQ] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1340), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1340), + [anon_sym_STAR_STAR] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_EQ_TILDE] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1340), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_GT_PIPE] = ACTIONS(1340), + [anon_sym_LT_AMP_DASH] = ACTIONS(1340), + [anon_sym_GT_AMP_DASH] = ACTIONS(1340), + [anon_sym_LT_LT_DASH] = ACTIONS(1340), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_QMARK] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1340), + [aux_sym_concatenation_token1] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1340), + [sym__special_character] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [sym_ansi_c_string] = ACTIONS(1340), + [aux_sym_number_token1] = ACTIONS(1340), + [aux_sym_number_token2] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1342), + [sym__concat] = ACTIONS(1342), + [sym_test_operator] = ACTIONS(1342), + [sym__bare_dollar] = ACTIONS(1342), + [sym__brace_start] = ACTIONS(1342), + }, + [488] = { + [sym_word] = ACTIONS(1344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_EQ] = ACTIONS(1344), + [anon_sym_DASH_EQ] = ACTIONS(1344), + [anon_sym_STAR_EQ] = ACTIONS(1344), + [anon_sym_SLASH_EQ] = ACTIONS(1344), + [anon_sym_PERCENT_EQ] = ACTIONS(1344), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1344), + [anon_sym_LT_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_GT_EQ] = ACTIONS(1344), + [anon_sym_AMP_EQ] = ACTIONS(1344), + [anon_sym_CARET_EQ] = ACTIONS(1344), + [anon_sym_PIPE_EQ] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_CARET] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_EQ_EQ] = ACTIONS(1344), + [anon_sym_BANG_EQ] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_GT] = ACTIONS(1344), + [anon_sym_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1344), + [anon_sym_GT_GT] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_SLASH] = ACTIONS(1344), + [anon_sym_PERCENT] = ACTIONS(1344), + [anon_sym_STAR_STAR] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_SEMI_SEMI] = ACTIONS(1344), + [anon_sym_PIPE_AMP] = ACTIONS(1344), + [anon_sym_EQ_TILDE] = ACTIONS(1344), + [anon_sym_AMP_GT] = ACTIONS(1344), + [anon_sym_AMP_GT_GT] = ACTIONS(1344), + [anon_sym_LT_AMP] = ACTIONS(1344), + [anon_sym_GT_AMP] = ACTIONS(1344), + [anon_sym_GT_PIPE] = ACTIONS(1344), + [anon_sym_LT_AMP_DASH] = ACTIONS(1344), + [anon_sym_GT_AMP_DASH] = ACTIONS(1344), + [anon_sym_LT_LT_DASH] = ACTIONS(1344), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1344), + [aux_sym_concatenation_token1] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_raw_string] = ACTIONS(1344), + [sym_ansi_c_string] = ACTIONS(1344), + [aux_sym_number_token1] = ACTIONS(1344), + [aux_sym_number_token2] = ACTIONS(1344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1344), + [anon_sym_GT_LPAREN] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [sym_test_operator] = ACTIONS(1346), + [sym__bare_dollar] = ACTIONS(1346), + [sym__brace_start] = ACTIONS(1346), + }, + [489] = { + [sym_word] = ACTIONS(1348), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_STAR_STAR] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_EQ_TILDE] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_GT_PIPE] = ACTIONS(1348), + [anon_sym_LT_AMP_DASH] = ACTIONS(1348), + [anon_sym_GT_AMP_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1348), + [aux_sym_concatenation_token1] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [sym__special_character] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [sym_ansi_c_string] = ACTIONS(1348), + [aux_sym_number_token1] = ACTIONS(1348), + [aux_sym_number_token2] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1350), + [sym__concat] = ACTIONS(1350), + [sym_test_operator] = ACTIONS(1350), + [sym__bare_dollar] = ACTIONS(1350), + [sym__brace_start] = ACTIONS(1350), + }, + [490] = { + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_EQ] = ACTIONS(1352), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_SEMI_SEMI] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1352), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1352), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1352), + [anon_sym_LT_AMP_DASH] = ACTIONS(1352), + [anon_sym_GT_AMP_DASH] = ACTIONS(1352), + [anon_sym_LT_LT_DASH] = ACTIONS(1352), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1352), + [aux_sym_concatenation_token1] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1352), + [sym__special_character] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_raw_string] = ACTIONS(1352), + [sym_ansi_c_string] = ACTIONS(1352), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), + [anon_sym_LT_LPAREN] = ACTIONS(1352), + [anon_sym_GT_LPAREN] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1354), + [sym__concat] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1354), + [sym__bare_dollar] = ACTIONS(1354), + [sym__brace_start] = ACTIONS(1354), + }, + [491] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_EQ] = ACTIONS(1308), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1308), + [anon_sym_LT_AMP_DASH] = ACTIONS(1308), + [anon_sym_GT_AMP_DASH] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), + [aux_sym_concatenation_token1] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1308), + [sym_ansi_c_string] = ACTIONS(1308), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [492] = { + [sym_word] = ACTIONS(1356), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_STAR_EQ] = ACTIONS(1356), + [anon_sym_SLASH_EQ] = ACTIONS(1356), + [anon_sym_PERCENT_EQ] = ACTIONS(1356), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), + [anon_sym_LT_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_GT_EQ] = ACTIONS(1356), + [anon_sym_AMP_EQ] = ACTIONS(1356), + [anon_sym_CARET_EQ] = ACTIONS(1356), + [anon_sym_PIPE_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_GT_PIPE] = ACTIONS(1356), + [anon_sym_LT_AMP_DASH] = ACTIONS(1356), + [anon_sym_GT_AMP_DASH] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1356), + [aux_sym_concatenation_token1] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_ansi_c_string] = ACTIONS(1356), + [aux_sym_number_token1] = ACTIONS(1356), + [aux_sym_number_token2] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [sym__bare_dollar] = ACTIONS(1358), + [sym__brace_start] = ACTIONS(1358), + }, + [493] = { + [aux_sym__literal_repeat1] = STATE(494), + [sym_word] = ACTIONS(241), + [anon_sym_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(243), + [anon_sym_GT_GT_EQ] = ACTIONS(243), + [anon_sym_AMP_EQ] = ACTIONS(243), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(243), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_EQ_TILDE] = ACTIONS(245), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [aux_sym_heredoc_redirect_token1] = ACTIONS(278), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym__special_character] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_raw_string] = ACTIONS(241), + [sym_ansi_c_string] = ACTIONS(241), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(278), + [sym_test_operator] = ACTIONS(356), + [sym__bare_dollar] = ACTIONS(278), + [sym__brace_start] = ACTIONS(278), + }, + [494] = { + [aux_sym__literal_repeat1] = STATE(494), + [sym_word] = ACTIONS(1362), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_STAR_EQ] = ACTIONS(1362), + [anon_sym_SLASH_EQ] = ACTIONS(1362), + [anon_sym_PERCENT_EQ] = ACTIONS(1362), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), + [anon_sym_LT_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_GT_EQ] = ACTIONS(1362), + [anon_sym_AMP_EQ] = ACTIONS(1362), + [anon_sym_CARET_EQ] = ACTIONS(1362), + [anon_sym_PIPE_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1362), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_STAR_STAR] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1362), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_GT_PIPE] = ACTIONS(1362), + [anon_sym_LT_AMP_DASH] = ACTIONS(1362), + [anon_sym_GT_AMP_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [sym_ansi_c_string] = ACTIONS(1362), + [aux_sym_number_token1] = ACTIONS(1362), + [aux_sym_number_token2] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1364), + [sym_test_operator] = ACTIONS(1364), + [sym__bare_dollar] = ACTIONS(1364), + [sym__brace_start] = ACTIONS(1364), + }, + [495] = { + [sym_word] = ACTIONS(1261), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1261), + [anon_sym_LT_AMP_DASH] = ACTIONS(1261), + [anon_sym_GT_AMP_DASH] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_raw_string] = ACTIONS(1261), + [sym_ansi_c_string] = ACTIONS(1261), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(1261), + [anon_sym_GT_LPAREN] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [496] = { + [aux_sym_concatenation_repeat1] = STATE(498), + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1281), + [anon_sym_LT_AMP_DASH] = ACTIONS(1281), + [anon_sym_GT_AMP_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [sym_ansi_c_string] = ACTIONS(1281), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(365), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [497] = { + [aux_sym_concatenation_repeat1] = STATE(498), + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1281), + [anon_sym_LT_AMP_DASH] = ACTIONS(1281), + [anon_sym_GT_AMP_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [sym_ansi_c_string] = ACTIONS(1281), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(365), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [498] = { + [aux_sym_concatenation_repeat1] = STATE(501), + [sym_word] = ACTIONS(1286), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_GT_EQ] = ACTIONS(1288), + [anon_sym_AMP_EQ] = ACTIONS(1288), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_PIPE_EQ] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_EQ] = ACTIONS(1288), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1286), + [anon_sym_PERCENT] = ACTIONS(1286), + [anon_sym_STAR_STAR] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(1288), + [anon_sym_RBRACK] = ACTIONS(1288), + [anon_sym_EQ_TILDE] = ACTIONS(1286), + [anon_sym_AMP_GT] = ACTIONS(1286), + [anon_sym_AMP_GT_GT] = ACTIONS(1288), + [anon_sym_LT_AMP] = ACTIONS(1286), + [anon_sym_GT_AMP] = ACTIONS(1286), + [anon_sym_GT_PIPE] = ACTIONS(1288), + [anon_sym_LT_AMP_DASH] = ACTIONS(1288), + [anon_sym_GT_AMP_DASH] = ACTIONS(1288), + [anon_sym_LT_LT_DASH] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1288), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(1286), + [sym__special_character] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_raw_string] = ACTIONS(1288), + [sym_ansi_c_string] = ACTIONS(1288), + [aux_sym_number_token1] = ACTIONS(1286), + [aux_sym_number_token2] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), + [anon_sym_BQUOTE] = ACTIONS(1286), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), + [anon_sym_LT_LPAREN] = ACTIONS(1288), + [anon_sym_GT_LPAREN] = ACTIONS(1288), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1288), + [sym__concat] = ACTIONS(1374), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1288), + [sym__brace_start] = ACTIONS(1288), + }, + [499] = { + [aux_sym_concatenation_repeat1] = STATE(501), + [sym_word] = ACTIONS(1265), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_EQ] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_AMP_GT] = ACTIONS(1265), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1265), + [anon_sym_GT_AMP] = ACTIONS(1265), + [anon_sym_GT_PIPE] = ACTIONS(1267), + [anon_sym_LT_AMP_DASH] = ACTIONS(1267), + [anon_sym_GT_AMP_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1267), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym__special_character] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [sym_ansi_c_string] = ACTIONS(1267), + [aux_sym_number_token1] = ACTIONS(1265), + [aux_sym_number_token2] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1267), + [sym__concat] = ACTIONS(1376), + [sym_test_operator] = ACTIONS(1267), + [sym__bare_dollar] = ACTIONS(1267), + [sym__brace_start] = ACTIONS(1267), + }, + [500] = { + [aux_sym_concatenation_repeat1] = STATE(499), + [sym_word] = ACTIONS(1261), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_AMP_DASH] = ACTIONS(1263), + [anon_sym_GT_AMP_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(365), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [501] = { + [aux_sym_concatenation_repeat1] = STATE(501), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1253), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1253), + [anon_sym_LT_AMP_DASH] = ACTIONS(1253), + [anon_sym_GT_AMP_DASH] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1253), + [aux_sym_concatenation_token1] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_raw_string] = ACTIONS(1253), + [sym_ansi_c_string] = ACTIONS(1253), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1253), + [anon_sym_LT_LPAREN] = ACTIONS(1253), + [anon_sym_GT_LPAREN] = ACTIONS(1253), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1378), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), + }, + [502] = { + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_AMP_DASH] = ACTIONS(1271), + [anon_sym_GT_AMP_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1281), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [503] = { + [sym_word] = ACTIONS(1348), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_STAR_STAR] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_EQ_TILDE] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1350), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_GT_PIPE] = ACTIONS(1350), + [anon_sym_LT_AMP_DASH] = ACTIONS(1350), + [anon_sym_GT_AMP_DASH] = ACTIONS(1350), + [anon_sym_LT_LT_DASH] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1350), + [aux_sym_concatenation_token1] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1348), + [sym__special_character] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_raw_string] = ACTIONS(1350), + [sym_ansi_c_string] = ACTIONS(1350), + [aux_sym_number_token1] = ACTIONS(1348), + [aux_sym_number_token2] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), + [anon_sym_LT_LPAREN] = ACTIONS(1350), + [anon_sym_GT_LPAREN] = ACTIONS(1350), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1350), + [sym__concat] = ACTIONS(1350), + [sym_test_operator] = ACTIONS(1350), + [sym__bare_dollar] = ACTIONS(1350), + [sym__brace_start] = ACTIONS(1350), + }, + [504] = { + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1354), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1354), + [anon_sym_LT_AMP_DASH] = ACTIONS(1354), + [anon_sym_GT_AMP_DASH] = ACTIONS(1354), + [anon_sym_LT_LT_DASH] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1354), + [aux_sym_concatenation_token1] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1352), + [sym__special_character] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_raw_string] = ACTIONS(1354), + [sym_ansi_c_string] = ACTIONS(1354), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), + [anon_sym_LT_LPAREN] = ACTIONS(1354), + [anon_sym_GT_LPAREN] = ACTIONS(1354), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1354), + [sym__concat] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1354), + [sym__bare_dollar] = ACTIONS(1354), + [sym__brace_start] = ACTIONS(1354), + }, + [505] = { + [sym_word] = ACTIONS(1328), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(1328), + [anon_sym_DASH_EQ] = ACTIONS(1328), + [anon_sym_STAR_EQ] = ACTIONS(1328), + [anon_sym_SLASH_EQ] = ACTIONS(1328), + [anon_sym_PERCENT_EQ] = ACTIONS(1328), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1328), + [anon_sym_LT_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_EQ] = ACTIONS(1330), + [anon_sym_CARET_EQ] = ACTIONS(1328), + [anon_sym_PIPE_EQ] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_EQ_EQ] = ACTIONS(1328), + [anon_sym_BANG_EQ] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1328), + [anon_sym_GT_GT] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_STAR_STAR] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(1330), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_EQ_TILDE] = ACTIONS(1328), + [anon_sym_AMP_GT] = ACTIONS(1328), + [anon_sym_AMP_GT_GT] = ACTIONS(1330), + [anon_sym_LT_AMP] = ACTIONS(1328), + [anon_sym_GT_AMP] = ACTIONS(1328), + [anon_sym_GT_PIPE] = ACTIONS(1330), + [anon_sym_LT_AMP_DASH] = ACTIONS(1330), + [anon_sym_GT_AMP_DASH] = ACTIONS(1330), + [anon_sym_LT_LT_DASH] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1330), + [aux_sym_concatenation_token1] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1328), + [sym__special_character] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_raw_string] = ACTIONS(1330), + [sym_ansi_c_string] = ACTIONS(1330), + [aux_sym_number_token1] = ACTIONS(1328), + [aux_sym_number_token2] = ACTIONS(1328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), + [anon_sym_LT_LPAREN] = ACTIONS(1330), + [anon_sym_GT_LPAREN] = ACTIONS(1330), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1330), + [sym__concat] = ACTIONS(1330), + [sym_test_operator] = ACTIONS(1330), + [sym__bare_dollar] = ACTIONS(1330), + [sym__brace_start] = ACTIONS(1330), + }, + [506] = { + [sym_word] = ACTIONS(1344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_EQ] = ACTIONS(1344), + [anon_sym_DASH_EQ] = ACTIONS(1344), + [anon_sym_STAR_EQ] = ACTIONS(1344), + [anon_sym_SLASH_EQ] = ACTIONS(1344), + [anon_sym_PERCENT_EQ] = ACTIONS(1344), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1344), + [anon_sym_LT_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_EQ] = ACTIONS(1346), + [anon_sym_CARET_EQ] = ACTIONS(1344), + [anon_sym_PIPE_EQ] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_CARET] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_EQ_EQ] = ACTIONS(1344), + [anon_sym_BANG_EQ] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_GT] = ACTIONS(1344), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1344), + [anon_sym_GT_GT] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_SLASH] = ACTIONS(1344), + [anon_sym_PERCENT] = ACTIONS(1344), + [anon_sym_STAR_STAR] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_RBRACK] = ACTIONS(1346), + [anon_sym_EQ_TILDE] = ACTIONS(1344), + [anon_sym_AMP_GT] = ACTIONS(1344), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1344), + [anon_sym_GT_AMP] = ACTIONS(1344), + [anon_sym_GT_PIPE] = ACTIONS(1346), + [anon_sym_LT_AMP_DASH] = ACTIONS(1346), + [anon_sym_GT_AMP_DASH] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1346), + [aux_sym_concatenation_token1] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [sym_ansi_c_string] = ACTIONS(1346), + [aux_sym_number_token1] = ACTIONS(1344), + [aux_sym_number_token2] = ACTIONS(1344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [sym_test_operator] = ACTIONS(1346), + [sym__bare_dollar] = ACTIONS(1346), + [sym__brace_start] = ACTIONS(1346), + }, + [507] = { + [sym_word] = ACTIONS(1356), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_STAR_EQ] = ACTIONS(1356), + [anon_sym_SLASH_EQ] = ACTIONS(1356), + [anon_sym_PERCENT_EQ] = ACTIONS(1356), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1356), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_GT_PIPE] = ACTIONS(1358), + [anon_sym_LT_AMP_DASH] = ACTIONS(1358), + [anon_sym_GT_AMP_DASH] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1358), + [aux_sym_concatenation_token1] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_ansi_c_string] = ACTIONS(1358), + [aux_sym_number_token1] = ACTIONS(1356), + [aux_sym_number_token2] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [sym__bare_dollar] = ACTIONS(1358), + [sym__brace_start] = ACTIONS(1358), + }, + [508] = { + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1302), + [anon_sym_GT_GT_EQ] = ACTIONS(1302), + [anon_sym_AMP_EQ] = ACTIONS(1302), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1302), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1302), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1302), + [anon_sym_LT_AMP_DASH] = ACTIONS(1302), + [anon_sym_GT_AMP_DASH] = ACTIONS(1302), + [anon_sym_LT_LT_DASH] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1302), + [aux_sym_concatenation_token1] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_raw_string] = ACTIONS(1302), + [sym_ansi_c_string] = ACTIONS(1302), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym_test_operator] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), + }, + [509] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_AMP_DASH] = ACTIONS(1322), + [anon_sym_GT_AMP_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), + }, + [510] = { + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_AMP_DASH] = ACTIONS(1318), + [anon_sym_GT_AMP_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), + }, + [511] = { + [sym_word] = ACTIONS(1336), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1336), + [anon_sym_DASH_EQ] = ACTIONS(1336), + [anon_sym_STAR_EQ] = ACTIONS(1336), + [anon_sym_SLASH_EQ] = ACTIONS(1336), + [anon_sym_PERCENT_EQ] = ACTIONS(1336), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1336), + [anon_sym_LT_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_GT_EQ] = ACTIONS(1338), + [anon_sym_AMP_EQ] = ACTIONS(1338), + [anon_sym_CARET_EQ] = ACTIONS(1336), + [anon_sym_PIPE_EQ] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1336), + [anon_sym_BANG_EQ] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_EQ_TILDE] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1336), + [anon_sym_AMP_GT_GT] = ACTIONS(1338), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_GT_PIPE] = ACTIONS(1338), + [anon_sym_LT_AMP_DASH] = ACTIONS(1338), + [anon_sym_GT_AMP_DASH] = ACTIONS(1338), + [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1338), + [aux_sym_concatenation_token1] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(1336), + [sym__special_character] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_raw_string] = ACTIONS(1338), + [sym_ansi_c_string] = ACTIONS(1338), + [aux_sym_number_token1] = ACTIONS(1336), + [aux_sym_number_token2] = ACTIONS(1336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), + [anon_sym_LT_LPAREN] = ACTIONS(1338), + [anon_sym_GT_LPAREN] = ACTIONS(1338), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1338), + [sym__concat] = ACTIONS(1338), + [sym_test_operator] = ACTIONS(1338), + [sym__bare_dollar] = ACTIONS(1338), + [sym__brace_start] = ACTIONS(1338), + }, + [512] = { + [sym_word] = ACTIONS(1324), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_CARET] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_EQ_EQ] = ACTIONS(1324), + [anon_sym_BANG_EQ] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1324), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1324), + [anon_sym_GT_GT] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [anon_sym_STAR_STAR] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1324), + [anon_sym_AMP_GT] = ACTIONS(1324), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1324), + [anon_sym_GT_AMP] = ACTIONS(1324), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_AMP_DASH] = ACTIONS(1326), + [anon_sym_GT_AMP_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1324), + [sym__special_character] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1324), + [aux_sym_number_token2] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1326), + [sym__concat] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1326), + [sym__bare_dollar] = ACTIONS(1326), + [sym__brace_start] = ACTIONS(1326), + }, + [513] = { + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1253), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1253), + [anon_sym_LT_AMP_DASH] = ACTIONS(1253), + [anon_sym_GT_AMP_DASH] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1253), + [aux_sym_concatenation_token1] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_raw_string] = ACTIONS(1253), + [sym_ansi_c_string] = ACTIONS(1253), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1253), + [anon_sym_LT_LPAREN] = ACTIONS(1253), + [anon_sym_GT_LPAREN] = ACTIONS(1253), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1253), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), + }, + [514] = { + [sym_word] = ACTIONS(1332), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_EQ] = ACTIONS(1332), + [anon_sym_DASH_EQ] = ACTIONS(1332), + [anon_sym_STAR_EQ] = ACTIONS(1332), + [anon_sym_SLASH_EQ] = ACTIONS(1332), + [anon_sym_PERCENT_EQ] = ACTIONS(1332), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), + [anon_sym_LT_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_GT_EQ] = ACTIONS(1334), + [anon_sym_AMP_EQ] = ACTIONS(1334), + [anon_sym_CARET_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_EQ_EQ] = ACTIONS(1332), + [anon_sym_BANG_EQ] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_LT] = ACTIONS(1332), + [anon_sym_GT_GT] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1332), + [anon_sym_PERCENT] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_EQ_TILDE] = ACTIONS(1332), + [anon_sym_AMP_GT] = ACTIONS(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(1334), + [anon_sym_LT_AMP] = ACTIONS(1332), + [anon_sym_GT_AMP] = ACTIONS(1332), + [anon_sym_GT_PIPE] = ACTIONS(1334), + [anon_sym_LT_AMP_DASH] = ACTIONS(1334), + [anon_sym_GT_AMP_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), + [aux_sym_concatenation_token1] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1332), + [sym__special_character] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_raw_string] = ACTIONS(1334), + [sym_ansi_c_string] = ACTIONS(1334), + [aux_sym_number_token1] = ACTIONS(1332), + [aux_sym_number_token2] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), + [anon_sym_LT_LPAREN] = ACTIONS(1334), + [anon_sym_GT_LPAREN] = ACTIONS(1334), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1334), + [sym__concat] = ACTIONS(1334), + [sym_test_operator] = ACTIONS(1334), + [sym__bare_dollar] = ACTIONS(1334), + [sym__brace_start] = ACTIONS(1334), + }, + [515] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_AMP_DASH] = ACTIONS(1294), + [anon_sym_GT_AMP_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), + }, + [516] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_AMP_DASH] = ACTIONS(1298), + [anon_sym_GT_AMP_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), + }, + [517] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_AMP_DASH] = ACTIONS(1310), + [anon_sym_GT_AMP_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [518] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_EQ] = ACTIONS(1306), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1306), + [anon_sym_LT_AMP_DASH] = ACTIONS(1306), + [anon_sym_GT_AMP_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), + [aux_sym_concatenation_token1] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1306), + [sym_ansi_c_string] = ACTIONS(1306), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [519] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_AMP_DASH] = ACTIONS(1310), + [anon_sym_GT_AMP_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [520] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_AMP_DASH] = ACTIONS(1314), + [anon_sym_GT_AMP_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [521] = { + [sym_word] = ACTIONS(1340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(1340), + [anon_sym_DASH_EQ] = ACTIONS(1340), + [anon_sym_STAR_EQ] = ACTIONS(1340), + [anon_sym_SLASH_EQ] = ACTIONS(1340), + [anon_sym_PERCENT_EQ] = ACTIONS(1340), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), + [anon_sym_LT_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_EQ] = ACTIONS(1342), + [anon_sym_CARET_EQ] = ACTIONS(1340), + [anon_sym_PIPE_EQ] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_EQ_EQ] = ACTIONS(1340), + [anon_sym_BANG_EQ] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT] = ACTIONS(1340), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1340), + [anon_sym_STAR_STAR] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_EQ_TILDE] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1340), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_GT_PIPE] = ACTIONS(1342), + [anon_sym_LT_AMP_DASH] = ACTIONS(1342), + [anon_sym_GT_AMP_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), + [aux_sym_concatenation_token1] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1340), + [sym__special_character] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [sym_ansi_c_string] = ACTIONS(1342), + [aux_sym_number_token1] = ACTIONS(1340), + [aux_sym_number_token2] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1342), + [sym__concat] = ACTIONS(1342), + [sym_test_operator] = ACTIONS(1342), + [sym__bare_dollar] = ACTIONS(1342), + [sym__brace_start] = ACTIONS(1342), + }, + [522] = { + [aux_sym__literal_repeat1] = STATE(523), + [sym_word] = ACTIONS(241), + [anon_sym_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(243), + [anon_sym_LT_LT_EQ] = ACTIONS(354), + [anon_sym_GT_GT_EQ] = ACTIONS(354), + [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_CARET_EQ] = ACTIONS(243), + [anon_sym_PIPE_EQ] = ACTIONS(354), + [anon_sym_PIPE_PIPE] = ACTIONS(356), + [anon_sym_AMP_AMP] = ACTIONS(356), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(354), + [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_STAR_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_PIPE_AMP] = ACTIONS(278), + [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_EQ_TILDE] = ACTIONS(245), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(278), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(278), + [anon_sym_LT_AMP_DASH] = ACTIONS(278), + [anon_sym_GT_AMP_DASH] = ACTIONS(278), + [anon_sym_LT_LT_DASH] = ACTIONS(278), + [anon_sym_LT_LT_LT] = ACTIONS(278), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(278), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym__special_character] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(278), + [sym_raw_string] = ACTIONS(278), + [sym_ansi_c_string] = ACTIONS(278), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(278), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(278), + [anon_sym_LT_LPAREN] = ACTIONS(278), + [anon_sym_GT_LPAREN] = ACTIONS(278), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(278), + [sym_test_operator] = ACTIONS(356), + [sym__bare_dollar] = ACTIONS(278), + [sym__brace_start] = ACTIONS(278), + }, + [523] = { + [aux_sym__literal_repeat1] = STATE(523), + [sym_word] = ACTIONS(1362), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_STAR_EQ] = ACTIONS(1362), + [anon_sym_SLASH_EQ] = ACTIONS(1362), + [anon_sym_PERCENT_EQ] = ACTIONS(1362), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1362), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1362), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_STAR_STAR] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1362), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_GT_PIPE] = ACTIONS(1364), + [anon_sym_LT_AMP_DASH] = ACTIONS(1364), + [anon_sym_GT_AMP_DASH] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [sym_ansi_c_string] = ACTIONS(1364), + [aux_sym_number_token1] = ACTIONS(1362), + [aux_sym_number_token2] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1364), + [sym_test_operator] = ACTIONS(1364), + [sym__bare_dollar] = ACTIONS(1364), + [sym__brace_start] = ACTIONS(1364), + }, + [524] = { + [sym_word] = ACTIONS(1271), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1281), + [anon_sym_LT_AMP_DASH] = ACTIONS(1281), + [anon_sym_GT_AMP_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [sym_ansi_c_string] = ACTIONS(1281), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1281), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1281), + [sym__brace_start] = ACTIONS(1281), + }, + [525] = { + [sym_word] = ACTIONS(1261), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_AMP_DASH] = ACTIONS(1263), + [anon_sym_GT_AMP_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [526] = { + [sym_subshell] = STATE(5014), + [sym_test_command] = STATE(5014), + [sym_command] = STATE(5026), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(1974), + [sym_subscript] = STATE(6754), + [sym_file_redirect] = STATE(3581), + [sym_herestring_redirect] = STATE(3581), + [sym__expression] = STATE(3100), + [sym_binary_expression] = STATE(3053), + [sym_ternary_expression] = STATE(3053), + [sym_unary_expression] = STATE(3053), + [sym_postfix_expression] = STATE(3053), + [sym_parenthesized_expression] = STATE(3053), + [sym_arithmetic_expansion] = STATE(472), + [sym_brace_expression] = STATE(472), + [sym_concatenation] = STATE(502), + [sym_string] = STATE(472), + [sym_translated_string] = STATE(472), + [sym_number] = STATE(472), + [sym_simple_expansion] = STATE(472), + [sym_expansion] = STATE(472), + [sym_command_substitution] = STATE(472), + [sym_process_substitution] = STATE(472), + [aux_sym_command_repeat1] = STATE(951), + [aux_sym__literal_repeat1] = STATE(493), + [sym_word] = ACTIONS(1386), + [anon_sym_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1390), + [anon_sym_LT_AMP] = ACTIONS(1388), + [anon_sym_GT_AMP] = ACTIONS(1388), + [anon_sym_GT_PIPE] = ACTIONS(1390), + [anon_sym_LT_AMP_DASH] = ACTIONS(1392), + [anon_sym_GT_AMP_DASH] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_PLUS_PLUS2] = ACTIONS(103), + [anon_sym_DASH_DASH2] = ACTIONS(103), + [anon_sym_DASH2] = ACTIONS(105), + [anon_sym_PLUS2] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), + [sym__special_character] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_raw_string] = ACTIONS(119), + [sym_ansi_c_string] = ACTIONS(119), + [aux_sym_number_token1] = ACTIONS(121), + [aux_sym_number_token2] = ACTIONS(123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(127), + [anon_sym_BQUOTE] = ACTIONS(129), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(131), + [anon_sym_LT_LPAREN] = ACTIONS(133), + [anon_sym_GT_LPAREN] = ACTIONS(133), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(139), + [sym__brace_start] = ACTIONS(141), + }, + [527] = { + [sym_subshell] = STATE(5623), + [sym_test_command] = STATE(5623), + [sym_command] = STATE(5624), + [sym_command_name] = STATE(620), + [sym_variable_assignment] = STATE(2941), + [sym_subscript] = STATE(6756), + [sym_file_redirect] = STATE(3581), + [sym_herestring_redirect] = STATE(3581), + [sym__expression] = STATE(3011), + [sym_binary_expression] = STATE(3071), + [sym_ternary_expression] = STATE(3071), + [sym_unary_expression] = STATE(3071), + [sym_postfix_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym_arithmetic_expansion] = STATE(496), + [sym_brace_expression] = STATE(496), + [sym_concatenation] = STATE(524), + [sym_string] = STATE(496), + [sym_translated_string] = STATE(496), + [sym_number] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_command_repeat1] = STATE(955), + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(1398), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_AMP_GT] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1390), + [anon_sym_LT_AMP] = ACTIONS(1388), + [anon_sym_GT_AMP] = ACTIONS(1388), + [anon_sym_GT_PIPE] = ACTIONS(1390), + [anon_sym_LT_AMP_DASH] = ACTIONS(1392), + [anon_sym_GT_AMP_DASH] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 1, + anon_sym_LPAREN, + ACTIONS(1410), 1, + anon_sym_LT_LT_LT, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + sym__special_character, + ACTIONS(1418), 1, + anon_sym_DQUOTE, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1424), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__bare_dollar, + ACTIONS(1438), 1, + sym__brace_start, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1045), 1, + aux_sym__literal_repeat1, + STATE(1181), 1, + sym_herestring_redirect, + STATE(1182), 1, + sym_concatenation, + STATE(4991), 1, sym_subshell, - ACTIONS(1334), 2, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1338), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1340), 2, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1332), 3, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(729), 9, + STATE(874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63475,7 +76601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 22, + ACTIONS(1404), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63501,63 +76627,63 @@ static const uint16_t ts_small_parse_table[] = { [120] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1342), 1, + ACTIONS(1410), 1, anon_sym_LT_LT_LT, - ACTIONS(1344), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1346), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1348), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1350), 1, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1352), 1, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1354), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1358), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1360), 1, + ACTIONS(1436), 1, sym__bare_dollar, - STATE(435), 1, + ACTIONS(1438), 1, + sym__brace_start, + STATE(535), 1, aux_sym_command_repeat2, - STATE(867), 1, + STATE(1045), 1, aux_sym__literal_repeat1, - STATE(977), 1, - sym_concatenation, - STATE(979), 1, + STATE(1181), 1, sym_herestring_redirect, - STATE(3938), 1, + STATE(1182), 1, + sym_concatenation, + STATE(4977), 1, sym_subshell, - ACTIONS(1334), 2, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1338), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1356), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1364), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 3, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(729), 9, + STATE(874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63567,7 +76693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 22, + ACTIONS(1440), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63593,63 +76719,63 @@ static const uint16_t ts_small_parse_table[] = { [240] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(1372), 1, + anon_sym_LPAREN, + ACTIONS(1450), 1, anon_sym_LT_LT_LT, - ACTIONS(1374), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1376), 1, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1382), 1, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1384), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1388), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1390), 1, + ACTIONS(1476), 1, sym__bare_dollar, - STATE(440), 1, + ACTIONS(1478), 1, + sym__brace_start, + STATE(542), 1, aux_sym_command_repeat2, - STATE(951), 1, + STATE(1175), 1, aux_sym__literal_repeat1, - STATE(1178), 1, - sym_herestring_redirect, - STATE(1179), 1, + STATE(1328), 1, sym_concatenation, - STATE(3952), 1, + STATE(1329), 1, + sym_herestring_redirect, + STATE(5116), 1, sym_subshell, - ACTIONS(1340), 2, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1368), 2, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1370), 2, + ACTIONS(1448), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1386), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1366), 3, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(764), 9, + STATE(985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63659,7 +76785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 21, + ACTIONS(1404), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63684,63 +76810,63 @@ static const uint16_t ts_small_parse_table[] = { [359] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(1372), 1, + anon_sym_LPAREN, + ACTIONS(1450), 1, anon_sym_LT_LT_LT, - ACTIONS(1374), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1376), 1, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1382), 1, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1384), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1388), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1390), 1, + ACTIONS(1476), 1, sym__bare_dollar, - STATE(444), 1, + ACTIONS(1478), 1, + sym__brace_start, + STATE(547), 1, aux_sym_command_repeat2, - STATE(951), 1, + STATE(1175), 1, aux_sym__literal_repeat1, - STATE(1178), 1, - sym_herestring_redirect, - STATE(1179), 1, + STATE(1328), 1, sym_concatenation, - STATE(3938), 1, + STATE(1329), 1, + sym_herestring_redirect, + STATE(5111), 1, sym_subshell, - ACTIONS(1364), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1368), 2, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1370), 2, + ACTIONS(1448), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1386), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1366), 3, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(764), 9, + STATE(985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63750,7 +76876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 21, + ACTIONS(1440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63775,60 +76901,60 @@ static const uint16_t ts_small_parse_table[] = { [478] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, + ACTIONS(1491), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1405), 1, + ACTIONS(1493), 1, anon_sym_LT_LT_LT, - ACTIONS(1408), 1, + ACTIONS(1496), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1411), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1414), 1, + ACTIONS(1502), 1, sym__special_character, - ACTIONS(1417), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1508), 1, aux_sym_number_token1, - ACTIONS(1423), 1, + ACTIONS(1511), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(1514), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1429), 1, + ACTIONS(1517), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1432), 1, + ACTIONS(1520), 1, anon_sym_BQUOTE, - ACTIONS(1435), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1441), 1, + ACTIONS(1529), 1, sym_file_descriptor, - ACTIONS(1444), 1, + ACTIONS(1532), 1, sym_test_operator, - ACTIONS(1447), 1, + ACTIONS(1535), 1, sym__bare_dollar, - ACTIONS(1450), 1, + ACTIONS(1538), 1, sym__brace_start, - STATE(430), 1, + STATE(532), 1, aux_sym_command_repeat2, - STATE(867), 1, + STATE(1045), 1, aux_sym__literal_repeat1, - STATE(977), 1, - sym_concatenation, - STATE(979), 1, + STATE(1181), 1, sym_herestring_redirect, - ACTIONS(1395), 2, + STATE(1182), 1, + sym_concatenation, + ACTIONS(1483), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1400), 2, + ACTIONS(1488), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1438), 2, + ACTIONS(1526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 3, + ACTIONS(1480), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(729), 9, + STATE(874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63838,7 +76964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1398), 22, + ACTIONS(1486), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63866,61 +76992,61 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1459), 1, + ACTIONS(1547), 1, anon_sym_LT_LT_LT, - ACTIONS(1461), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1463), 1, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, sym__special_character, - ACTIONS(1465), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1475), 1, + ACTIONS(1571), 1, sym_test_operator, - ACTIONS(1477), 1, + ACTIONS(1573), 1, sym__bare_dollar, - STATE(454), 1, + ACTIONS(1575), 1, + sym__brace_start, + STATE(566), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(4006), 1, + STATE(1716), 1, + sym_concatenation, + STATE(4911), 1, sym_subshell, - ACTIONS(1340), 2, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1457), 2, + ACTIONS(1545), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1473), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1453), 3, + ACTIONS(1541), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(835), 9, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63930,7 +77056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 20, + ACTIONS(1404), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63951,62 +77077,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [712] = 26, + [712] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1342), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1583), 1, anon_sym_LT_LT_LT, - ACTIONS(1344), 1, + ACTIONS(1585), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1346), 1, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1589), 1, sym__special_character, - ACTIONS(1348), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - ACTIONS(1350), 1, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1352), 1, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1601), 1, anon_sym_BQUOTE, - ACTIONS(1354), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1358), 1, + ACTIONS(1607), 1, sym_test_operator, - ACTIONS(1360), 1, + ACTIONS(1609), 1, sym__bare_dollar, - STATE(430), 1, + ACTIONS(1611), 1, + sym__brace_start, + STATE(557), 1, aux_sym_command_repeat2, - STATE(867), 1, + STATE(1431), 1, aux_sym__literal_repeat1, - STATE(977), 1, + STATE(1521), 1, sym_concatenation, - STATE(979), 1, + STATE(1552), 1, sym_herestring_redirect, - ACTIONS(1334), 2, + STATE(4911), 1, + sym_subshell, + ACTIONS(1579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1338), 2, + ACTIONS(1581), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1356), 2, + ACTIONS(1605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1481), 2, + ACTIONS(1408), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 3, + ACTIONS(1577), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(729), 9, + STATE(1093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64016,7 +77147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 22, + ACTIONS(1404), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64026,10 +77157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64039,67 +77167,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [826] = 28, + [830] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1489), 1, + ACTIONS(1410), 1, anon_sym_LT_LT_LT, - ACTIONS(1491), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1495), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1499), 1, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1501), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1505), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1507), 1, + ACTIONS(1436), 1, sym__bare_dollar, - STATE(460), 1, + ACTIONS(1438), 1, + sym__brace_start, + STATE(532), 1, aux_sym_command_repeat2, - STATE(1148), 1, + STATE(1045), 1, aux_sym__literal_repeat1, - STATE(1325), 1, - sym_concatenation, - STATE(1335), 1, + STATE(1181), 1, sym_herestring_redirect, - STATE(4006), 1, - sym_subshell, - ACTIONS(1485), 2, + STATE(1182), 1, + sym_concatenation, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1487), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1503), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1340), 3, + ACTIONS(1615), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1483), 3, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(875), 9, + STATE(874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64109,7 +77232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 19, + ACTIONS(1613), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64119,7 +77242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64134,62 +77260,61 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1489), 1, + ACTIONS(1547), 1, anon_sym_LT_LT_LT, - ACTIONS(1491), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, sym__special_character, - ACTIONS(1495), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1499), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1501), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1505), 1, + ACTIONS(1571), 1, sym_test_operator, - ACTIONS(1507), 1, + ACTIONS(1573), 1, sym__bare_dollar, - STATE(455), 1, + ACTIONS(1575), 1, + sym__brace_start, + STATE(561), 1, aux_sym_command_repeat2, - STATE(1148), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1325), 1, - sym_concatenation, - STATE(1335), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(3923), 1, + STATE(1716), 1, + sym_concatenation, + STATE(4952), 1, sym_subshell, - ACTIONS(1485), 2, + ACTIONS(1442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1487), 2, + ACTIONS(1545), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1503), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1364), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1483), 3, + ACTIONS(1541), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(875), 9, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64199,7 +77324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 19, + ACTIONS(1440), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64209,6 +77334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -64219,62 +77345,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1062] = 26, + [1062] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1342), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1583), 1, anon_sym_LT_LT_LT, - ACTIONS(1344), 1, + ACTIONS(1585), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1346), 1, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1589), 1, sym__special_character, - ACTIONS(1348), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - ACTIONS(1350), 1, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1352), 1, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1601), 1, anon_sym_BQUOTE, - ACTIONS(1354), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1358), 1, + ACTIONS(1607), 1, sym_test_operator, - ACTIONS(1360), 1, + ACTIONS(1609), 1, sym__bare_dollar, - STATE(430), 1, + ACTIONS(1611), 1, + sym__brace_start, + STATE(560), 1, aux_sym_command_repeat2, - STATE(867), 1, + STATE(1431), 1, aux_sym__literal_repeat1, - STATE(977), 1, + STATE(1521), 1, sym_concatenation, - STATE(979), 1, + STATE(1552), 1, sym_herestring_redirect, - ACTIONS(1334), 2, + STATE(4952), 1, + sym_subshell, + ACTIONS(1579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1338), 2, + ACTIONS(1581), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1356), 2, + ACTIONS(1605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1511), 2, + ACTIONS(1442), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 3, + ACTIONS(1577), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(729), 9, + STATE(1093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64284,21 +77415,72 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 22, + ACTIONS(1440), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1180] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1619), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + sym_variable_name, + STATE(868), 1, + sym_string, + ACTIONS(1621), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1617), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -64307,66 +77489,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1176] = 28, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [1258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(1619), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + sym_variable_name, + STATE(868), 1, + sym_string, + ACTIONS(1621), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1617), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(314), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(316), 1, aux_sym_number_token2, - ACTIONS(320), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1459), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [1336] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 1, anon_sym_LT_LT_LT, - ACTIONS(1461), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1463), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1465), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1475), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1477), 1, + ACTIONS(1436), 1, sym__bare_dollar, - STATE(458), 1, + ACTIONS(1438), 1, + sym__brace_start, + STATE(532), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1045), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1181), 1, sym_herestring_redirect, - STATE(3923), 1, - sym_subshell, - ACTIONS(1364), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + STATE(1182), 1, + sym_concatenation, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1457), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1473), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1453), 3, + ACTIONS(1627), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(835), 9, + STATE(874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64376,7 +77640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 20, + ACTIONS(1625), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64386,8 +77650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64397,66 +77663,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1294] = 28, + [1450] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(1491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1638), 1, + anon_sym_LT_LT_LT, + ACTIONS(1641), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1644), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1647), 1, + sym__special_character, + ACTIONS(1650), 1, + anon_sym_DQUOTE, + ACTIONS(1653), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1656), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1662), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1665), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1668), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(1517), 1, - anon_sym_LT_LT_LT, - ACTIONS(1519), 1, - sym__special_character, - ACTIONS(1521), 1, + ACTIONS(1674), 1, + sym_file_descriptor, + ACTIONS(1677), 1, sym_test_operator, - STATE(470), 1, + ACTIONS(1680), 1, + sym__bare_dollar, + ACTIONS(1683), 1, + sym__brace_start, + STATE(541), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1175), 1, aux_sym__literal_repeat1, - STATE(1314), 1, + STATE(1328), 1, sym_concatenation, - STATE(1324), 1, + STATE(1329), 1, sym_herestring_redirect, - STATE(4006), 1, - sym_subshell, - ACTIONS(1340), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(1632), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1515), 2, + ACTIONS(1635), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(1671), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1629), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64466,7 +77729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 19, + ACTIONS(1486), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64477,6 +77740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64486,50 +77751,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1411] = 7, + [1565] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(1450), 1, + anon_sym_LT_LT_LT, + ACTIONS(1452), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1456), 1, + sym__special_character, + ACTIONS(1458), 1, anon_sym_DQUOTE, - STATE(735), 1, - sym_string, - ACTIONS(1525), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1468), 1, + anon_sym_BQUOTE, + ACTIONS(1470), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1474), 1, sym_test_operator, + ACTIONS(1476), 1, sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1523), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 42, + STATE(541), 1, + aux_sym_command_repeat2, + STATE(1175), 1, + aux_sym__literal_repeat1, + STATE(1328), 1, + sym_concatenation, + STATE(1329), 1, + sym_herestring_redirect, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1448), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1627), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1444), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(985), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1625), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -64538,80 +77838,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1486] = 27, + [1678] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, + ACTIONS(1573), 1, sym__bare_dollar, - ACTIONS(1517), 1, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(1690), 1, anon_sym_LT_LT_LT, - ACTIONS(1519), 1, + ACTIONS(1692), 1, sym__special_character, - ACTIONS(1521), 1, + ACTIONS(1694), 1, sym_test_operator, - STATE(472), 1, + STATE(587), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(4006), 1, + STATE(1716), 1, + sym_concatenation, + STATE(4952), 1, sym_subshell, - ACTIONS(1340), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1515), 2, + ACTIONS(1688), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64621,7 +77905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 20, + ACTIONS(1440), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64642,62 +77926,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [1601] = 26, + [1793] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(685), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(687), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(691), 1, + ACTIONS(1561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(705), 1, + ACTIONS(1565), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ACTIONS(1372), 1, + ACTIONS(1690), 1, anon_sym_LT_LT_LT, - ACTIONS(1374), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1376), 1, + ACTIONS(1692), 1, sym__special_character, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1380), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1382), 1, - anon_sym_BQUOTE, - ACTIONS(1384), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1388), 1, + ACTIONS(1694), 1, sym_test_operator, - ACTIONS(1390), 1, - sym__bare_dollar, - STATE(446), 1, + STATE(582), 1, aux_sym_command_repeat2, - STATE(951), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1178), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(1179), 1, + STATE(1716), 1, sym_concatenation, - ACTIONS(1368), 2, + STATE(4911), 1, + sym_subshell, + ACTIONS(1408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1370), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1386), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1366), 3, + ACTIONS(1688), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(764), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64707,7 +77995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 21, + ACTIONS(1404), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64718,8 +78006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64729,66 +78015,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1714] = 28, + [1910] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, + ACTIONS(1573), 1, sym__bare_dollar, - ACTIONS(1517), 1, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(1690), 1, anon_sym_LT_LT_LT, - ACTIONS(1519), 1, + ACTIONS(1692), 1, sym__special_character, - ACTIONS(1521), 1, + ACTIONS(1694), 1, sym_test_operator, - STATE(477), 1, + STATE(571), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(3923), 1, + STATE(1716), 1, + sym_concatenation, + STATE(4952), 1, sym_subshell, - ACTIONS(1364), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1515), 2, + ACTIONS(1688), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64798,7 +78084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 19, + ACTIONS(1440), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64818,59 +78104,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1831] = 24, + [2027] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1537), 1, + ACTIONS(1709), 1, anon_sym_DOLLAR, - ACTIONS(1539), 1, + ACTIONS(1712), 1, sym__special_character, - ACTIONS(1541), 1, + ACTIONS(1715), 1, anon_sym_DQUOTE, - ACTIONS(1543), 1, + ACTIONS(1718), 1, aux_sym_number_token1, - ACTIONS(1545), 1, + ACTIONS(1721), 1, aux_sym_number_token2, - ACTIONS(1547), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1551), 1, + ACTIONS(1730), 1, anon_sym_BQUOTE, - ACTIONS(1553), 1, + ACTIONS(1733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1557), 1, + ACTIONS(1739), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1559), 1, + ACTIONS(1742), 1, sym_variable_name, - ACTIONS(1561), 1, + ACTIONS(1745), 1, sym_test_operator, - ACTIONS(1563), 1, + ACTIONS(1748), 1, sym__brace_start, - STATE(1166), 1, + STATE(1368), 1, aux_sym__literal_repeat1, - STATE(5385), 1, + STATE(6750), 1, sym_subscript, - ACTIONS(1529), 2, + ACTIONS(1699), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1533), 2, + ACTIONS(1704), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1555), 2, + ACTIONS(1736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1527), 3, + ACTIONS(1696), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(448), 3, + STATE(546), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(916), 9, + STATE(1067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64880,7 +78166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 22, + ACTIONS(1702), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64903,59 +78189,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1940] = 24, + [2136] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1450), 1, + anon_sym_LT_LT_LT, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1537), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1539), 1, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1541), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1543), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1545), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1547), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1551), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1553), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1559), 1, - sym_variable_name, - ACTIONS(1561), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1563), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1569), 1, - aux_sym__simple_variable_name_token1, - STATE(1166), 1, + STATE(541), 1, + aux_sym_command_repeat2, + STATE(1175), 1, aux_sym__literal_repeat1, - STATE(5385), 1, - sym_subscript, - ACTIONS(1529), 2, + STATE(1328), 1, + sym_concatenation, + STATE(1329), 1, + sym_herestring_redirect, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1555), 2, + ACTIONS(1448), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1567), 2, + ACTIONS(1615), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1527), 3, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(442), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(916), 9, + STATE(985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64965,7 +78254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 22, + ACTIONS(1613), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64975,7 +78264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -64988,62 +78276,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2049] = 26, + [2249] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(1372), 1, - anon_sym_LT_LT_LT, - ACTIONS(1374), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1376), 1, + ACTIONS(1761), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1767), 1, + aux_sym_number_token1, + ACTIONS(1769), 1, + aux_sym_number_token2, + ACTIONS(1771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1382), 1, + ACTIONS(1773), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1775), 1, anon_sym_BQUOTE, - ACTIONS(1384), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1388), 1, + ACTIONS(1781), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1783), 1, + sym_variable_name, + ACTIONS(1785), 1, sym_test_operator, - ACTIONS(1390), 1, - sym__bare_dollar, - STATE(446), 1, - aux_sym_command_repeat2, - STATE(951), 1, + ACTIONS(1787), 1, + sym__brace_start, + STATE(1368), 1, aux_sym__literal_repeat1, - STATE(1178), 1, - sym_herestring_redirect, - STATE(1179), 1, - sym_concatenation, - ACTIONS(1368), 2, + STATE(6750), 1, + sym_subscript, + ACTIONS(1753), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1370), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1386), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1511), 2, + ACTIONS(1757), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1366), 3, + ACTIONS(1779), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(764), 9, + STATE(551), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65053,7 +78338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 21, + ACTIONS(1755), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65063,6 +78348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -65075,22 +78361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2162] = 7, + [2358] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(1791), 1, anon_sym_DQUOTE, - STATE(735), 1, + ACTIONS(1795), 1, + sym_variable_name, + STATE(998), 1, sym_string, - ACTIONS(1525), 2, + ACTIONS(1793), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1523), 9, + ACTIONS(1789), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65100,7 +78388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 42, + ACTIONS(1239), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -65113,7 +78401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -65143,86 +78430,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2237] = 27, + [2435] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(1583), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1586), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, - sym__special_character, - ACTIONS(1592), 1, + ACTIONS(1791), 1, anon_sym_DQUOTE, - ACTIONS(1595), 1, - aux_sym_number_token1, - ACTIONS(1598), 1, - aux_sym_number_token2, - ACTIONS(1601), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1604), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, - anon_sym_BQUOTE, - ACTIONS(1610), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1616), 1, + ACTIONS(1795), 1, + sym_variable_name, + STATE(998), 1, + sym_string, + ACTIONS(1793), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, sym_file_descriptor, - ACTIONS(1619), 1, sym_test_operator, - ACTIONS(1622), 1, sym__bare_dollar, - ACTIONS(1625), 1, sym__brace_start, - STATE(446), 1, - aux_sym_command_repeat2, - STATE(951), 1, - aux_sym__literal_repeat1, - STATE(1178), 1, - sym_herestring_redirect, - STATE(1179), 1, - sym_concatenation, - ACTIONS(1574), 2, + ACTIONS(1789), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1577), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1613), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1571), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(764), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1398), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -65231,147 +78483,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2352] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(316), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1471), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(1517), 1, - anon_sym_LT_LT_LT, - ACTIONS(1519), 1, - sym__special_character, - ACTIONS(1521), 1, - sym_test_operator, - STATE(475), 1, - aux_sym_command_repeat2, - STATE(1110), 1, - aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - STATE(3923), 1, - sym_subshell, - ACTIONS(1364), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1515), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1513), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(991), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1362), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [2467] = 24, + [2512] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1641), 1, + ACTIONS(1761), 1, anon_sym_DOLLAR, - ACTIONS(1644), 1, + ACTIONS(1763), 1, sym__special_character, - ACTIONS(1647), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(1650), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(1653), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(1656), 1, + ACTIONS(1771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1775), 1, anon_sym_BQUOTE, - ACTIONS(1665), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1671), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1674), 1, + ACTIONS(1783), 1, sym_variable_name, - ACTIONS(1677), 1, + ACTIONS(1785), 1, sym_test_operator, - ACTIONS(1680), 1, + ACTIONS(1787), 1, sym__brace_start, - STATE(1166), 1, + ACTIONS(1801), 1, + aux_sym__simple_variable_name_token1, + STATE(1368), 1, aux_sym__literal_repeat1, - STATE(5385), 1, + STATE(6750), 1, sym_subscript, - ACTIONS(1631), 2, + ACTIONS(1753), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1668), 2, + ACTIONS(1779), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1628), 3, + ACTIONS(1799), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1751), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(448), 3, + STATE(546), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(916), 9, + STATE(1067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65381,7 +78561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1634), 22, + ACTIONS(1797), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65404,22 +78584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2576] = 7, + [2621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - STATE(775), 1, + ACTIONS(1807), 1, + sym_variable_name, + STATE(922), 1, sym_string, - ACTIONS(1685), 2, + ACTIONS(1805), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1683), 9, + ACTIONS(1803), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65429,7 +78611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 41, + ACTIONS(1239), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -65441,7 +78623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -65471,82 +78653,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2650] = 24, + [2698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1696), 1, - anon_sym_DOLLAR, - ACTIONS(1699), 1, - sym__special_character, - ACTIONS(1702), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1705), 1, - aux_sym_number_token1, - ACTIONS(1708), 1, - aux_sym_number_token2, - ACTIONS(1711), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1717), 1, - anon_sym_BQUOTE, - ACTIONS(1720), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1726), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1729), 1, + ACTIONS(1807), 1, sym_variable_name, - ACTIONS(1732), 1, + STATE(922), 1, + sym_string, + ACTIONS(1805), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(1735), 1, + sym__bare_dollar, sym__brace_start, - STATE(1392), 1, - aux_sym__literal_repeat1, - STATE(5384), 1, - sym_subscript, - ACTIONS(1636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1690), 2, + ACTIONS(1803), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1723), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1687), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(450), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(947), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1634), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -65555,143 +78706,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2758] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1742), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1744), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, sym__special_character, - ACTIONS(1748), 1, - anon_sym_DQUOTE, - ACTIONS(1750), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1752), 1, aux_sym_number_token2, - ACTIONS(1754), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1758), 1, anon_sym_BQUOTE, - ACTIONS(1760), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1764), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1766), 1, - sym_variable_name, - ACTIONS(1768), 1, - sym_test_operator, - ACTIONS(1770), 1, - sym__brace_start, - STATE(1392), 1, - aux_sym__literal_repeat1, - STATE(5384), 1, - sym_subscript, - ACTIONS(1567), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1740), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1762), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1738), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(452), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(947), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1565), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [2866] = 24, + [2775] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1744), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym__special_character, - ACTIONS(1748), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1750), 1, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(1752), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(1754), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1756), 1, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1758), 1, - anon_sym_BQUOTE, - ACTIONS(1760), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1766), 1, - sym_variable_name, - ACTIONS(1768), 1, - sym_test_operator, - ACTIONS(1770), 1, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ACTIONS(1772), 1, - aux_sym__simple_variable_name_token1, - STATE(1392), 1, + ACTIONS(1690), 1, + anon_sym_LT_LT_LT, + ACTIONS(1692), 1, + sym__special_character, + ACTIONS(1694), 1, + sym_test_operator, + STATE(584), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(5384), 1, - sym_subscript, - ACTIONS(1533), 2, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + STATE(4911), 1, + sym_subshell, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1740), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1762), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1738), 3, + ACTIONS(1688), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(450), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(947), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65701,7 +78789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 21, + ACTIONS(1404), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65712,8 +78800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65723,22 +78809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2974] = 7, + anon_sym_BQUOTE, + [2890] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(775), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(1685), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1683), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65748,7 +78837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 41, + ACTIONS(1227), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -65761,9 +78850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -65790,84 +78878,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3048] = 26, + [2966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1459), 1, - anon_sym_LT_LT_LT, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1463), 1, - sym__special_character, - ACTIONS(1465), 1, + ACTIONS(1819), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, - anon_sym_BQUOTE, - ACTIONS(1471), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1475), 1, + ACTIONS(1823), 1, + sym_variable_name, + STATE(1125), 1, + sym_string, + ACTIONS(1821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(1477), 1, sym__bare_dollar, - STATE(457), 1, - aux_sym_command_repeat2, - STATE(1110), 1, - aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1455), 2, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1817), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1457), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1453), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(835), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1479), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -65876,63 +78930,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3160] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(57), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1489), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [3042] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 1, anon_sym_LT_LT_LT, - ACTIONS(1491), 1, + ACTIONS(1585), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1589), 1, sym__special_character, - ACTIONS(1495), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1499), 1, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1601), 1, anon_sym_BQUOTE, - ACTIONS(1501), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1505), 1, + ACTIONS(1607), 1, sym_test_operator, - ACTIONS(1507), 1, + ACTIONS(1609), 1, sym__bare_dollar, - STATE(459), 1, + ACTIONS(1611), 1, + sym__brace_start, + STATE(569), 1, aux_sym_command_repeat2, - STATE(1148), 1, + STATE(1431), 1, aux_sym__literal_repeat1, - STATE(1325), 1, + STATE(1521), 1, sym_concatenation, - STATE(1335), 1, + STATE(1552), 1, sym_herestring_redirect, - ACTIONS(1485), 2, + ACTIONS(1579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1487), 2, + ACTIONS(1581), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1503), 2, + ACTIONS(1605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1483), 3, + ACTIONS(1577), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(1511), 3, + ACTIONS(1627), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(875), 9, + STATE(1093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65942,7 +79012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 19, + ACTIONS(1625), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65962,22 +79032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3272] = 7, + [3154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(1819), 1, anon_sym_DQUOTE, - STATE(735), 1, + ACTIONS(1823), 1, + sym_variable_name, + STATE(1125), 1, sym_string, - ACTIONS(1525), 2, + ACTIONS(1821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1523), 9, + ts_builtin_sym_end, + ACTIONS(1817), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65987,7 +79060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 41, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -65999,10 +79072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -66029,63 +79100,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3346] = 27, + [3230] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1783), 1, - anon_sym_LT_LT_LT, - ACTIONS(1786), 1, + ACTIONS(1829), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1789), 1, + ACTIONS(1831), 1, anon_sym_DOLLAR, - ACTIONS(1792), 1, + ACTIONS(1833), 1, sym__special_character, - ACTIONS(1795), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1837), 1, aux_sym_number_token1, - ACTIONS(1801), 1, + ACTIONS(1839), 1, aux_sym_number_token2, - ACTIONS(1804), 1, + ACTIONS(1841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1810), 1, + ACTIONS(1845), 1, anon_sym_BQUOTE, - ACTIONS(1813), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1819), 1, - sym_file_descriptor, - ACTIONS(1822), 1, + ACTIONS(1851), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1853), 1, + sym_variable_name, + ACTIONS(1855), 1, sym_test_operator, - ACTIONS(1825), 1, - sym__bare_dollar, - ACTIONS(1828), 1, + ACTIONS(1857), 1, sym__brace_start, - STATE(457), 1, - aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1699), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1777), 2, + STATE(6769), 1, + sym_subscript, + ACTIONS(1799), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1780), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1816), 2, + ACTIONS(1849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1774), 3, + ACTIONS(1825), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(835), 9, + STATE(565), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1171), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66095,7 +79162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1398), 20, + ACTIONS(1797), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66105,8 +79172,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66116,62 +79184,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3460] = 26, + [3338] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1459), 1, + ACTIONS(1583), 1, anon_sym_LT_LT_LT, - ACTIONS(1461), 1, + ACTIONS(1585), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1463), 1, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1589), 1, sym__special_character, - ACTIONS(1465), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1601), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1475), 1, + ACTIONS(1607), 1, sym_test_operator, - ACTIONS(1477), 1, + ACTIONS(1609), 1, sym__bare_dollar, - STATE(457), 1, + ACTIONS(1611), 1, + sym__brace_start, + STATE(569), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1431), 1, aux_sym__literal_repeat1, - STATE(1314), 1, + STATE(1521), 1, sym_concatenation, - STATE(1324), 1, + STATE(1552), 1, sym_herestring_redirect, - ACTIONS(1455), 2, + ACTIONS(1579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1457), 2, + ACTIONS(1581), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1473), 2, + ACTIONS(1605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1511), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1453), 3, + ACTIONS(1577), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(835), 9, + ACTIONS(1615), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66181,7 +79250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 20, + ACTIONS(1613), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66191,7 +79260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -66202,64 +79270,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3572] = 27, + [3450] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 1, + ACTIONS(1547), 1, anon_sym_LT_LT_LT, - ACTIONS(1843), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1846), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, + ACTIONS(1553), 1, sym__special_character, - ACTIONS(1852), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1855), 1, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(1858), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(1861), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1864), 1, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1870), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1876), 1, - sym_file_descriptor, - ACTIONS(1879), 1, + ACTIONS(1571), 1, sym_test_operator, - ACTIONS(1882), 1, + ACTIONS(1573), 1, sym__bare_dollar, - ACTIONS(1885), 1, + ACTIONS(1575), 1, sym__brace_start, - STATE(459), 1, + STATE(562), 1, aux_sym_command_repeat2, - STATE(1148), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1325), 1, - sym_concatenation, - STATE(1335), 1, + STATE(1712), 1, sym_herestring_redirect, - ACTIONS(1403), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1834), 2, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1837), 2, + ACTIONS(1545), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1873), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1831), 3, + ACTIONS(1615), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1541), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(875), 9, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66269,7 +79335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1398), 19, + ACTIONS(1613), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66279,6 +79345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -66289,63 +79356,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3686] = 26, + [3562] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1489), 1, - anon_sym_LT_LT_LT, ACTIONS(1491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1868), 1, + anon_sym_LT_LT_LT, + ACTIONS(1871), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(1877), 1, sym__special_character, - ACTIONS(1495), 1, + ACTIONS(1880), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1883), 1, + aux_sym_number_token1, + ACTIONS(1886), 1, + aux_sym_number_token2, + ACTIONS(1889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1499), 1, + ACTIONS(1892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1895), 1, anon_sym_BQUOTE, - ACTIONS(1501), 1, + ACTIONS(1898), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1505), 1, + ACTIONS(1904), 1, + sym_file_descriptor, + ACTIONS(1907), 1, sym_test_operator, - ACTIONS(1507), 1, + ACTIONS(1910), 1, sym__bare_dollar, - STATE(459), 1, + ACTIONS(1913), 1, + sym__brace_start, + STATE(562), 1, aux_sym_command_repeat2, - STATE(1148), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1325), 1, - sym_concatenation, - STATE(1335), 1, + STATE(1712), 1, sym_herestring_redirect, - ACTIONS(1485), 2, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1862), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1487), 2, + ACTIONS(1865), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1503), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1481), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1483), 3, + ACTIONS(1859), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(875), 9, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66355,135 +79422,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [3798] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - anon_sym_DQUOTE, - STATE(735), 1, - sym_string, - ACTIONS(1525), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1523), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3872] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 1, - anon_sym_DQUOTE, - STATE(932), 1, - sym_string, - ACTIONS(1890), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1888), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(1486), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -66492,69 +79443,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3945] = 21, + [3676] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(1829), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1831), 1, anon_sym_DOLLAR, - ACTIONS(1908), 1, + ACTIONS(1833), 1, sym__special_character, - ACTIONS(1911), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - ACTIONS(1914), 1, + ACTIONS(1837), 1, aux_sym_number_token1, - ACTIONS(1917), 1, + ACTIONS(1839), 1, aux_sym_number_token2, - ACTIONS(1920), 1, + ACTIONS(1841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1923), 1, + ACTIONS(1843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1926), 1, + ACTIONS(1845), 1, anon_sym_BQUOTE, - ACTIONS(1929), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(1853), 1, + sym_variable_name, + ACTIONS(1855), 1, sym_test_operator, - ACTIONS(1938), 1, + ACTIONS(1857), 1, sym__brace_start, - STATE(1162), 1, + ACTIONS(1916), 1, + aux_sym__simple_variable_name_token1, + STATE(1699), 1, aux_sym__literal_repeat1, - ACTIONS(1895), 2, + STATE(6769), 1, + sym_subscript, + ACTIONS(1757), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1932), 2, + ACTIONS(1849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1892), 3, + ACTIONS(1825), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(1900), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - STATE(876), 9, + STATE(559), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1171), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66564,7 +79505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 23, + ACTIONS(1755), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66574,7 +79515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -66587,23 +79527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4046] = 7, + [3784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(775), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(1685), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1683), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66613,7 +79554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 40, + ACTIONS(1239), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -66625,9 +79566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -66654,125 +79595,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4119] = 6, + [3860] = 24, ACTIONS(3), 1, sym_comment, - STATE(1162), 1, - aux_sym__literal_repeat1, - STATE(463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1924), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1927), 1, anon_sym_DOLLAR, + ACTIONS(1930), 1, sym__special_character, + ACTIONS(1933), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1936), 1, aux_sym_number_token1, + ACTIONS(1939), 1, aux_sym_number_token2, + ACTIONS(1942), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1945), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1948), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4190] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(1951), 1, - anon_sym_DOLLAR, - ACTIONS(1953), 1, - sym__special_character, - ACTIONS(1955), 1, - anon_sym_DQUOTE, - ACTIONS(1957), 1, - aux_sym_number_token1, - ACTIONS(1959), 1, - aux_sym_number_token2, - ACTIONS(1961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, - anon_sym_BQUOTE, - ACTIONS(1967), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1971), 1, + ACTIONS(1957), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1973), 1, + ACTIONS(1960), 1, sym_variable_name, - ACTIONS(1975), 1, + ACTIONS(1963), 1, sym_test_operator, - ACTIONS(1977), 1, + ACTIONS(1966), 1, sym__brace_start, - STATE(1545), 1, + STATE(1699), 1, aux_sym__literal_repeat1, - STATE(5410), 1, + STATE(6769), 1, sym_subscript, - ACTIONS(1947), 2, + ACTIONS(1704), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1921), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, + ACTIONS(1954), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1533), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1945), 3, + ACTIONS(1918), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(476), 3, + STATE(565), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1136), 9, + STATE(1171), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66782,7 +79657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 19, + ACTIONS(1702), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66793,6 +79668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66802,21 +79679,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4297] = 6, + [3968] = 26, ACTIONS(3), 1, sym_comment, - STATE(1162), 1, + ACTIONS(1547), 1, + anon_sym_LT_LT_LT, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + sym__special_character, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1571), 1, + sym_test_operator, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, + sym__brace_start, + STATE(562), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(463), 2, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1981), 5, + ACTIONS(1543), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1545), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1627), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(876), 9, + ACTIONS(1541), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66826,8 +79744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1625), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66837,10 +79754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66850,39 +79765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4368] = 7, + [4080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - STATE(775), 1, + ACTIONS(1973), 1, + sym_variable_name, + STATE(1130), 1, sym_string, - ACTIONS(1685), 2, + ACTIONS(1971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1683), 9, + ACTIONS(1969), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66892,7 +79792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 40, + ACTIONS(1227), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -66933,23 +79833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4441] = 7, + [4156] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - STATE(932), 1, + ACTIONS(1973), 1, + sym_variable_name, + STATE(1130), 1, sym_string, - ACTIONS(1890), 2, + ACTIONS(1971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 5, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1888), 9, + ACTIONS(1969), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66959,7 +79860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 39, + ACTIONS(1239), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -66971,8 +79872,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -66999,62 +79901,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4514] = 26, + [4232] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(1984), 1, + anon_sym_LT_LT_LT, + ACTIONS(1987), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1990), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1993), 1, + sym__special_character, + ACTIONS(1996), 1, + anon_sym_DQUOTE, + ACTIONS(1999), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(2002), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(2005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(2008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2011), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(1517), 1, - anon_sym_LT_LT_LT, - ACTIONS(1519), 1, - sym__special_character, - ACTIONS(1521), 1, + ACTIONS(2020), 1, + sym_file_descriptor, + ACTIONS(2023), 1, sym_test_operator, - STATE(473), 1, + ACTIONS(2026), 1, + sym__bare_dollar, + ACTIONS(2029), 1, + sym__brace_start, + STATE(569), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1431), 1, aux_sym__literal_repeat1, - STATE(1314), 1, + STATE(1521), 1, sym_concatenation, - STATE(1324), 1, + STATE(1552), 1, sym_herestring_redirect, - ACTIONS(1455), 2, + ACTIONS(1491), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1978), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1515), 2, + ACTIONS(1981), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(2017), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1975), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(1093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67064,7 +79968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 19, + ACTIONS(1486), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67084,60 +79988,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4625] = 24, + [4346] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1951), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(1953), 1, + ACTIONS(2040), 1, sym__special_character, - ACTIONS(1955), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(1957), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(1959), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(1961), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1963), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(1967), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1973), 1, + ACTIONS(2058), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2060), 1, sym_variable_name, - ACTIONS(1975), 1, + ACTIONS(2062), 1, sym_test_operator, - ACTIONS(1977), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(1983), 1, - aux_sym__simple_variable_name_token1, - STATE(1545), 1, + STATE(1816), 1, aux_sym__literal_repeat1, - STATE(5410), 1, + STATE(6731), 1, sym_subscript, - ACTIONS(1947), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1567), 3, + ACTIONS(1799), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1945), 3, + ACTIONS(2032), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(466), 3, + STATE(577), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1136), 9, + STATE(1322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67147,7 +80051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 19, + ACTIONS(1797), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67167,60 +80071,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4732] = 25, + [4453] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, + ACTIONS(1573), 1, sym__bare_dollar, - ACTIONS(1517), 1, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(1690), 1, anon_sym_LT_LT_LT, - ACTIONS(1519), 1, + ACTIONS(1692), 1, sym__special_character, - ACTIONS(1521), 1, + ACTIONS(1694), 1, sym_test_operator, - STATE(473), 1, + STATE(574), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - ACTIONS(1455), 2, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1481), 2, + ACTIONS(1615), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1515), 2, + ACTIONS(1688), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67230,7 +80136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 20, + ACTIONS(1613), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67250,85 +80156,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4841] = 27, + [4564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1786), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOLLAR, - ACTIONS(1795), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, - aux_sym_number_token1, - ACTIONS(1801), 1, - aux_sym_number_token2, - ACTIONS(1804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1807), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1810), 1, - anon_sym_BQUOTE, - ACTIONS(1813), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1825), 1, - sym__bare_dollar, - ACTIONS(1828), 1, - sym__brace_start, - ACTIONS(1991), 1, - anon_sym_LT_LT_LT, - ACTIONS(1994), 1, - sym__special_character, - ACTIONS(1997), 1, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, + sym_string, + ACTIONS(2068), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, sym_file_descriptor, - ACTIONS(2000), 1, sym_test_operator, - STATE(473), 1, - aux_sym_command_repeat2, - STATE(1110), 1, - aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1777), 2, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2066), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1816), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1988), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1985), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(991), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1398), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -67337,143 +80207,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4954] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, - anon_sym_DOLLAR, - ACTIONS(2011), 1, sym__special_character, - ACTIONS(2013), 1, - anon_sym_DQUOTE, - ACTIONS(2015), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2017), 1, aux_sym_number_token2, - ACTIONS(2019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, anon_sym_BQUOTE, - ACTIONS(2025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2029), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2031), 1, - sym_variable_name, - ACTIONS(2033), 1, - sym_test_operator, - ACTIONS(2035), 1, - sym__brace_start, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(5448), 1, - sym_subscript, - ACTIONS(1533), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2003), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(480), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1531), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [5061] = 25, + [4639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1471), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(1517), 1, - anon_sym_LT_LT_LT, - ACTIONS(1519), 1, - sym__special_character, - ACTIONS(1521), 1, - sym_test_operator, - STATE(473), 1, - aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1474), 1, aux_sym__literal_repeat1, - STATE(1314), 1, + STATE(583), 2, sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1455), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1511), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1515), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1513), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(991), 9, + STATE(1158), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67483,7 +80247,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 20, + ACTIONS(2072), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67493,7 +80258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67503,146 +80271,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [5170] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2046), 1, anon_sym_DOLLAR, - ACTIONS(2049), 1, sym__special_character, - ACTIONS(2052), 1, anon_sym_DQUOTE, - ACTIONS(2055), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2058), 1, aux_sym_number_token2, - ACTIONS(2061), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2064), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2067), 1, anon_sym_BQUOTE, - ACTIONS(2070), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2076), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2079), 1, - sym_variable_name, - ACTIONS(2082), 1, - sym_test_operator, - ACTIONS(2085), 1, - sym__brace_start, - STATE(1545), 1, - aux_sym__literal_repeat1, - STATE(5410), 1, - sym_subscript, - ACTIONS(2040), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2073), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1636), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2037), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(476), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1136), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1634), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [5277] = 26, + [4710] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(1491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1871), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1880), 1, + anon_sym_DQUOTE, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1895), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1898), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, + ACTIONS(1910), 1, sym__bare_dollar, - ACTIONS(1517), 1, + ACTIONS(1913), 1, + sym__brace_start, + ACTIONS(2082), 1, anon_sym_LT_LT_LT, - ACTIONS(1519), 1, + ACTIONS(2085), 1, sym__special_character, - ACTIONS(1521), 1, + ACTIONS(2088), 1, + sym_file_descriptor, + ACTIONS(2091), 1, sym_test_operator, - STATE(473), 1, + STATE(574), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - ACTIONS(1455), 2, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1862), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1511), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1515), 2, + ACTIONS(2079), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1513), 3, + ACTIONS(2076), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(991), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67652,7 +80354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 19, + ACTIONS(1486), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67672,48 +80374,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5388] = 7, + [4823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + STATE(1474), 1, + aux_sym__literal_repeat1, + STATE(583), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 40, + aux_sym_heredoc_redirect_token1, + STATE(1158), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -67722,11 +80422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -67738,59 +80439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5461] = 24, + [4894] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(2011), 1, + ACTIONS(2040), 1, sym__special_character, - ACTIONS(2013), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(2025), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2031), 1, + ACTIONS(2060), 1, sym_variable_name, - ACTIONS(2033), 1, + ACTIONS(2062), 1, sym_test_operator, - ACTIONS(2035), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2092), 1, + ACTIONS(2098), 1, aux_sym__simple_variable_name_token1, - STATE(1542), 1, + STATE(1816), 1, aux_sym__literal_repeat1, - STATE(5448), 1, + STATE(6731), 1, sym_subscript, - ACTIONS(1567), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2003), 3, + ACTIONS(1757), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2032), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(474), 3, + STATE(570), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1156), 9, + STATE(1322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67800,7 +80502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 20, + ACTIONS(1755), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67810,7 +80512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -67821,59 +80522,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5568] = 24, + [5001] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 1, + ACTIONS(2106), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2103), 1, + ACTIONS(2109), 1, anon_sym_DOLLAR, - ACTIONS(2106), 1, + ACTIONS(2112), 1, sym__special_character, - ACTIONS(2109), 1, + ACTIONS(2115), 1, anon_sym_DQUOTE, - ACTIONS(2112), 1, + ACTIONS(2118), 1, aux_sym_number_token1, - ACTIONS(2115), 1, + ACTIONS(2121), 1, aux_sym_number_token2, - ACTIONS(2118), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2121), 1, + ACTIONS(2127), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2124), 1, + ACTIONS(2130), 1, anon_sym_BQUOTE, - ACTIONS(2127), 1, - anon_sym_DOLLAR_BQUOTE, ACTIONS(2133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2139), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2136), 1, + ACTIONS(2142), 1, sym_variable_name, - ACTIONS(2139), 1, + ACTIONS(2145), 1, sym_test_operator, - ACTIONS(2142), 1, + ACTIONS(2148), 1, sym__brace_start, - STATE(1542), 1, + STATE(1816), 1, aux_sym__literal_repeat1, - STATE(5448), 1, + STATE(6731), 1, sym_subscript, - ACTIONS(1636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2097), 2, + ACTIONS(2103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2130), 2, + ACTIONS(2136), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2094), 3, + ACTIONS(1704), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2100), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(480), 3, + STATE(577), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1156), 9, + STATE(1322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67883,7 +80585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1634), 20, + ACTIONS(1702), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67893,7 +80595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -67904,22 +80605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5675] = 7, + [5108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - STATE(893), 1, + ACTIONS(2155), 1, + sym_variable_name, + STATE(1282), 1, sym_string, - ACTIONS(2090), 2, + ACTIONS(2153), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, + ts_builtin_sym_end, + ACTIONS(2151), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67929,7 +80633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 40, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -67941,8 +80645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -67970,22 +80672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5748] = 7, + [5183] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(1032), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(2149), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2145), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67995,22 +80699,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 39, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -68035,84 +80739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5820] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(779), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(515), 33, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_do, - anon_sym_if, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [5884] = 7, + [5258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(932), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(1890), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 5, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1888), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68122,7 +80766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 38, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -68134,6 +80778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -68161,57 +80806,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5956] = 23, + [5333] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(2163), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2169), 1, + sym__special_character, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(2175), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(2178), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(2181), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2025), 1, + ACTIONS(2187), 1, + anon_sym_BQUOTE, + ACTIONS(2190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(2153), 1, - sym__special_character, - ACTIONS(2155), 1, + ACTIONS(2196), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2157), 1, + ACTIONS(2199), 1, sym_variable_name, - ACTIONS(2159), 1, + ACTIONS(2202), 1, sym_test_operator, - STATE(1542), 1, + ACTIONS(2205), 1, + sym__brace_start, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(5461), 1, + STATE(6781), 1, sym_subscript, - ACTIONS(1533), 2, + ACTIONS(1704), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(2160), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(2193), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2151), 3, + ACTIONS(2157), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(486), 3, + STATE(581), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1317), 9, + STATE(1360), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68221,7 +80868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 20, + ACTIONS(1702), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68231,6 +80878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -68241,60 +80889,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [6060] = 24, + [5440] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2103), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(2109), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(2112), 1, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(2115), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(2118), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2121), 1, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2124), 1, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(2127), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2142), 1, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ACTIONS(2164), 1, + ACTIONS(1690), 1, + anon_sym_LT_LT_LT, + ACTIONS(1692), 1, sym__special_character, - ACTIONS(2167), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2173), 1, + ACTIONS(1694), 1, sym_test_operator, - STATE(1542), 1, + STATE(574), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(5461), 1, - sym_subscript, - ACTIONS(1636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2097), 2, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2130), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2161), 3, + ACTIONS(1627), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1688), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1686), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(486), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1317), 9, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68304,7 +80954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1634), 19, + ACTIONS(1625), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68324,54 +80974,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6166] = 22, + [5551] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2218), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2186), 1, + ACTIONS(2221), 1, anon_sym_DOLLAR, - ACTIONS(2188), 1, + ACTIONS(2224), 1, sym__special_character, - ACTIONS(2190), 1, + ACTIONS(2227), 1, anon_sym_DQUOTE, - ACTIONS(2192), 1, + ACTIONS(2230), 1, aux_sym_number_token1, - ACTIONS(2194), 1, + ACTIONS(2233), 1, aux_sym_number_token2, - ACTIONS(2196), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2198), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2242), 1, anon_sym_BQUOTE, - ACTIONS(2202), 1, + ACTIONS(2245), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2206), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2208), 1, + ACTIONS(2251), 1, sym_test_operator, - ACTIONS(2210), 1, + ACTIONS(2254), 1, sym__brace_start, - STATE(1212), 1, + STATE(1474), 1, aux_sym__literal_repeat1, - ACTIONS(2178), 2, + ACTIONS(2211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2182), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2204), 2, + ACTIONS(2248), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(504), 2, + STATE(583), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2176), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2208), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(961), 9, + ACTIONS(2216), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + STATE(1158), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68381,7 +81030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 22, + ACTIONS(2214), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68404,112 +81053,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6268] = 7, + anon_sym_LT_LT_LT, + [5652] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_DQUOTE, - STATE(1032), 1, - sym_string, - ACTIONS(2149), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(2145), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, + ACTIONS(1559), 1, aux_sym_number_token2, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(1690), 1, + anon_sym_LT_LT_LT, + ACTIONS(1692), 1, + sym__special_character, + ACTIONS(1694), 1, + sym_test_operator, + STATE(574), 1, + aux_sym_command_repeat2, + STATE(1321), 1, + aux_sym__literal_repeat1, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1627), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1688), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1686), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [6340] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, + STATE(1219), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 39, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1625), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -68518,82 +81137,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6412] = 28, + [5761] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(2261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2263), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(2265), 1, + sym__special_character, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(2271), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2277), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(2216), 1, - anon_sym_LT_LT_LT, - ACTIONS(2218), 1, - sym__special_character, - ACTIONS(2220), 1, + ACTIONS(2283), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2285), 1, + sym_variable_name, + ACTIONS(2287), 1, sym_test_operator, - STATE(547), 1, - aux_sym_command_repeat2, - STATE(1110), 1, + ACTIONS(2289), 1, + sym__brace_start, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - STATE(3923), 1, - sym_subshell, - ACTIONS(1364), 2, + STATE(6781), 1, + sym_subscript, + ACTIONS(1799), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2214), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2212), 3, + ACTIONS(2257), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1458), 9, + STATE(581), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1360), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68603,14 +81200,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 16, + ACTIONS(1797), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -68620,47 +81221,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6526] = 7, + [5868] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(2261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2265), 1, + sym__special_character, + ACTIONS(2267), 1, anon_sym_DQUOTE, - STATE(932), 1, - sym_string, - ACTIONS(1890), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1888), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 38, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2273), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2277), 1, + anon_sym_BQUOTE, + ACTIONS(2279), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2285), 1, + sym_variable_name, + ACTIONS(2287), 1, + sym_test_operator, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(2291), 1, + aux_sym__simple_variable_name_token1, + STATE(1743), 1, + aux_sym__literal_repeat1, + STATE(6781), 1, + sym_subscript, + ACTIONS(1757), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2281), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2257), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(585), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1360), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1755), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -68669,36 +81304,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [5975] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, + ACTIONS(1559), 1, aux_sym_number_token2, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6598] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1079), 1, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(1690), 1, + anon_sym_LT_LT_LT, + ACTIONS(1692), 1, + sym__special_character, + ACTIONS(1694), 1, + sym_test_operator, + STATE(574), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1330), 1, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, sym_concatenation, - ACTIONS(2224), 5, + ACTIONS(1543), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1615), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(863), 9, + ACTIONS(1688), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1686), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68708,8 +81367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1613), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68719,10 +81377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -68732,39 +81387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6668] = 7, + [6084] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - STATE(893), 1, + ACTIONS(2155), 1, + sym_variable_name, + STATE(1282), 1, sym_string, - ACTIONS(2090), 2, + ACTIONS(2153), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, + ts_builtin_sym_end, + ACTIONS(2151), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68774,7 +81416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 39, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -68786,7 +81428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -68814,22 +81455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6740] = 7, + [6159] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - STATE(893), 1, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, sym_string, - ACTIONS(2090), 2, + ACTIONS(2068), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, + ACTIONS(2066), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68839,7 +81482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 39, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -68851,7 +81494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -68879,53 +81522,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6812] = 21, + [6234] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2235), 1, + ACTIONS(2303), 1, anon_sym_DOLLAR, - ACTIONS(2238), 1, + ACTIONS(2305), 1, sym__special_character, - ACTIONS(2241), 1, + ACTIONS(2307), 1, anon_sym_DQUOTE, - ACTIONS(2244), 1, + ACTIONS(2309), 1, aux_sym_number_token1, - ACTIONS(2247), 1, + ACTIONS(2311), 1, aux_sym_number_token2, - ACTIONS(2250), 1, + ACTIONS(2313), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2253), 1, + ACTIONS(2315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2256), 1, + ACTIONS(2317), 1, anon_sym_BQUOTE, - ACTIONS(2259), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2265), 1, + ACTIONS(2323), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2325), 1, sym_test_operator, - ACTIONS(2268), 1, + ACTIONS(2327), 1, sym__brace_start, - STATE(1217), 1, + STATE(1631), 1, aux_sym__literal_repeat1, - ACTIONS(2229), 2, + ACTIONS(2295), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2262), 2, + ACTIONS(2299), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(495), 2, + STATE(613), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1900), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2226), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2293), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(998), 9, + STATE(1190), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68935,7 +81579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 22, + ACTIONS(2297), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68945,6 +81589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -68957,22 +81602,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6912] = 6, + [6336] = 21, ACTIONS(3), 1, sym_comment, - STATE(1217), 1, - aux_sym__literal_repeat1, - STATE(495), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2333), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2335), 1, + anon_sym_DOLLAR, + ACTIONS(2337), 1, + sym__special_character, + ACTIONS(2339), 1, + anon_sym_DQUOTE, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2345), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2349), 1, + anon_sym_BQUOTE, + ACTIONS(2351), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2355), 1, sym_test_operator, + ACTIONS(2357), 1, sym__brace_start, + STATE(1658), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(998), 9, + ACTIONS(2331), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2353), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(593), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2329), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1290), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68982,8 +81657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2094), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68993,6 +81667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -69006,75 +81681,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6982] = 24, + [6436] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(2261), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(2269), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(2271), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(2275), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, - anon_sym_BQUOTE, - ACTIONS(2025), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, + ACTIONS(2289), 1, sym__brace_start, - ACTIONS(2153), 1, + ACTIONS(2361), 1, sym__special_character, - ACTIONS(2157), 1, + ACTIONS(2363), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2365), 1, sym_variable_name, - ACTIONS(2159), 1, + ACTIONS(2367), 1, sym_test_operator, - ACTIONS(2271), 1, - aux_sym__simple_variable_name_token1, - STATE(1542), 1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(5461), 1, + STATE(6773), 1, sym_subscript, - ACTIONS(1567), 2, + ACTIONS(1757), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2151), 3, + ACTIONS(2359), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(500), 3, + STATE(594), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1317), 9, + STATE(1602), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69084,7 +81741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 19, + ACTIONS(1755), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69104,54 +81761,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7088] = 22, + anon_sym_BQUOTE, + [6540] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2375), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2186), 1, + ACTIONS(2378), 1, anon_sym_DOLLAR, - ACTIONS(2188), 1, + ACTIONS(2381), 1, sym__special_character, - ACTIONS(2190), 1, + ACTIONS(2384), 1, anon_sym_DQUOTE, - ACTIONS(2192), 1, + ACTIONS(2387), 1, aux_sym_number_token1, - ACTIONS(2194), 1, + ACTIONS(2390), 1, aux_sym_number_token2, - ACTIONS(2196), 1, + ACTIONS(2393), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2198), 1, + ACTIONS(2396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2399), 1, anon_sym_BQUOTE, - ACTIONS(2202), 1, + ACTIONS(2402), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2208), 1, + ACTIONS(2408), 1, sym_test_operator, - ACTIONS(2210), 1, + ACTIONS(2411), 1, sym__brace_start, - ACTIONS(2277), 1, - aux_sym__simple_variable_name_token1, - STATE(1212), 1, + STATE(1658), 1, aux_sym__literal_repeat1, - ACTIONS(2178), 2, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2204), 2, + ACTIONS(2405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2275), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(487), 2, + STATE(593), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2176), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2369), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(961), 9, + STATE(1290), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69161,7 +81817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 22, + ACTIONS(2214), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69184,123 +81840,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7190] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1217), 1, - aux_sym__literal_repeat1, - STATE(495), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1981), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1979), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7260] = 24, + [6640] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(2261), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(2269), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(2271), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(2275), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, - anon_sym_BQUOTE, - ACTIONS(2025), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, + ACTIONS(2289), 1, sym__brace_start, - ACTIONS(2153), 1, + ACTIONS(2361), 1, sym__special_character, - ACTIONS(2155), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2157), 1, + ACTIONS(2365), 1, sym_variable_name, - ACTIONS(2159), 1, + ACTIONS(2367), 1, sym_test_operator, - STATE(1542), 1, + ACTIONS(2414), 1, + aux_sym__simple_variable_name_token1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(5461), 1, + STATE(6773), 1, sym_subscript, - ACTIONS(1533), 2, + ACTIONS(1799), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2151), 3, + ACTIONS(2359), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(486), 3, + STATE(612), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1317), 9, + STATE(1602), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69310,7 +81901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 19, + ACTIONS(1797), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69330,57 +81921,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7366] = 23, + anon_sym_BQUOTE, + [6744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(2335), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2337), 1, + sym__special_character, + ACTIONS(2339), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(2341), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(2343), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(2345), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(2347), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2025), 1, + ACTIONS(2349), 1, + anon_sym_BQUOTE, + ACTIONS(2351), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(2153), 1, - sym__special_character, - ACTIONS(2157), 1, - sym_variable_name, - ACTIONS(2159), 1, + ACTIONS(2355), 1, sym_test_operator, - ACTIONS(2279), 1, - aux_sym__simple_variable_name_token1, - STATE(1542), 1, + ACTIONS(2357), 1, + sym__brace_start, + STATE(1658), 1, aux_sym__literal_repeat1, - STATE(5461), 1, - sym_subscript, - ACTIONS(1567), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(2331), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(2353), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2151), 3, + STATE(593), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2329), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(485), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1317), 9, + STATE(1290), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69390,7 +81977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 20, + ACTIONS(2072), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69400,7 +81987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69410,67 +82000,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [7470] = 28, + anon_sym_LT_LT_LT, + [6844] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, + ACTIONS(1573), 1, sym__bare_dollar, - ACTIONS(2216), 1, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(2420), 1, anon_sym_LT_LT_LT, - ACTIONS(2218), 1, + ACTIONS(2422), 1, sym__special_character, - ACTIONS(2220), 1, + ACTIONS(2424), 1, sym_test_operator, - STATE(541), 1, + STATE(688), 1, aux_sym_command_repeat2, - STATE(1110), 1, + STATE(1321), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, + STATE(1712), 1, sym_herestring_redirect, - STATE(4006), 1, + STATE(1716), 1, + sym_concatenation, + STATE(4911), 1, sym_subshell, - ACTIONS(1340), 2, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1455), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2214), 2, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2212), 3, + ACTIONS(2416), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1458), 9, + STATE(1794), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69480,7 +82070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1336), 16, + ACTIONS(1404), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -69497,22 +82087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7584] = 7, + [6958] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(2428), 1, anon_sym_DQUOTE, - STATE(893), 1, + ACTIONS(2432), 1, + sym_variable_name, + STATE(1204), 1, sym_string, - ACTIONS(2090), 2, + ACTIONS(2430), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, + ACTIONS(2426), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -69522,22 +82113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 39, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -69562,54 +82153,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7656] = 22, + [7032] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, + ACTIONS(2444), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2294), 1, + ACTIONS(2447), 1, anon_sym_DOLLAR, - ACTIONS(2297), 1, + ACTIONS(2450), 1, sym__special_character, - ACTIONS(2300), 1, + ACTIONS(2453), 1, anon_sym_DQUOTE, - ACTIONS(2303), 1, + ACTIONS(2456), 1, aux_sym_number_token1, - ACTIONS(2306), 1, + ACTIONS(2459), 1, aux_sym_number_token2, - ACTIONS(2309), 1, + ACTIONS(2462), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2312), 1, + ACTIONS(2465), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2315), 1, + ACTIONS(2468), 1, anon_sym_BQUOTE, - ACTIONS(2318), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2324), 1, + ACTIONS(2477), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2327), 1, + ACTIONS(2480), 1, sym_test_operator, - ACTIONS(2330), 1, + ACTIONS(2483), 1, sym__brace_start, - STATE(1212), 1, + STATE(1631), 1, aux_sym__literal_repeat1, - ACTIONS(2284), 2, + ACTIONS(2437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2289), 2, + ACTIONS(2442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2321), 2, + ACTIONS(2474), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(504), 2, + STATE(598), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2281), 3, + ACTIONS(2434), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(961), 9, + STATE(1190), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69619,7 +82210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 22, + ACTIONS(2440), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69642,355 +82233,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7758] = 6, - ACTIONS(3), 1, + [7134] = 3, + ACTIONS(71), 1, sym_comment, - STATE(1084), 1, - aux_sym__literal_repeat1, - STATE(1334), 1, - sym_concatenation, - ACTIONS(2335), 5, + ACTIONS(809), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(862), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 40, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [7828] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1541), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2339), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(2337), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(579), 33, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_do, + anon_sym_if, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [7899] = 37, + [7198] = 28, + ACTIONS(3), 1, + sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(302), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(304), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(310), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ACTIONS(951), 1, - sym__special_character, - ACTIONS(957), 1, - sym_variable_name, - ACTIONS(959), 1, - sym_test_operator, - ACTIONS(1326), 1, + ACTIONS(2420), 1, anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2341), 1, - sym_word, - STATE(502), 1, - sym_command_name, - STATE(816), 1, - aux_sym_command_repeat1, - STATE(948), 1, - aux_sym__literal_repeat1, - STATE(1176), 1, - sym_concatenation, - STATE(1576), 1, - sym_variable_assignment, - STATE(4039), 1, - sym_command, - STATE(5430), 1, - sym_subscript, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(953), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4041), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1225), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [8030] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2349), 1, - anon_sym_DOLLAR, - ACTIONS(2351), 1, + ACTIONS(2422), 1, sym__special_character, - ACTIONS(2353), 1, - anon_sym_DQUOTE, - ACTIONS(2355), 1, - aux_sym_number_token1, - ACTIONS(2357), 1, - aux_sym_number_token2, - ACTIONS(2359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, - anon_sym_BQUOTE, - ACTIONS(2365), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2369), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2371), 1, + ACTIONS(2424), 1, sym_test_operator, - ACTIONS(2373), 1, - sym__brace_start, - STATE(1416), 1, + STATE(675), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - ACTIONS(2275), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2345), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2367), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(523), 2, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2343), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1184), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2273), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [8131] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2381), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2384), 1, - anon_sym_DOLLAR, - ACTIONS(2387), 1, - sym__special_character, - ACTIONS(2390), 1, - anon_sym_DQUOTE, - ACTIONS(2393), 1, - aux_sym_number_token1, - ACTIONS(2396), 1, - aux_sym_number_token2, - ACTIONS(2399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2405), 1, - anon_sym_BQUOTE, - ACTIONS(2408), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2414), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2417), 1, - sym_test_operator, - ACTIONS(2420), 1, - sym__brace_start, - STATE(1416), 1, - aux_sym__literal_repeat1, - ACTIONS(2289), 2, + STATE(4952), 1, + sym_subshell, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2378), 2, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2411), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(509), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2375), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2416), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1184), 9, + STATE(1794), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70000,19 +82363,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 21, - anon_sym_SEMI, + ACTIONS(1440), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70022,22 +82380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8232] = 6, + [7312] = 6, ACTIONS(3), 1, sym_comment, - STATE(1420), 1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(525), 2, + STATE(609), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1981), 6, + ACTIONS(2096), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1091), 9, + STATE(1269), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70047,7 +82404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 37, + ACTIONS(2094), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -70059,6 +82416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70085,52 +82444,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8301] = 21, + [7382] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2261), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2432), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR, - ACTIONS(2435), 1, - sym__special_character, - ACTIONS(2438), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2441), 1, + ACTIONS(2269), 1, aux_sym_number_token1, - ACTIONS(2444), 1, + ACTIONS(2271), 1, aux_sym_number_token2, - ACTIONS(2447), 1, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2450), 1, + ACTIONS(2275), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2453), 1, + ACTIONS(2277), 1, anon_sym_BQUOTE, - ACTIONS(2456), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2462), 1, - sym_test_operator, - ACTIONS(2465), 1, + ACTIONS(2289), 1, sym__brace_start, - STATE(1524), 1, + ACTIONS(2361), 1, + sym__special_character, + ACTIONS(2365), 1, + sym_variable_name, + ACTIONS(2367), 1, + sym_test_operator, + ACTIONS(2486), 1, + aux_sym__simple_variable_name_token1, + STATE(1743), 1, aux_sym__literal_repeat1, - ACTIONS(1900), 2, + STATE(6773), 1, + sym_subscript, + ACTIONS(1757), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2426), 2, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2459), 2, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(511), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2423), 3, + ACTIONS(2359), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1186), 9, + STATE(610), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1602), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70140,7 +82506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 22, + ACTIONS(1755), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -70150,10 +82516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70163,482 +82526,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8400] = 37, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(51), 1, - sym__special_character, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(75), 1, - sym_variable_name, - ACTIONS(77), 1, - sym_test_operator, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2468), 1, - sym_word, - STATE(433), 1, - sym_command_name, - STATE(803), 1, - aux_sym_command_repeat1, - STATE(985), 1, - aux_sym__literal_repeat1, - STATE(1141), 1, - sym_concatenation, - STATE(1580), 1, - sym_variable_assignment, - STATE(4039), 1, - sym_command, - STATE(5469), 1, - sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4041), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(813), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [8531] = 37, - ACTIONS(71), 1, + [7488] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(653), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(673), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(679), 1, - sym__special_character, - ACTIONS(681), 1, + ACTIONS(2339), 1, anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, - anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(701), 1, + ACTIONS(2492), 1, sym_variable_name, - ACTIONS(703), 1, + STATE(1463), 1, + sym_string, + ACTIONS(2490), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(705), 1, sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2470), 1, - sym_word, - STATE(428), 1, - sym_command_name, - STATE(759), 1, - aux_sym_command_repeat1, - STATE(827), 1, - aux_sym__literal_repeat1, - STATE(945), 1, - sym_concatenation, - STATE(1445), 1, - sym_variable_assignment, - STATE(3955), 1, - sym_command, - STATE(5383), 1, - sym_subscript, - ACTIONS(683), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(3962), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, + ACTIONS(2488), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [8662] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2476), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2478), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [8729] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(169), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(217), 1, - sym_variable_name, - ACTIONS(963), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(969), 1, - anon_sym_LPAREN, - ACTIONS(977), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - sym__special_character, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, aux_sym_number_token1, - ACTIONS(991), 1, aux_sym_number_token2, - ACTIONS(993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, anon_sym_BQUOTE, - ACTIONS(999), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1005), 1, - sym_test_operator, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2480), 1, - sym_word, - STATE(516), 1, - sym_command_name, - STATE(806), 1, - aux_sym_command_repeat1, - STATE(1928), 1, - aux_sym__literal_repeat1, - STATE(1945), 1, - sym_concatenation, - STATE(2298), 1, - sym_variable_assignment, - STATE(4514), 1, - sym_command, - STATE(5431), 1, - sym_subscript, - ACTIONS(987), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4510), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1487), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [8860] = 29, - ACTIONS(71), 1, - sym_comment, - ACTIONS(969), 1, - anon_sym_LPAREN, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2482), 1, sym_word, - ACTIONS(2486), 1, - anon_sym_LT_LT_LT, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(2492), 1, - sym_test_operator, - ACTIONS(2494), 1, - sym__bare_dollar, - STATE(617), 1, - aux_sym_command_repeat2, - STATE(1955), 1, + [7562] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1429), 1, aux_sym__literal_repeat1, - STATE(2050), 1, + STATE(1534), 1, sym_concatenation, - STATE(2073), 1, - sym_herestring_redirect, - STATE(4522), 1, - sym_subshell, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2484), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2490), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1336), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1738), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1340), 10, + ACTIONS(2496), 5, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [8975] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2504), 1, - sym__special_character, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2522), 1, + sym_variable_name, sym_test_operator, - ACTIONS(2524), 1, sym__brace_start, - STATE(1524), 1, - aux_sym__literal_repeat1, - ACTIONS(1943), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2498), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(511), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2496), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1186), 9, + STATE(1100), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70648,7 +82615,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 22, + ACTIONS(2494), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -70671,22 +82639,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9074] = 7, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(2339), 1, anon_sym_DQUOTE, - STATE(1145), 1, + ACTIONS(2492), 1, + sym_variable_name, + STATE(1463), 1, sym_string, - ACTIONS(2530), 2, + ACTIONS(2490), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2526), 9, + ACTIONS(2488), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70696,7 +82682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 38, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -70707,6 +82693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -70735,84 +82722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9145] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2534), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2532), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [9212] = 7, + [7706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - STATE(1145), 1, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, sym_string, - ACTIONS(2530), 2, + ACTIONS(2068), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2526), 9, + ACTIONS(2066), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70822,21 +82749,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 38, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70861,46 +82788,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9283] = 7, + [7780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + STATE(1382), 1, + aux_sym__literal_repeat1, + STATE(1607), 1, + sym_concatenation, + ACTIONS(2500), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 38, + aux_sym_heredoc_redirect_token1, + STATE(1081), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70909,11 +82835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70925,22 +82852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9354] = 7, + [7850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - STATE(1051), 1, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, sym_string, - ACTIONS(2339), 2, + ACTIONS(2068), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2337), 9, + ACTIONS(2066), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70950,22 +82879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 38, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70975,6 +82903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -70989,54 +82918,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9425] = 22, + [7924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(2508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2349), 1, + ACTIONS(2511), 1, anon_sym_DOLLAR, - ACTIONS(2351), 1, + ACTIONS(2514), 1, sym__special_character, - ACTIONS(2353), 1, + ACTIONS(2517), 1, anon_sym_DQUOTE, - ACTIONS(2355), 1, + ACTIONS(2520), 1, aux_sym_number_token1, - ACTIONS(2357), 1, + ACTIONS(2523), 1, aux_sym_number_token2, - ACTIONS(2359), 1, + ACTIONS(2526), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, + ACTIONS(2532), 1, anon_sym_BQUOTE, - ACTIONS(2365), 1, + ACTIONS(2535), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2371), 1, + ACTIONS(2541), 1, sym_test_operator, - ACTIONS(2373), 1, + ACTIONS(2544), 1, sym__brace_start, - ACTIONS(2536), 1, - aux_sym__simple_variable_name_token1, - STATE(1416), 1, + STATE(1567), 1, aux_sym__literal_repeat1, - ACTIONS(2182), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2345), 2, + ACTIONS(2505), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2367), 2, + ACTIONS(2538), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(509), 2, + STATE(609), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2343), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2216), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2502), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1184), 9, + STATE(1269), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71046,7 +82974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 21, + ACTIONS(2214), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71068,91 +82996,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9526] = 37, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [8024] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(435), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(437), 1, + ACTIONS(2261), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR, - ACTIONS(441), 1, - sym__special_character, - ACTIONS(443), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(447), 1, + ACTIONS(2269), 1, aux_sym_number_token1, - ACTIONS(449), 1, + ACTIONS(2271), 1, aux_sym_number_token2, - ACTIONS(451), 1, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, + ACTIONS(2275), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, + ACTIONS(2277), 1, anon_sym_BQUOTE, - ACTIONS(457), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(463), 1, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(2361), 1, + sym__special_character, + ACTIONS(2365), 1, sym_variable_name, - ACTIONS(465), 1, + ACTIONS(2367), 1, sym_test_operator, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2538), 1, - sym_word, - STATE(426), 1, - sym_command_name, - STATE(757), 1, + ACTIONS(2414), 1, + aux_sym__simple_variable_name_token1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(758), 1, - aux_sym_command_repeat1, - STATE(931), 1, - sym_concatenation, - STATE(1397), 1, - sym_variable_assignment, - STATE(3955), 1, - sym_command, - STATE(5418), 1, + STATE(6773), 1, sym_subscript, - ACTIONS(445), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(459), 2, + ACTIONS(1799), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(3962), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(674), 9, + ACTIONS(2359), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(612), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1602), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71162,64 +83059,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9657] = 21, + ACTIONS(1797), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2549), 1, - anon_sym_DOLLAR, - ACTIONS(2552), 1, - sym__special_character, - ACTIONS(2555), 1, + ACTIONS(2428), 1, anon_sym_DQUOTE, - ACTIONS(2558), 1, - aux_sym_number_token1, - ACTIONS(2561), 1, - aux_sym_number_token2, - ACTIONS(2564), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2567), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2570), 1, - anon_sym_BQUOTE, - ACTIONS(2573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2579), 1, + ACTIONS(2432), 1, + sym_variable_name, + STATE(1204), 1, + sym_string, + ACTIONS(2430), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(2582), 1, sym__brace_start, - STATE(1420), 1, - aux_sym__literal_repeat1, - ACTIONS(2543), 2, + ACTIONS(2426), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(525), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(1900), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1898), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71229,7 +83116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71239,53 +83129,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [9756] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8204] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 1, + ACTIONS(2163), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2502), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR, - ACTIONS(2504), 1, - sym__special_character, - ACTIONS(2506), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2175), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2178), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2181), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, + ACTIONS(2187), 1, anon_sym_BQUOTE, - ACTIONS(2518), 1, + ACTIONS(2190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2522), 1, - sym_test_operator, - ACTIONS(2524), 1, + ACTIONS(2205), 1, sym__brace_start, - STATE(1524), 1, + ACTIONS(2550), 1, + sym__special_character, + ACTIONS(2553), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2556), 1, + sym_variable_name, + ACTIONS(2559), 1, + sym_test_operator, + STATE(1743), 1, aux_sym__literal_repeat1, - ACTIONS(1981), 2, + STATE(6773), 1, + sym_subscript, + ACTIONS(1704), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2498), 2, + ACTIONS(2160), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2193), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(511), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2496), 3, + ACTIONS(2547), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1186), 9, + STATE(612), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1602), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71295,7 +83207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 22, + ACTIONS(1702), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71305,10 +83217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71318,21 +83227,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9855] = 6, + [8310] = 22, ACTIONS(3), 1, sym_comment, - STATE(1549), 1, - aux_sym__literal_repeat1, - STATE(538), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 5, - sym_file_descriptor, + ACTIONS(2301), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2303), 1, + anon_sym_DOLLAR, + ACTIONS(2305), 1, + sym__special_character, + ACTIONS(2307), 1, + anon_sym_DQUOTE, + ACTIONS(2309), 1, + aux_sym_number_token1, + ACTIONS(2311), 1, + aux_sym_number_token2, + ACTIONS(2313), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2317), 1, + anon_sym_BQUOTE, + ACTIONS(2319), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2325), 1, + sym_test_operator, + ACTIONS(2327), 1, + sym__brace_start, + ACTIONS(2566), 1, + aux_sym__simple_variable_name_token1, + STATE(1631), 1, + aux_sym__literal_repeat1, + ACTIONS(2295), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2321), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2564), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(598), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2293), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1190), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2562), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8412] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1567), 1, + aux_sym__literal_repeat1, + STATE(609), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1174), 9, + STATE(1269), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71342,7 +83331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 38, + ACTIONS(2072), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -71353,8 +83342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71381,91 +83371,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9924] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [8482] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(302), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(304), 1, + ACTIONS(2572), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR, - ACTIONS(308), 1, + ACTIONS(2576), 1, sym__special_character, - ACTIONS(310), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(2580), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(2582), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(2586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(2588), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(2590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(330), 1, - sym_variable_name, - ACTIONS(332), 1, + ACTIONS(2594), 1, sym_test_operator, - ACTIONS(334), 1, + ACTIONS(2596), 1, sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2585), 1, - sym_word, - STATE(439), 1, - sym_command_name, - STATE(814), 1, - aux_sym_command_repeat1, - STATE(948), 1, + STATE(1899), 1, aux_sym__literal_repeat1, - STATE(1176), 1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2570), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2592), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(621), 2, sym_concatenation, - STATE(1900), 1, - sym_variable_assignment, - STATE(4039), 1, - sym_command, - STATE(5438), 1, - sym_subscript, - ACTIONS(312), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2568), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4041), 2, - sym_subshell, - sym_test_command, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(925), 9, + sym_word, + STATE(1394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71475,153 +83426,278 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10055] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2532), 2, + ACTIONS(2072), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2534), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [8581] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2604), 1, + anon_sym_DOLLAR, + ACTIONS(2606), 1, + sym__special_character, + ACTIONS(2608), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2618), 1, anon_sym_BQUOTE, + ACTIONS(2620), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2624), 1, + sym_test_operator, + ACTIONS(2626), 1, + sym__brace_start, + STATE(1803), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2600), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, + STATE(630), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2598), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1381), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8680] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2634), 1, + anon_sym_LT_LT_LT, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, anon_sym_DOLLAR, + ACTIONS(2640), 1, sym__special_character, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, aux_sym_number_token1, + ACTIONS(2648), 1, aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [10122] = 37, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2660), 1, + sym_test_operator, + ACTIONS(2662), 1, + sym__bare_dollar, + ACTIONS(2664), 1, + sym__brace_start, + STATE(752), 1, + aux_sym_command_repeat2, + STATE(2417), 1, + aux_sym__literal_repeat1, + STATE(2558), 1, + sym_concatenation, + STATE(2562), 1, + sym_herestring_redirect, + STATE(5656), 1, + sym_subshell, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2632), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2644), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1440), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2211), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1442), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8795] = 37, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(302), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(304), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(308), 1, + ACTIONS(51), 1, sym__special_character, - ACTIONS(310), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(330), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(75), 1, sym_variable_name, - ACTIONS(332), 1, + ACTIONS(77), 1, sym_test_operator, - ACTIONS(334), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(1326), 1, + ACTIONS(1394), 1, anon_sym_LT_LT_LT, - ACTIONS(1328), 1, + ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2585), 1, + ACTIONS(2666), 1, sym_word, - STATE(437), 1, + STATE(534), 1, sym_command_name, - STATE(788), 1, + STATE(937), 1, aux_sym_command_repeat1, - STATE(948), 1, + STATE(1212), 1, aux_sym__literal_repeat1, - STATE(1176), 1, + STATE(1386), 1, sym_concatenation, - STATE(1576), 1, + STATE(2122), 1, sym_variable_assignment, - STATE(4039), 1, + STATE(5026), 1, sym_command, - STATE(5438), 1, + STATE(6774), 1, sym_subscript, - ACTIONS(312), 2, + ACTIONS(55), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(326), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1324), 2, + ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3000), 2, + STATE(3581), 2, sym_file_redirect, sym_herestring_redirect, - STATE(4041), 2, + STATE(5014), 2, sym_subshell, sym_test_command, - ACTIONS(1322), 3, + ACTIONS(1390), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1320), 5, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(925), 9, + STATE(957), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71631,91 +83707,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10253] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + [8926] = 37, ACTIONS(71), 1, sym_comment, - ACTIONS(137), 1, + ACTIONS(169), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(217), 1, sym_variable_name, - ACTIONS(278), 1, + ACTIONS(1027), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(302), 1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(1041), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(304), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(1045), 1, anon_sym_DOLLAR, - ACTIONS(310), 1, + ACTIONS(1047), 1, + sym__special_character, + ACTIONS(1049), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(1053), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(1055), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(1059), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(741), 1, - sym__special_character, - ACTIONS(745), 1, + ACTIONS(1069), 1, sym_test_operator, - ACTIONS(1326), 1, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(1394), 1, anon_sym_LT_LT_LT, - ACTIONS(1328), 1, + ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2587), 1, + ACTIONS(2668), 1, sym_word, - STATE(431), 1, + STATE(620), 1, sym_command_name, - STATE(812), 1, + STATE(955), 1, aux_sym_command_repeat1, - STATE(948), 1, + STATE(2332), 1, aux_sym__literal_repeat1, - STATE(1176), 1, + STATE(2368), 1, sym_concatenation, - STATE(1576), 1, + STATE(2941), 1, sym_variable_assignment, - STATE(4039), 1, + STATE(5624), 1, sym_command, - STATE(5403), 1, + STATE(6756), 1, sym_subscript, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(743), 2, + ACTIONS(1051), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1324), 2, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3000), 2, + STATE(3581), 2, sym_file_redirect, sym_herestring_redirect, - STATE(4041), 2, + STATE(5623), 2, sym_subshell, sym_test_command, - ACTIONS(1322), 3, + ACTIONS(1390), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1320), 5, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(782), 9, + STATE(1799), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71725,22 +83801,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10384] = 6, - ACTIONS(3), 1, + [9057] = 29, + ACTIONS(71), 1, sym_comment, - STATE(1420), 1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2634), 1, + anon_sym_LT_LT_LT, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, + anon_sym_DOLLAR, + ACTIONS(2640), 1, + sym__special_character, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2660), 1, + sym_test_operator, + ACTIONS(2662), 1, + sym__bare_dollar, + ACTIONS(2664), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(2417), 1, aux_sym__literal_repeat1, - STATE(525), 2, + STATE(2558), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 6, + STATE(2562), 1, + sym_herestring_redirect, + STATE(5634), 1, + sym_subshell, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2632), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2644), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2211), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1408), 10, sym_file_descriptor, - sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [9172] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2676), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2679), 1, + anon_sym_DOLLAR, + ACTIONS(2682), 1, + sym__special_character, + ACTIONS(2685), 1, + anon_sym_DQUOTE, + ACTIONS(2688), 1, + aux_sym_number_token1, + ACTIONS(2691), 1, + aux_sym_number_token2, + ACTIONS(2694), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2700), 1, + anon_sym_BQUOTE, + ACTIONS(2703), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2709), 1, sym_test_operator, + ACTIONS(2712), 1, sym__brace_start, - ts_builtin_sym_end, + STATE(1899), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1091), 9, + ACTIONS(2673), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(621), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2670), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71750,8 +83942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2214), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71762,6 +83953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71772,32 +83965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10453] = 5, + [9271] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(2719), 2, + anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2478), 3, - anon_sym_RPAREN, + ACTIONS(2721), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2474), 23, + ACTIONS(2717), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -71821,7 +83998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2472), 28, + ACTIONS(2715), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71850,83 +84027,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10520] = 6, - ACTIONS(3), 1, + [9338] = 37, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - STATE(1549), 1, - aux_sym__literal_repeat1, - STATE(538), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1981), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1979), 38, + ACTIONS(288), 1, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(314), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, anon_sym_DOLLAR, + ACTIONS(318), 1, sym__special_character, + ACTIONS(320), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(324), 1, aux_sym_number_token1, + ACTIONS(326), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, anon_sym_BQUOTE, + ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10589] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1386), 1, - aux_sym__literal_repeat1, - STATE(1418), 1, - sym_concatenation, - ACTIONS(2224), 5, - sym_file_descriptor, + ACTIONS(340), 1, sym_variable_name, + ACTIONS(342), 1, sym_test_operator, + ACTIONS(344), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1011), 9, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2723), 1, + sym_word, + STATE(544), 1, + sym_command_name, + STATE(997), 1, + aux_sym_command_repeat1, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(1974), 1, + sym_variable_assignment, + STATE(5026), 1, + sym_command, + STATE(6790), 1, + sym_subscript, + ACTIONS(322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5014), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1078), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71936,176 +84121,215 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + [9469] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2719), 1, anon_sym_SEMI_SEMI, + ACTIONS(2721), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + ACTIONS(2717), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [10658] = 7, - ACTIONS(3), 1, + [9536] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(2727), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2725), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2717), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [10729] = 29, + [9603] = 37, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(71), 1, sym_comment, - ACTIONS(969), 1, - anon_sym_LPAREN, - ACTIONS(979), 1, + ACTIONS(288), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, + ACTIONS(316), 1, anon_sym_DOLLAR, - ACTIONS(985), 1, + ACTIONS(318), 1, + sym__special_character, + ACTIONS(320), 1, anon_sym_DQUOTE, - ACTIONS(989), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(991), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(993), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, + ACTIONS(332), 1, anon_sym_BQUOTE, - ACTIONS(999), 1, + ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, + ACTIONS(340), 1, + sym_variable_name, + ACTIONS(342), 1, + sym_test_operator, + ACTIONS(344), 1, sym__brace_start, - ACTIONS(2482), 1, - sym_word, - ACTIONS(2486), 1, + ACTIONS(1394), 1, anon_sym_LT_LT_LT, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(2492), 1, - sym_test_operator, - ACTIONS(2494), 1, - sym__bare_dollar, - STATE(600), 1, - aux_sym_command_repeat2, - STATE(1955), 1, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2723), 1, + sym_word, + STATE(554), 1, + sym_command_name, + STATE(958), 1, + aux_sym_command_repeat1, + STATE(1267), 1, aux_sym__literal_repeat1, - STATE(2050), 1, + STATE(1376), 1, sym_concatenation, - STATE(2073), 1, - sym_herestring_redirect, - STATE(4521), 1, - sym_subshell, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2484), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2490), 2, + STATE(2286), 1, + sym_variable_assignment, + STATE(5026), 1, + sym_command, + STATE(6790), 1, + sym_subscript, + ACTIONS(322), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1362), 7, - anon_sym_PIPE, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5014), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1738), 9, + STATE(1078), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72115,64 +84339,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1364), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [10844] = 21, + [9734] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2598), 1, + ACTIONS(2738), 1, anon_sym_DOLLAR, - ACTIONS(2601), 1, + ACTIONS(2741), 1, sym__special_character, - ACTIONS(2604), 1, + ACTIONS(2744), 1, anon_sym_DQUOTE, - ACTIONS(2607), 1, + ACTIONS(2747), 1, aux_sym_number_token1, - ACTIONS(2610), 1, + ACTIONS(2750), 1, aux_sym_number_token2, - ACTIONS(2613), 1, + ACTIONS(2753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2759), 1, anon_sym_BQUOTE, - ACTIONS(2622), 1, + ACTIONS(2762), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2628), 1, + ACTIONS(2768), 1, sym_test_operator, - ACTIONS(2631), 1, + ACTIONS(2771), 1, sym__brace_start, - STATE(1549), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - ACTIONS(2592), 2, + ACTIONS(2732), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2625), 2, + ACTIONS(2765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(538), 2, + STATE(627), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1900), 3, + ACTIONS(2216), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2589), 3, + ACTIONS(2729), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1174), 9, + STATE(1370), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72182,7 +84395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 21, + ACTIONS(2214), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72204,30 +84417,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [10943] = 6, + [9833] = 8, ACTIONS(3), 1, sym_comment, - STATE(1394), 1, - aux_sym__literal_repeat1, - STATE(1413), 1, - sym_concatenation, - ACTIONS(2335), 5, - sym_file_descriptor, + ACTIONS(2608), 1, + anon_sym_DQUOTE, + ACTIONS(2778), 1, sym_variable_name, + STATE(1525), 1, + sym_string, + ACTIONS(2776), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1002), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 39, + ACTIONS(2774), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -72238,6 +84454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -72250,12 +84467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -72267,124 +84482,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11012] = 6, + [9906] = 22, ACTIONS(3), 1, sym_comment, - STATE(1515), 1, - aux_sym__literal_repeat1, - STATE(1631), 1, - sym_concatenation, - ACTIONS(2224), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1146), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2784), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2786), 1, anon_sym_DOLLAR, + ACTIONS(2788), 1, sym__special_character, + ACTIONS(2790), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2792), 1, aux_sym_number_token1, + ACTIONS(2794), 1, aux_sym_number_token2, + ACTIONS(2796), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2798), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2800), 1, anon_sym_BQUOTE, + ACTIONS(2802), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [11080] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, - anon_sym_BQUOTE, - ACTIONS(1471), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(2216), 1, - anon_sym_LT_LT_LT, - ACTIONS(2218), 1, - sym__special_character, - ACTIONS(2220), 1, + ACTIONS(2806), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2808), 1, sym_test_operator, - STATE(546), 1, - aux_sym_command_repeat2, - STATE(1110), 1, + ACTIONS(2810), 1, + sym__brace_start, + STATE(1860), 1, aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1455), 2, + ACTIONS(2564), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + ACTIONS(2804), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2214), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2212), 3, + STATE(633), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1458), 9, + STATE(1326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72394,14 +84539,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1479), 16, + ACTIONS(2562), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72411,54 +84561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11188] = 22, + [10007] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(2821), 1, anon_sym_DOLLAR, - ACTIONS(2642), 1, + ACTIONS(2824), 1, sym__special_character, - ACTIONS(2644), 1, + ACTIONS(2827), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(2830), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(2833), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(2836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(2842), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(2845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2660), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2662), 1, + ACTIONS(2851), 1, sym_test_operator, - ACTIONS(2664), 1, + ACTIONS(2854), 1, sym__brace_start, - STATE(1629), 1, + STATE(1803), 1, aux_sym__literal_repeat1, - ACTIONS(2275), 2, + ACTIONS(2216), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + ACTIONS(2815), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(2848), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(576), 2, + STATE(630), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2634), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2812), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72468,7 +84616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 20, + ACTIONS(2214), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72478,8 +84626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72489,55 +84639,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11288] = 22, + [10106] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(2861), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2672), 1, + ACTIONS(2863), 1, anon_sym_DOLLAR, - ACTIONS(2674), 1, + ACTIONS(2865), 1, sym__special_character, - ACTIONS(2676), 1, + ACTIONS(2867), 1, anon_sym_DQUOTE, - ACTIONS(2678), 1, + ACTIONS(2869), 1, aux_sym_number_token1, - ACTIONS(2680), 1, + ACTIONS(2871), 1, aux_sym_number_token2, - ACTIONS(2682), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2684), 1, + ACTIONS(2875), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2686), 1, + ACTIONS(2877), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(2879), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2692), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2694), 1, + ACTIONS(2883), 1, sym_test_operator, - ACTIONS(2696), 1, + ACTIONS(2885), 1, sym__brace_start, - STATE(1577), 1, + STATE(4262), 1, aux_sym__literal_repeat1, - ACTIONS(2668), 2, + STATE(4820), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2859), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2690), 2, + ACTIONS(2881), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(559), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2182), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2666), 3, + ACTIONS(2857), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1376), 9, + STATE(4240), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72547,7 +84693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 19, + ACTIONS(2494), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72557,7 +84703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72567,54 +84716,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11388] = 22, + anon_sym_LT_LT_LT, + [10205] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2786), 1, anon_sym_DOLLAR, - ACTIONS(2710), 1, + ACTIONS(2788), 1, sym__special_character, - ACTIONS(2713), 1, + ACTIONS(2790), 1, anon_sym_DQUOTE, - ACTIONS(2716), 1, + ACTIONS(2792), 1, aux_sym_number_token1, - ACTIONS(2719), 1, + ACTIONS(2794), 1, aux_sym_number_token2, - ACTIONS(2722), 1, + ACTIONS(2796), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2725), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2728), 1, + ACTIONS(2800), 1, anon_sym_BQUOTE, - ACTIONS(2731), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2737), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2740), 1, + ACTIONS(2808), 1, sym_test_operator, - ACTIONS(2743), 1, + ACTIONS(2810), 1, sym__brace_start, - STATE(1629), 1, + ACTIONS(2887), 1, + aux_sym__simple_variable_name_token1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(2289), 2, + ACTIONS(2299), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2701), 2, + ACTIONS(2782), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2734), 2, + ACTIONS(2804), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(544), 2, + STATE(629), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2698), 3, + ACTIONS(2780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72624,7 +84774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 20, + ACTIONS(2297), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72634,8 +84784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72645,52 +84796,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11488] = 21, + [10306] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2895), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(2758), 1, + ACTIONS(2901), 1, sym__special_character, - ACTIONS(2761), 1, + ACTIONS(2904), 1, anon_sym_DQUOTE, - ACTIONS(2764), 1, + ACTIONS(2907), 1, aux_sym_number_token1, - ACTIONS(2767), 1, + ACTIONS(2910), 1, aux_sym_number_token2, - ACTIONS(2770), 1, + ACTIONS(2913), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2773), 1, + ACTIONS(2916), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2776), 1, + ACTIONS(2919), 1, anon_sym_BQUOTE, - ACTIONS(2779), 1, + ACTIONS(2922), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2785), 1, + ACTIONS(2928), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2931), 1, sym_test_operator, - ACTIONS(2788), 1, + ACTIONS(2934), 1, sym__brace_start, - STATE(1769), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1900), 2, + ACTIONS(2442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2749), 2, + ACTIONS(2892), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2782), 2, + ACTIONS(2925), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(545), 2, + STATE(633), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2746), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2889), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1355), 9, + STATE(1326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72700,7 +84853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 21, + ACTIONS(2440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72722,63 +84875,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11586] = 27, + [10407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1786), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOLLAR, - ACTIONS(1795), 1, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, - aux_sym_number_token1, - ACTIONS(1801), 1, - aux_sym_number_token2, - ACTIONS(1804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1807), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1810), 1, - anon_sym_BQUOTE, - ACTIONS(1813), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1825), 1, - sym__bare_dollar, - ACTIONS(1828), 1, - sym__brace_start, - ACTIONS(2797), 1, - anon_sym_LT_LT_LT, - ACTIONS(2800), 1, - sym__special_character, - ACTIONS(2803), 1, + ACTIONS(2778), 1, + sym_variable_name, + STATE(1525), 1, + sym_string, + ACTIONS(2776), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - ACTIONS(2806), 1, sym_test_operator, - STATE(546), 1, - aux_sym_command_repeat2, - STATE(1110), 1, - aux_sym__literal_repeat1, - STATE(1314), 1, - sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1777), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1816), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2794), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2791), 3, + sym__brace_start, + ACTIONS(2774), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10480] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2863), 1, + anon_sym_DOLLAR, + ACTIONS(2865), 1, + sym__special_character, + ACTIONS(2867), 1, + anon_sym_DQUOTE, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2877), 1, + anon_sym_BQUOTE, + ACTIONS(2879), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(2939), 1, + sym_test_operator, + STATE(4351), 1, + aux_sym__literal_repeat1, + STATE(4789), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2859), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2881), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2937), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1458), 9, + STATE(4247), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72788,14 +84994,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1398), 16, + ACTIONS(2498), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72805,62 +85017,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11696] = 26, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [10579] = 37, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_DOLLAR, + ACTIONS(137), 1, + sym_variable_name, + ACTIONS(288), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(314), 1, - aux_sym_number_token1, + anon_sym_DOLLAR_LBRACK, ACTIONS(316), 1, - aux_sym_number_token2, + anon_sym_DOLLAR, ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1465), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1469), 1, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, anon_sym_BQUOTE, - ACTIONS(1471), 1, + ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1477), 1, - sym__bare_dollar, - ACTIONS(2216), 1, - anon_sym_LT_LT_LT, - ACTIONS(2218), 1, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(771), 1, sym__special_character, - ACTIONS(2220), 1, + ACTIONS(775), 1, sym_test_operator, - STATE(546), 1, - aux_sym_command_repeat2, - STATE(1110), 1, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2941), 1, + sym_word, + STATE(533), 1, + sym_command_name, + STATE(951), 1, + aux_sym_command_repeat1, + STATE(1267), 1, aux_sym__literal_repeat1, - STATE(1314), 1, + STATE(1376), 1, sym_concatenation, - STATE(1324), 1, - sym_herestring_redirect, - ACTIONS(1455), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1473), 2, + STATE(1974), 1, + sym_variable_assignment, + STATE(5026), 1, + sym_command, + STATE(6754), 1, + sym_subscript, + ACTIONS(336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1511), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2214), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2212), 3, + ACTIONS(773), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1458), 9, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5014), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(938), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72870,14 +85112,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1509), 16, + [10710] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2307), 1, + anon_sym_DQUOTE, + ACTIONS(2947), 1, + sym_variable_name, + STATE(1432), 1, + sym_string, + ACTIONS(2945), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2943), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72887,21 +85162,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11804] = 7, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10783] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(2307), 1, anon_sym_DQUOTE, - STATE(1065), 1, + ACTIONS(2947), 1, + sym_variable_name, + STATE(1432), 1, sym_string, - ACTIONS(2811), 2, + ACTIONS(2945), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2809), 9, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -72911,7 +85203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 38, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -72950,63 +85242,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11874] = 21, + [10856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2598), 1, - anon_sym_DOLLAR, - ACTIONS(2604), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2607), 1, - aux_sym_number_token1, - ACTIONS(2610), 1, - aux_sym_number_token2, - ACTIONS(2613), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2619), 1, - anon_sym_BQUOTE, - ACTIONS(2622), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2631), 1, - sym__brace_start, - ACTIONS(2816), 1, - sym__special_character, - ACTIONS(2819), 1, - sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(2592), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2625), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(549), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1900), 3, - sym_file_descriptor, + ACTIONS(2953), 1, sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2813), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1319), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1585), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1898), 20, + ACTIONS(2951), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2949), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73017,6 +85280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -73026,24 +85291,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [11972] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - STATE(1312), 1, + ACTIONS(2953), 1, + sym_variable_name, + STATE(1585), 1, sym_string, - ACTIONS(2826), 2, + ACTIONS(2951), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 5, + ACTIONS(1241), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2822), 9, + ACTIONS(2949), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73053,7 +85333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 36, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73065,6 +85345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -73090,113 +85372,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12042] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2840), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2842), 1, - sym_variable_name, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2440), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2423), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [12170] = 7, + [11002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - STATE(1065), 1, + ACTIONS(2959), 1, + sym_variable_name, + STATE(1213), 1, sym_string, - ACTIONS(2811), 2, + ACTIONS(2957), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2809), 9, + ACTIONS(2955), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73206,7 +85398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 38, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73245,21 +85437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12240] = 6, + [11075] = 6, ACTIONS(3), 1, sym_comment, - STATE(1430), 1, + STATE(1801), 1, aux_sym__literal_repeat1, - STATE(1753), 1, + STATE(651), 2, sym_concatenation, - ACTIONS(2335), 6, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1126), 9, + STATE(1399), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73269,7 +85462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 37, + ACTIONS(2094), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73307,21 +85500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12308] = 7, + [11144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - STATE(1277), 1, + ACTIONS(2959), 1, + sym_variable_name, + STATE(1213), 1, sym_string, - ACTIONS(2846), 2, + ACTIONS(2957), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2844), 9, + ACTIONS(2955), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73331,7 +85526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 38, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73370,21 +85565,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12378] = 6, + [11217] = 37, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(1015), 1, + sym__special_character, + ACTIONS(1021), 1, + sym_variable_name, + ACTIONS(1023), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2961), 1, + sym_word, + STATE(596), 1, + sym_command_name, + STATE(933), 1, + aux_sym_command_repeat1, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(1974), 1, + sym_variable_assignment, + STATE(5026), 1, + sym_command, + STATE(6759), 1, + sym_subscript, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5014), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1717), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11348] = 6, ACTIONS(3), 1, sym_comment, - STATE(1549), 1, + STATE(1643), 1, aux_sym__literal_repeat1, - STATE(549), 2, + STATE(1776), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 5, + ACTIONS(2500), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1319), 9, + STATE(1184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73394,7 +85682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 37, + ACTIONS(2498), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73406,6 +85694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -73432,20 +85722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12446] = 6, + [11417] = 6, ACTIONS(3), 1, sym_comment, - STATE(1433), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - STATE(1748), 1, + STATE(627), 2, sym_concatenation, - ACTIONS(2335), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1090), 9, + STATE(1370), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73455,7 +85746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 38, + ACTIONS(2094), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73494,21 +85785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12514] = 7, + [11486] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2965), 1, anon_sym_DQUOTE, - STATE(1277), 1, + ACTIONS(2969), 1, + sym_variable_name, + STATE(1454), 1, sym_string, - ACTIONS(2846), 2, + ACTIONS(2967), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2844), 9, + ACTIONS(2963), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73518,7 +85811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 38, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73529,7 +85822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -73543,6 +85835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -73557,21 +85850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12584] = 6, + [11559] = 6, ACTIONS(3), 1, sym_comment, - STATE(1549), 1, + STATE(1606), 1, aux_sym__literal_repeat1, - STATE(549), 2, + STATE(1767), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1981), 5, + ACTIONS(2496), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1319), 9, + STATE(1275), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73581,7 +85873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 37, + ACTIONS(2494), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73593,6 +85885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -73619,55 +85913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12652] = 22, + [11628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2857), 1, - anon_sym_DOLLAR, - ACTIONS(2860), 1, - sym__special_character, - ACTIONS(2863), 1, - anon_sym_DQUOTE, - ACTIONS(2866), 1, - aux_sym_number_token1, - ACTIONS(2869), 1, - aux_sym_number_token2, - ACTIONS(2872), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2875), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2878), 1, - anon_sym_BQUOTE, - ACTIONS(2881), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2887), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2890), 1, - sym_test_operator, - ACTIONS(2893), 1, - sym__brace_start, - STATE(1577), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - ACTIONS(2851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2884), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(559), 2, + STATE(627), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2289), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 5, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2848), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1376), 9, + STATE(1370), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73677,7 +85937,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 19, + ACTIONS(2072), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73687,6 +85948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -73697,52 +85959,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12752] = 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [11697] = 37, + ACTIONS(71), 1, + sym_comment, + ACTIONS(671), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(677), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_LBRACK, + ACTIONS(695), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(705), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(711), 1, + sym__special_character, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(733), 1, + sym_variable_name, + ACTIONS(735), 1, + sym_test_operator, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2971), 1, + sym_word, + STATE(530), 1, + sym_command_name, + STATE(989), 1, + aux_sym_command_repeat1, + STATE(1026), 1, + aux_sym__literal_repeat1, + STATE(1169), 1, + sym_concatenation, + STATE(1909), 1, + sym_variable_assignment, + STATE(5046), 1, + sym_command, + STATE(6760), 1, + sym_subscript, + ACTIONS(715), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5071), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(852), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11828] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2902), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR, - ACTIONS(2904), 1, + ACTIONS(2985), 1, sym__special_character, - ACTIONS(2906), 1, + ACTIONS(2988), 1, anon_sym_DQUOTE, - ACTIONS(2908), 1, + ACTIONS(2991), 1, aux_sym_number_token1, - ACTIONS(2910), 1, + ACTIONS(2994), 1, aux_sym_number_token2, - ACTIONS(2912), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2914), 1, + ACTIONS(3000), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2916), 1, + ACTIONS(3003), 1, anon_sym_BQUOTE, - ACTIONS(2918), 1, + ACTIONS(3006), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(3012), 1, sym_test_operator, - ACTIONS(2924), 1, + ACTIONS(3015), 1, sym__brace_start, - STATE(1769), 1, + STATE(1801), 1, aux_sym__literal_repeat1, - ACTIONS(1981), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2898), 2, + ACTIONS(2976), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2920), 2, + ACTIONS(3009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(545), 2, + STATE(651), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2896), 3, + ACTIONS(2973), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1355), 9, + ACTIONS(2216), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1399), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73752,7 +86127,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 21, + ACTIONS(2214), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [11927] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_DQUOTE, + ACTIONS(2969), 1, + sym_variable_name, + STATE(1454), 1, + sym_string, + ACTIONS(2967), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2963), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73774,52 +86197,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12850] = 21, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [12000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(2572), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2902), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR, - ACTIONS(2904), 1, + ACTIONS(2576), 1, sym__special_character, - ACTIONS(2906), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2908), 1, + ACTIONS(2580), 1, aux_sym_number_token1, - ACTIONS(2910), 1, + ACTIONS(2582), 1, aux_sym_number_token2, - ACTIONS(2912), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2914), 1, + ACTIONS(2586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2916), 1, + ACTIONS(2588), 1, anon_sym_BQUOTE, - ACTIONS(2918), 1, + ACTIONS(2590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(2594), 1, sym_test_operator, - ACTIONS(2924), 1, + ACTIONS(2596), 1, sym__brace_start, - STATE(1769), 1, + STATE(1899), 1, aux_sym__literal_repeat1, - ACTIONS(1943), 2, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2898), 2, + ACTIONS(2570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2920), 2, + ACTIONS(2592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(545), 2, + STATE(621), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2896), 3, + ACTIONS(2568), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1355), 9, + STATE(1394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73829,7 +86268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 21, + ACTIONS(2094), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73851,32 +86290,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12948] = 7, + anon_sym_LT_LT_LT, + [12099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DQUOTE, - STATE(1078), 1, - sym_string, - ACTIONS(2928), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + STATE(1801), 1, + aux_sym__literal_repeat1, + STATE(651), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2926), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1399), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -73888,8 +86328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -73899,10 +86337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -73914,51 +86354,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13018] = 21, - ACTIONS(3), 1, + [12168] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2725), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2727), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2717), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [12235] = 37, + ACTIONS(71), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(415), 1, + anon_sym_LPAREN, + ACTIONS(437), 1, + anon_sym_LBRACK, + ACTIONS(439), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(451), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2936), 1, + ACTIONS(453), 1, anon_sym_DOLLAR, - ACTIONS(2938), 1, + ACTIONS(455), 1, sym__special_character, - ACTIONS(2940), 1, + ACTIONS(457), 1, anon_sym_DQUOTE, - ACTIONS(2942), 1, + ACTIONS(461), 1, aux_sym_number_token1, - ACTIONS(2944), 1, + ACTIONS(463), 1, aux_sym_number_token2, - ACTIONS(2946), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2948), 1, + ACTIONS(467), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(469), 1, anon_sym_BQUOTE, - ACTIONS(2952), 1, + ACTIONS(471), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2956), 1, + ACTIONS(477), 1, + sym_variable_name, + ACTIONS(479), 1, sym_test_operator, - ACTIONS(2958), 1, + ACTIONS(481), 1, sym__brace_start, - STATE(3638), 1, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3018), 1, + sym_word, + STATE(528), 1, + sym_command_name, + STATE(925), 1, + aux_sym_command_repeat1, + STATE(926), 1, aux_sym__literal_repeat1, - STATE(3993), 1, + STATE(1082), 1, sym_concatenation, - ACTIONS(2335), 2, + STATE(1703), 1, + sym_variable_assignment, + STATE(4945), 1, + sym_command, + STATE(6736), 1, + sym_subscript, + ACTIONS(459), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(473), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4943), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(815), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12366] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2604), 1, + anon_sym_DOLLAR, + ACTIONS(2606), 1, + sym__special_character, + ACTIONS(2608), 1, + anon_sym_DQUOTE, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2618), 1, + anon_sym_BQUOTE, + ACTIONS(2620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2624), 1, + sym_test_operator, + ACTIONS(2626), 1, + sym__brace_start, + STATE(1803), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2954), 2, + ACTIONS(2622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2930), 3, + STATE(630), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2598), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3625), 9, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73968,7 +86565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 22, + ACTIONS(2094), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73991,217 +86588,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13116] = 36, - ACTIONS(71), 1, + [12465] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, + ACTIONS(3024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(3026), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(3028), 1, + sym__special_character, + ACTIONS(3030), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(3032), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(3034), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(3036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(3038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + ACTIONS(3042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, + ACTIONS(3046), 1, sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2960), 1, - aux_sym__simple_variable_name_token1, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, + ACTIONS(3048), 1, + sym__brace_start, + STATE(4597), 1, aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2547), 1, - sym__expression, - ACTIONS(1039), 2, + STATE(4964), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3022), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(3044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, + ACTIONS(3020), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, + sym_word, + STATE(4310), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2415), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [13244] = 36, + ACTIONS(2494), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [12563] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(225), 1, + ACTIONS(171), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1119), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2828), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(3052), 1, anon_sym_BANG, - ACTIONS(2836), 1, + ACTIONS(3058), 1, anon_sym_TILDE, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2962), 1, + ACTIONS(3062), 1, aux_sym__simple_variable_name_token1, - STATE(1932), 1, + ACTIONS(3064), 1, + sym_variable_name, + STATE(2387), 1, sym_command_substitution, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - STATE(2547), 1, + STATE(3158), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2832), 2, + ACTIONS(3054), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(2834), 2, + ACTIONS(3056), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1931), 4, + STATE(2397), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2109), 4, + STATE(2456), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2424), 4, + STATE(2836), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [13372] = 7, + [12691] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(3072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3075), 1, + anon_sym_DOLLAR, + ACTIONS(3078), 1, + sym__special_character, + ACTIONS(3081), 1, anon_sym_DQUOTE, - STATE(1353), 1, - sym_string, - ACTIONS(2968), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3084), 1, + aux_sym_number_token1, + ACTIONS(3087), 1, + aux_sym_number_token2, + ACTIONS(3090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3093), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3096), 1, + anon_sym_BQUOTE, + ACTIONS(3099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3105), 1, sym_test_operator, + ACTIONS(3108), 1, sym__brace_start, - ACTIONS(2964), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 37, + STATE(2147), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3069), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3102), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(660), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3066), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74211,8 +86822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -74222,139 +86834,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13442] = 36, + [12789] = 36, ACTIONS(71), 1, sym_comment, ACTIONS(171), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1119), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2828), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(3052), 1, anon_sym_BANG, - ACTIONS(2836), 1, + ACTIONS(3058), 1, anon_sym_TILDE, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(2970), 1, + ACTIONS(3111), 1, aux_sym__simple_variable_name_token1, - STATE(1932), 1, + STATE(2387), 1, sym_command_substitution, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - STATE(2440), 1, + STATE(3158), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2832), 2, + ACTIONS(3054), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(2834), 2, + ACTIONS(3056), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1931), 4, + STATE(2397), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2109), 4, + STATE(2456), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2360), 4, + STATE(2799), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [13570] = 6, + [12917] = 8, ACTIONS(3), 1, sym_comment, - STATE(1547), 1, - aux_sym__literal_repeat1, - STATE(1742), 1, - sym_concatenation, - ACTIONS(2224), 6, - sym_file_descriptor, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3119), 1, sym_variable_name, + STATE(1864), 1, + sym_string, + ACTIONS(3117), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1155), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 37, + ACTIONS(3113), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -74365,6 +86963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -74375,12 +86974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -74392,100 +86990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13638] = 22, + [12989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2672), 1, - anon_sym_DOLLAR, - ACTIONS(2674), 1, - sym__special_character, - ACTIONS(2676), 1, - anon_sym_DQUOTE, - ACTIONS(2678), 1, - aux_sym_number_token1, - ACTIONS(2680), 1, - aux_sym_number_token2, - ACTIONS(2682), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2684), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2686), 1, - anon_sym_BQUOTE, - ACTIONS(2688), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2694), 1, - sym_test_operator, - ACTIONS(2696), 1, - sym__brace_start, - ACTIONS(2972), 1, - aux_sym__simple_variable_name_token1, - STATE(1577), 1, - aux_sym__literal_repeat1, - ACTIONS(2668), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2690), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(543), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2275), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2666), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1376), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2273), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [13738] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - STATE(1353), 1, + ACTIONS(3125), 1, + sym_variable_name, + STATE(1416), 1, sym_string, - ACTIONS(2968), 2, + ACTIONS(3123), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2964), 9, + ACTIONS(3121), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -74495,7 +87016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 37, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -74506,8 +87027,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -74518,7 +87040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -74533,34 +87054,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13808] = 7, + [13061] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(3133), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3136), 1, + anon_sym_DOLLAR, + ACTIONS(3139), 1, + sym__special_character, + ACTIONS(3142), 1, anon_sym_DQUOTE, - STATE(1312), 1, - sym_string, - ACTIONS(2826), 2, + ACTIONS(3145), 1, + aux_sym_number_token1, + ACTIONS(3148), 1, + aux_sym_number_token2, + ACTIONS(3151), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3157), 1, + anon_sym_BQUOTE, + ACTIONS(3160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3166), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3169), 1, sym_test_operator, + ACTIONS(3172), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2822), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 36, + STATE(2190), 1, + aux_sym__literal_repeat1, + ACTIONS(3130), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3163), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(664), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2442), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3127), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1681), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2440), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74580,159 +87132,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13878] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2974), 1, - aux_sym__simple_variable_name_token1, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2578), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2364), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14006] = 21, + [13161] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(3024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2936), 1, + ACTIONS(3026), 1, anon_sym_DOLLAR, - ACTIONS(2938), 1, + ACTIONS(3028), 1, sym__special_character, - ACTIONS(2940), 1, + ACTIONS(3030), 1, anon_sym_DQUOTE, - ACTIONS(2942), 1, + ACTIONS(3032), 1, aux_sym_number_token1, - ACTIONS(2944), 1, + ACTIONS(3034), 1, aux_sym_number_token2, - ACTIONS(2946), 1, + ACTIONS(3036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2948), 1, + ACTIONS(3038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(3040), 1, anon_sym_BQUOTE, - ACTIONS(2952), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2958), 1, + ACTIONS(3048), 1, sym__brace_start, - ACTIONS(2978), 1, + ACTIONS(3177), 1, sym_test_operator, - STATE(3672), 1, + STATE(4596), 1, aux_sym__literal_repeat1, - STATE(3990), 1, + STATE(4914), 1, sym_concatenation, - ACTIONS(2224), 2, + ACTIONS(2500), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2932), 2, + ACTIONS(3022), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2954), 2, + ACTIONS(3044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2976), 3, + ACTIONS(3175), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3615), 9, + STATE(4331), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -74742,7 +87186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 22, + ACTIONS(2498), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74752,7 +87196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -74765,22 +87208,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14104] = 7, + anon_sym_LT_LT_LT, + [13259] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - STATE(1078), 1, + ACTIONS(3125), 1, + sym_variable_name, + STATE(1416), 1, sym_string, - ACTIONS(2928), 2, + ACTIONS(3123), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2926), 9, + ACTIONS(3121), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -74790,7 +87235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 37, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -74828,146 +87273,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14174] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2980), 1, - aux_sym__simple_variable_name_token1, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2547), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2335), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14302] = 22, + [13331] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(2642), 1, + ACTIONS(3187), 1, sym__special_character, - ACTIONS(2644), 1, + ACTIONS(3189), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(3191), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(3193), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(3199), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2662), 1, + ACTIONS(3205), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3207), 1, sym_test_operator, - ACTIONS(2664), 1, + ACTIONS(3209), 1, sym__brace_start, - ACTIONS(2982), 1, - aux_sym__simple_variable_name_token1, - STATE(1629), 1, + STATE(1966), 1, aux_sym__literal_repeat1, - ACTIONS(2182), 2, + ACTIONS(2564), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + ACTIONS(3181), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(544), 2, + STATE(709), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2634), 3, + ACTIONS(3179), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1650), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -74977,7 +87330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 20, + ACTIONS(2562), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74998,113 +87351,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14402] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2984), 1, - aux_sym__simple_variable_name_token1, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2578), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2434), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14530] = 7, + [13431] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(3115), 1, anon_sym_DQUOTE, - STATE(1535), 1, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, sym_string, - ACTIONS(2988), 2, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2986), 9, + ACTIONS(3113), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -75114,7 +87377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 37, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -75125,9 +87388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -75138,6 +87400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -75152,22 +87415,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14599] = 7, + [13503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(3213), 1, anon_sym_DQUOTE, - STATE(893), 1, + ACTIONS(3217), 1, + sym_variable_name, + STATE(1919), 1, sym_string, - ACTIONS(2090), 2, + ACTIONS(3215), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, + ts_builtin_sym_end, + ACTIONS(3211), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -75177,19 +87442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 36, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75214,324 +87479,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14668] = 35, - ACTIONS(71), 1, + [13575] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(2790), 1, + anon_sym_DQUOTE, + ACTIONS(3223), 1, + sym_variable_name, + STATE(1600), 1, + sym_string, + ACTIONS(3221), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2990), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, + ACTIONS(3219), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_TILDE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(3002), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3004), 1, - sym_variable_name, - STATE(2119), 1, - sym_command_substitution, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2462), 1, - sym__expression, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(1129), 2, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2994), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2996), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2112), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2114), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2709), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14793] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(227), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2990), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_TILDE, - ACTIONS(3000), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(3006), 1, - aux_sym__simple_variable_name_token1, - STATE(2119), 1, - sym_command_substitution, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2467), 1, - sym__expression, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2994), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2996), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2112), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2114), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2711), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14918] = 35, + sym_word, + [13647] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(227), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(231), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(254), 1, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(256), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(260), 1, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2990), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3050), 1, anon_sym_LPAREN, - ACTIONS(2992), 1, + ACTIONS(3052), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3058), 1, anon_sym_TILDE, - ACTIONS(3000), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(3004), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(3008), 1, + ACTIONS(3225), 1, aux_sym__simple_variable_name_token1, - STATE(2119), 1, + STATE(2387), 1, sym_command_substitution, - STATE(2140), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2441), 1, - sym__expression, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + STATE(3139), 1, + sym__expression, ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2994), 2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3054), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(2996), 2, + ACTIONS(3056), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2112), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2114), 4, + STATE(2397), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2714), 4, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2756), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2582), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [15043] = 22, + [13775] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(3233), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(3236), 1, anon_sym_DOLLAR, - ACTIONS(2644), 1, + ACTIONS(3239), 1, + sym__special_character, + ACTIONS(3242), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(3245), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(3248), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(3251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(3257), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(3012), 1, - sym__special_character, - ACTIONS(3014), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3016), 1, + ACTIONS(3266), 1, sym_test_operator, - STATE(1629), 1, + ACTIONS(3269), 1, + sym__brace_start, + STATE(2161), 1, aux_sym__literal_repeat1, - ACTIONS(2275), 2, + ACTIONS(2216), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + ACTIONS(3230), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(3263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(587), 2, + STATE(672), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3010), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3227), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1453), 9, + STATE(1711), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75541,7 +87690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 19, + ACTIONS(2214), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75551,6 +87700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -75561,52 +87711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15142] = 21, + anon_sym_LT_LT_LT, + [13873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, - anon_sym_DOLLAR, - ACTIONS(2644), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2656), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(3012), 1, - sym__special_character, - ACTIONS(3016), 1, - sym_test_operator, - ACTIONS(3018), 1, - aux_sym__simple_variable_name_token1, - STATE(1629), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - ACTIONS(2275), 2, + STATE(704), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(586), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3010), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1453), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75616,7 +87736,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 20, + ACTIONS(2072), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75636,142 +87757,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [15239] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2103), 1, anon_sym_DOLLAR, - ACTIONS(2109), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2112), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2115), 1, aux_sym_number_token2, - ACTIONS(2118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2121), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2124), 1, anon_sym_BQUOTE, - ACTIONS(2127), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2142), 1, - sym__brace_start, - ACTIONS(3023), 1, - sym__special_character, - ACTIONS(3026), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3029), 1, - sym_variable_name, - ACTIONS(3032), 1, - sym_test_operator, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(5401), 1, - sym_subscript, - ACTIONS(1636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2097), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2130), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3020), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(585), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1889), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1634), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [15342] = 21, + [13941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, - anon_sym_DOLLAR, - ACTIONS(2644), 1, + ACTIONS(2790), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2656), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(3012), 1, - sym__special_character, - ACTIONS(3016), 1, - sym_test_operator, - ACTIONS(3035), 1, + ACTIONS(3223), 1, + sym_variable_name, + STATE(1600), 1, + sym_string, + ACTIONS(3221), 2, aux_sym__simple_variable_name_token1, - STATE(1629), 1, - aux_sym__literal_repeat1, - ACTIONS(2182), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3219), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(609), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3010), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75782,6 +87812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -75791,55 +87823,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [15439] = 22, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [14013] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(2644), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(1557), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ACTIONS(3012), 1, + ACTIONS(2420), 1, + anon_sym_LT_LT_LT, + ACTIONS(2422), 1, sym__special_character, - ACTIONS(3016), 1, + ACTIONS(2424), 1, sym_test_operator, - ACTIONS(3035), 1, - aux_sym__simple_variable_name_token1, - STATE(1629), 1, + STATE(703), 1, + aux_sym_command_repeat2, + STATE(1321), 1, aux_sym__literal_repeat1, - ACTIONS(2182), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(609), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3010), 3, + ACTIONS(1615), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2416), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1453), 9, + STATE(1794), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75849,17 +87903,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 19, - anon_sym_SEMI, + ACTIONS(1613), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -75869,61 +87920,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15538] = 21, + [14121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, + ACTIONS(3274), 1, anon_sym_DQUOTE, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2946), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, - anon_sym_BQUOTE, - ACTIONS(2952), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(3039), 1, - sym__special_character, - ACTIONS(3041), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3990), 1, - sym_concatenation, - ACTIONS(2224), 2, + ACTIONS(3278), 1, + sym_variable_name, + STATE(1825), 1, + sym_string, + ACTIONS(3276), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2932), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3272), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2954), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3037), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3646), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75945,61 +87969,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15635] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2934), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, - anon_sym_DQUOTE, - ACTIONS(2942), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2944), 1, aux_sym_number_token2, - ACTIONS(2946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2948), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, anon_sym_BQUOTE, - ACTIONS(2952), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(3039), 1, - sym__special_character, - ACTIONS(3045), 1, - sym_test_operator, - STATE(3638), 1, - aux_sym__literal_repeat1, - STATE(3993), 1, - sym_concatenation, - ACTIONS(2335), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2932), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2954), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3043), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(3650), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [14193] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 21, + ACTIONS(3284), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3280), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76009,9 +88021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76021,149 +88032,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15732] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(227), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2990), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_TILDE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(3047), 1, - aux_sym__simple_variable_name_token1, - STATE(2119), 1, - sym_command_substitution, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2484), 1, - sym__expression, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2994), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2996), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2112), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2114), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2675), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [15857] = 24, + sym_word, + [14265] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(3294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(3297), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(3300), 1, + sym__special_character, + ACTIONS(3303), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(3306), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(3309), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(3312), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, + ACTIONS(3318), 1, anon_sym_BQUOTE, - ACTIONS(2025), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(3051), 1, - sym__special_character, - ACTIONS(3053), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3055), 1, - sym_variable_name, - ACTIONS(3057), 1, + ACTIONS(3327), 1, sym_test_operator, - STATE(1542), 1, + ACTIONS(3330), 1, + sym__brace_start, + STATE(2024), 1, aux_sym__literal_repeat1, - STATE(5401), 1, - sym_subscript, - ACTIONS(1533), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(3291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(3324), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3049), 3, + STATE(678), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2216), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3288), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(585), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1889), 9, + STATE(1630), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76173,14 +88104,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1531), 16, + ACTIONS(2214), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76190,22 +88124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15960] = 7, + anon_sym_LT_LT_LT, + [14363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(3274), 1, anon_sym_DQUOTE, - STATE(1388), 1, + ACTIONS(3278), 1, + sym_variable_name, + STATE(1825), 1, sym_string, - ACTIONS(3061), 2, + ACTIONS(3276), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3059), 9, + ACTIONS(3272), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -76215,7 +88151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 36, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -76226,8 +88162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76252,106 +88189,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16029] = 7, + [14435] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(3274), 1, anon_sym_DQUOTE, - STATE(1388), 1, - sym_string, - ACTIONS(3061), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(3059), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3339), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(3341), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3343), 1, aux_sym_number_token1, + ACTIONS(3345), 1, aux_sym_number_token2, + ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3351), 1, anon_sym_BQUOTE, + ACTIONS(3353), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3357), 1, + sym_test_operator, + ACTIONS(3359), 1, + sym__brace_start, + STATE(2147), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3335), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3355), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(660), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3333), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [16098] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, + STATE(1526), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 36, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -76360,68 +88266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [16167] = 21, + [14533] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR, - ACTIONS(3071), 1, + ACTIONS(3369), 1, sym__special_character, - ACTIONS(3073), 1, + ACTIONS(3371), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(3373), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(3375), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(3377), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(3379), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3381), 1, anon_sym_BQUOTE, - ACTIONS(3085), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3089), 1, + ACTIONS(3387), 1, sym_test_operator, - ACTIONS(3091), 1, + ACTIONS(3389), 1, sym__brace_start, - STATE(1923), 1, + STATE(4507), 1, aux_sym__literal_repeat1, - ACTIONS(1981), 2, + STATE(4879), 1, + sym_concatenation, + ACTIONS(2496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + ACTIONS(3363), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(3385), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(606), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3063), 3, + ACTIONS(3361), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1510), 9, + STATE(4271), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76431,7 +88320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 20, + ACTIONS(2494), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76441,8 +88330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76452,52 +88343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16264] = 21, + [14631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3071), 1, - sym__special_character, - ACTIONS(3073), 1, - anon_sym_DQUOTE, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3079), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, - anon_sym_BQUOTE, - ACTIONS(3085), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3089), 1, - sym_test_operator, - ACTIONS(3091), 1, - sym__brace_start, - STATE(1923), 1, + STATE(1826), 1, aux_sym__literal_repeat1, - ACTIONS(1943), 2, + STATE(2201), 1, + sym_concatenation, + ACTIONS(2496), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(606), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3063), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1510), 9, + STATE(1446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76507,7 +88367,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 20, + ACTIONS(2494), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76517,7 +88378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -76528,63 +88388,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16361] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, sym__special_character, - ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3105), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3107), 1, aux_sym_number_token2, - ACTIONS(3109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3113), 1, anon_sym_BQUOTE, - ACTIONS(3115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3119), 1, - sym_test_operator, - ACTIONS(3121), 1, - sym__brace_start, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(3095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3093), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [14699] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3213), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_variable_name, + STATE(1919), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 19, + ACTIONS(3215), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3211), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76604,53 +88453,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16458] = 21, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [14771] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3132), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(3135), 1, + ACTIONS(3399), 1, sym__special_character, - ACTIONS(3138), 1, - anon_sym_DQUOTE, - ACTIONS(3141), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3144), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3147), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3150), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, + ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3156), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3162), 1, + ACTIONS(3415), 1, sym_test_operator, - ACTIONS(3165), 1, + ACTIONS(3417), 1, sym__brace_start, - STATE(1910), 1, + STATE(2161), 1, aux_sym__literal_repeat1, - ACTIONS(3126), 2, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3159), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, + STATE(672), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1900), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3123), 3, + ACTIONS(3391), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1407), 9, + STATE(1711), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76660,7 +88524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 19, + ACTIONS(2072), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76670,6 +88534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -76680,252 +88545,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16555] = 35, + anon_sym_LT_LT_LT, + [14869] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(229), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1119), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2828), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(3052), 1, anon_sym_BANG, - ACTIONS(2836), 1, + ACTIONS(3058), 1, anon_sym_TILDE, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(3168), 1, + ACTIONS(3419), 1, aux_sym__simple_variable_name_token1, - STATE(1932), 1, + STATE(2387), 1, sym_command_substitution, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2241), 1, - sym__expression, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(1039), 2, + STATE(3033), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2832), 2, + ACTIONS(3054), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(2834), 2, + ACTIONS(3056), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1931), 4, + STATE(2397), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2109), 4, + STATE(2456), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2285), 4, + STATE(2811), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [16680] = 27, - ACTIONS(71), 1, + [14997] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2482), 1, - sym_word, - ACTIONS(2486), 1, - anon_sym_LT_LT_LT, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(2492), 1, - sym_test_operator, - ACTIONS(2494), 1, - sym__bare_dollar, - STATE(601), 1, - aux_sym_command_repeat2, - STATE(1955), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - STATE(2050), 1, + STATE(704), 2, sym_concatenation, - STATE(2073), 1, - sym_herestring_redirect, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2484), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2490), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1509), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1738), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1511), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [16789] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3170), 1, - sym_word, - ACTIONS(3179), 1, - anon_sym_LT_LT_LT, - ACTIONS(3182), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, - anon_sym_DOLLAR, - ACTIONS(3188), 1, - sym__special_character, - ACTIONS(3191), 1, - anon_sym_DQUOTE, - ACTIONS(3197), 1, - aux_sym_number_token1, - ACTIONS(3200), 1, - aux_sym_number_token2, - ACTIONS(3203), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3206), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, - anon_sym_BQUOTE, - ACTIONS(3212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3218), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 5, sym_file_descriptor, - ACTIONS(3221), 1, + sym_variable_name, sym_test_operator, - ACTIONS(3224), 1, - sym__bare_dollar, - ACTIONS(3227), 1, sym__brace_start, - STATE(601), 1, - aux_sym_command_repeat2, - STATE(1955), 1, - aux_sym__literal_repeat1, - STATE(2050), 1, - sym_concatenation, - STATE(2073), 1, - sym_herestring_redirect, - ACTIONS(3173), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3176), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3194), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3215), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1398), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1403), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - STATE(1738), 9, + aux_sym_heredoc_redirect_token1, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76935,32 +88662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16900] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - anon_sym_DQUOTE, - STATE(1353), 1, - sym_string, - ACTIONS(2968), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(2964), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 36, + ACTIONS(2094), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -76981,11 +88683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -76997,23 +88700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16969] = 7, + [15065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - STATE(1285), 1, + ACTIONS(3427), 1, + sym_variable_name, + STATE(1686), 1, sym_string, - ACTIONS(3232), 2, + ACTIONS(3425), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 5, + ACTIONS(1235), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3230), 9, + ACTIONS(3421), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77023,7 +88727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77045,6 +88749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -77059,44 +88764,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17038] = 7, + [15137] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1555), 1, anon_sym_DQUOTE, - STATE(1285), 1, - sym_string, - ACTIONS(3232), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1565), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1573), 1, + sym__bare_dollar, + ACTIONS(1575), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3230), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 35, + ACTIONS(2420), 1, + anon_sym_LT_LT_LT, + ACTIONS(2422), 1, + sym__special_character, + ACTIONS(2424), 1, + sym_test_operator, + STATE(703), 1, + aux_sym_command_repeat2, + STATE(1321), 1, + aux_sym__literal_repeat1, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1543), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1627), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2416), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1794), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1625), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77106,35 +88846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [17107] = 6, + [15245] = 6, ACTIONS(3), 1, sym_comment, - STATE(1515), 1, + STATE(1895), 1, aux_sym__literal_repeat1, - STATE(1631), 1, + STATE(2117), 1, sym_concatenation, - ACTIONS(2224), 5, + ACTIONS(2500), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1309), 9, + STATE(1397), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77144,7 +88870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 37, + ACTIONS(2498), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77182,52 +88908,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17174] = 21, + [15313] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3435), 1, anon_sym_DOLLAR, - ACTIONS(3246), 1, + ACTIONS(3437), 1, sym__special_character, - ACTIONS(3249), 1, + ACTIONS(3439), 1, anon_sym_DQUOTE, - ACTIONS(3252), 1, + ACTIONS(3441), 1, aux_sym_number_token1, - ACTIONS(3255), 1, + ACTIONS(3443), 1, aux_sym_number_token2, - ACTIONS(3258), 1, + ACTIONS(3445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3261), 1, + ACTIONS(3447), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3449), 1, anon_sym_BQUOTE, - ACTIONS(3267), 1, + ACTIONS(3451), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3273), 1, + ACTIONS(3455), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3457), 1, sym_test_operator, - ACTIONS(3276), 1, + ACTIONS(3459), 1, sym__brace_start, - STATE(1923), 1, + STATE(2190), 1, aux_sym__literal_repeat1, - ACTIONS(1900), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3237), 2, + ACTIONS(3431), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3270), 2, + ACTIONS(3453), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(606), 2, + STATE(695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3234), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2299), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3429), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1510), 9, + STATE(1681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77237,7 +88966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 20, + ACTIONS(2297), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77247,7 +88976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -77258,53 +88986,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17271] = 21, + [15413] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3099), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(3399), 1, sym__special_character, - ACTIONS(3103), 1, - anon_sym_DQUOTE, - ACTIONS(3105), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3107), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3109), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3111), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3113), 1, + ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3115), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3119), 1, + ACTIONS(3415), 1, sym_test_operator, - ACTIONS(3121), 1, + ACTIONS(3417), 1, sym__brace_start, - STATE(1910), 1, + STATE(2161), 1, aux_sym__literal_repeat1, - ACTIONS(3095), 2, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3117), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, + STATE(672), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1981), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3093), 3, + ACTIONS(3391), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1407), 9, + STATE(1711), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77314,7 +89041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 19, + ACTIONS(2094), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77324,6 +89051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -77334,30 +89062,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17368] = 6, + anon_sym_LT_LT_LT, + [15511] = 8, ACTIONS(3), 1, sym_comment, - STATE(1433), 1, - aux_sym__literal_repeat1, - STATE(1748), 1, - sym_concatenation, - ACTIONS(2335), 5, - sym_file_descriptor, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3286), 1, sym_variable_name, + STATE(1628), 1, + sym_string, + ACTIONS(3284), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1304), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 37, + ACTIONS(3280), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77368,6 +89100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -77378,12 +89111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77395,54 +89127,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17435] = 22, + [15583] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2707), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(2713), 1, + ACTIONS(3187), 1, + sym__special_character, + ACTIONS(3189), 1, anon_sym_DQUOTE, - ACTIONS(2716), 1, + ACTIONS(3191), 1, aux_sym_number_token1, - ACTIONS(2719), 1, + ACTIONS(3193), 1, aux_sym_number_token2, - ACTIONS(2722), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2725), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2728), 1, + ACTIONS(3199), 1, anon_sym_BQUOTE, - ACTIONS(2731), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2743), 1, + ACTIONS(3207), 1, + sym_test_operator, + ACTIONS(3209), 1, sym__brace_start, - ACTIONS(3282), 1, - sym__special_character, - ACTIONS(3285), 1, + ACTIONS(3461), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3288), 1, - sym_test_operator, - STATE(1629), 1, + STATE(1966), 1, aux_sym__literal_repeat1, - ACTIONS(2289), 2, + ACTIONS(2299), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2701), 2, + ACTIONS(3181), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2734), 2, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(609), 2, + STATE(667), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3279), 3, + ACTIONS(3179), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1453), 9, + STATE(1650), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77452,7 +89184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 19, + ACTIONS(2297), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77462,6 +89194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -77472,239 +89205,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17534] = 35, - ACTIONS(71), 1, + [15683] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + STATE(1739), 1, + aux_sym__literal_repeat1, + STATE(1953), 1, + sym_concatenation, + ACTIONS(2496), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2990), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_TILDE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(3291), 1, - aux_sym__simple_variable_name_token1, - STATE(2119), 1, - sym_command_substitution, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2600), 1, - sym__expression, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2994), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2996), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2112), 4, + aux_sym_heredoc_redirect_token1, + STATE(1320), 9, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2114), 4, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2683), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17659] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1051), 1, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2828), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, - anon_sym_BANG, - ACTIONS(2836), 1, - anon_sym_TILDE, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(3293), 1, - aux_sym__simple_variable_name_token1, - STATE(1932), 1, - sym_command_substitution, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - STATE(2603), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2832), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(2834), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1931), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2109), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2290), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17784] = 24, + sym_word, + [15751] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2009), 1, + ACTIONS(3435), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(3437), 1, + sym__special_character, + ACTIONS(3439), 1, anon_sym_DQUOTE, - ACTIONS(2015), 1, + ACTIONS(3441), 1, aux_sym_number_token1, - ACTIONS(2017), 1, + ACTIONS(3443), 1, aux_sym_number_token2, - ACTIONS(2019), 1, + ACTIONS(3445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2021), 1, + ACTIONS(3447), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2023), 1, + ACTIONS(3449), 1, anon_sym_BQUOTE, - ACTIONS(2025), 1, + ACTIONS(3451), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(3051), 1, - sym__special_character, - ACTIONS(3055), 1, - sym_variable_name, - ACTIONS(3057), 1, + ACTIONS(3457), 1, sym_test_operator, - ACTIONS(3295), 1, + ACTIONS(3459), 1, + sym__brace_start, + ACTIONS(3463), 1, aux_sym__simple_variable_name_token1, - STATE(1542), 1, + STATE(2190), 1, aux_sym__literal_repeat1, - STATE(5401), 1, - sym_subscript, - ACTIONS(1567), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2005), 2, + ACTIONS(3431), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2027), 2, + ACTIONS(3453), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3049), 3, + STATE(664), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2564), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3429), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(591), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1889), 9, + STATE(1681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77714,14 +89325,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1565), 16, + ACTIONS(2562), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77731,22 +89345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17887] = 7, + [15851] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(1353), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(2968), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1241), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2964), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77756,19 +89372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 36, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77793,83 +89409,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17956] = 7, - ACTIONS(3), 1, + [15923] = 36, + ACTIONS(71), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(171), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, anon_sym_DQUOTE, - STATE(1535), 1, - sym_string, - ACTIONS(2988), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(2986), 9, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3050), 1, + anon_sym_LPAREN, + ACTIONS(3052), 1, anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 37, + ACTIONS(3058), 1, + anon_sym_TILDE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3465), 1, + aux_sym__simple_variable_name_token1, + STATE(2387), 1, + sym_command_substitution, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + STATE(3158), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(3054), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3056), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2397), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2782), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [16051] = 36, + ACTIONS(71), 1, + sym_comment, + ACTIONS(229), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3050), 1, + anon_sym_LPAREN, + ACTIONS(3052), 1, + anon_sym_BANG, + ACTIONS(3058), 1, + anon_sym_TILDE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3467), 1, + aux_sym__simple_variable_name_token1, + STATE(2387), 1, + sym_command_substitution, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + STATE(3033), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [18025] = 7, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3054), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3056), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2397), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2777), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [16179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(1398), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(3299), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3297), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77879,21 +89620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 37, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77903,6 +89642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -77917,21 +89657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18094] = 7, + [16251] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - STATE(1398), 1, + ACTIONS(3427), 1, + sym_variable_name, + STATE(1686), 1, sym_string, - ACTIONS(3299), 2, + ACTIONS(3425), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3297), 9, + ts_builtin_sym_end, + ACTIONS(3421), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77941,7 +89684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 37, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77953,8 +89696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77965,6 +89706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -77979,205 +89721,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18163] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2482), 1, - sym_word, - ACTIONS(2486), 1, - anon_sym_LT_LT_LT, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(2492), 1, - sym_test_operator, - ACTIONS(2494), 1, - sym__bare_dollar, - STATE(601), 1, - aux_sym_command_repeat2, - STATE(1955), 1, - aux_sym__literal_repeat1, - STATE(2050), 1, - sym_concatenation, - STATE(2073), 1, - sym_herestring_redirect, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2484), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2490), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1479), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1738), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1481), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [18272] = 35, + [16323] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(235), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1119), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2828), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(3052), 1, anon_sym_BANG, - ACTIONS(2836), 1, + ACTIONS(3058), 1, anon_sym_TILDE, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(3301), 1, + ACTIONS(3469), 1, aux_sym__simple_variable_name_token1, - STATE(1932), 1, + STATE(2387), 1, sym_command_substitution, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - STATE(2610), 1, + STATE(3150), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1121), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2832), 2, + ACTIONS(3054), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(2834), 2, + ACTIONS(3056), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1931), 4, + STATE(2397), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2109), 4, + STATE(2456), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2277), 4, + STATE(2743), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [18397] = 7, + [16451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(3213), 1, anon_sym_DQUOTE, - STATE(1520), 1, - sym_string, - ACTIONS(3305), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, + ACTIONS(3475), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3477), 1, + anon_sym_DOLLAR, + ACTIONS(3479), 1, + sym__special_character, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3485), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3489), 1, + anon_sym_BQUOTE, + ACTIONS(3491), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3495), 1, sym_test_operator, + ACTIONS(3497), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3303), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 35, + STATE(2024), 1, + aux_sym__literal_repeat1, + ACTIONS(3473), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3493), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(678), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3471), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1630), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78197,124 +89889,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [16549] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 1, aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1871), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(1880), 1, + anon_sym_DQUOTE, + ACTIONS(1883), 1, aux_sym_number_token1, + ACTIONS(1886), 1, aux_sym_number_token2, + ACTIONS(1889), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1892), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1895), 1, anon_sym_BQUOTE, + ACTIONS(1898), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18465] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(779), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1910), 1, + sym__bare_dollar, + ACTIONS(1913), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(3505), 1, anon_sym_LT_LT_LT, + ACTIONS(3508), 1, + sym__special_character, + ACTIONS(3511), 1, + sym_file_descriptor, + ACTIONS(3514), 1, + sym_test_operator, + STATE(703), 1, + aux_sym_command_repeat2, + STATE(1321), 1, + aux_sym__literal_repeat1, + STATE(1712), 1, + sym_herestring_redirect, + STATE(1716), 1, + sym_concatenation, + ACTIONS(1862), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(515), 28, - anon_sym_for, - anon_sym_select, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3499), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1794), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1486), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18525] = 21, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16659] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(2738), 1, anon_sym_DOLLAR, - ACTIONS(3315), 1, - sym__special_character, - ACTIONS(3317), 1, + ACTIONS(2744), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(2747), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(2750), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(2753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(2756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(2759), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(2762), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3333), 1, - sym_test_operator, - ACTIONS(3335), 1, + ACTIONS(2771), 1, sym__brace_start, - STATE(3697), 1, + ACTIONS(3520), 1, + sym__special_character, + ACTIONS(3523), 1, + sym_test_operator, + STATE(1744), 1, aux_sym__literal_repeat1, - STATE(4044), 1, - sym_concatenation, - ACTIONS(3309), 2, + ACTIONS(2732), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(2765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2224), 3, + STATE(704), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2216), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3307), 3, + ACTIONS(3517), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3767), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78324,7 +90029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 19, + ACTIONS(2214), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78344,43 +90049,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18621] = 7, + anon_sym_LT_LT_LT, + [16757] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(3213), 1, anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, + ACTIONS(3475), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3477), 1, + anon_sym_DOLLAR, + ACTIONS(3479), 1, + sym__special_character, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3485), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3489), 1, + anon_sym_BQUOTE, + ACTIONS(3491), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3495), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3497), 1, sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 35, + STATE(2024), 1, + aux_sym__literal_repeat1, + ACTIONS(3473), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3493), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(678), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3471), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1630), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78389,48 +90126,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [16855] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3365), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOLLAR, + ACTIONS(3369), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3371), 1, + anon_sym_DQUOTE, + ACTIONS(3373), 1, aux_sym_number_token1, + ACTIONS(3375), 1, aux_sym_number_token2, + ACTIONS(3377), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3379), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3381), 1, anon_sym_BQUOTE, + ACTIONS(3383), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(3528), 1, + sym_test_operator, + STATE(4554), 1, + aux_sym__literal_repeat1, + STATE(5004), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3363), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3385), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3526), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [18689] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - anon_sym_DQUOTE, - STATE(1734), 1, + STATE(4370), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3339), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3337), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 36, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78440,8 +90191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78451,58 +90204,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + [16953] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3274), 1, + anon_sym_DQUOTE, + ACTIONS(3337), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3339), 1, + anon_sym_DOLLAR, + ACTIONS(3341), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3343), 1, aux_sym_number_token1, + ACTIONS(3345), 1, aux_sym_number_token2, + ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3351), 1, anon_sym_BQUOTE, + ACTIONS(3353), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3357), 1, + sym_test_operator, + ACTIONS(3359), 1, + sym__brace_start, + STATE(2147), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3335), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3355), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(660), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3333), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [18757] = 7, + STATE(1526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [17051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1957), 1, + sym_concatenation, + ACTIONS(2500), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2088), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 35, + aux_sym_heredoc_redirect_token1, + STATE(1336), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78511,11 +90326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78527,50 +90343,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18825] = 20, + [17119] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3536), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR, - ACTIONS(3073), 1, + ACTIONS(3542), 1, + sym__special_character, + ACTIONS(3545), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(3548), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(3551), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(3554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(3557), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3085), 1, + ACTIONS(3560), 1, + anon_sym_BQUOTE, + ACTIONS(3563), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3343), 1, - sym__special_character, - ACTIONS(3345), 1, + ACTIONS(3569), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3572), 1, sym_test_operator, - STATE(1923), 1, + ACTIONS(3575), 1, + sym__brace_start, + STATE(1966), 1, aux_sym__literal_repeat1, - ACTIONS(1943), 2, + ACTIONS(2442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + ACTIONS(3533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(3566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, + STATE(709), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3341), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3530), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1641), 9, + STATE(1650), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78580,53 +90400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [18919] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - anon_sym_DQUOTE, - STATE(1734), 1, - sym_string, - ACTIONS(3339), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3337), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 36, - anon_sym_LPAREN_LPAREN, + ACTIONS(2440), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78647,37 +90421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18987] = 7, + [17219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - STATE(1388), 1, + ACTIONS(3584), 1, + sym_variable_name, + STATE(2121), 1, sym_string, - ACTIONS(3061), 2, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3059), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78687,7 +90447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -78698,6 +90458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -78723,200 +90484,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19055] = 20, - ACTIONS(3), 1, + [17290] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(3073), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3085), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3343), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(3345), 1, + ACTIONS(1185), 1, sym_test_operator, - STATE(1923), 1, + ACTIONS(3050), 1, + anon_sym_LPAREN, + ACTIONS(3052), 1, + anon_sym_BANG, + ACTIONS(3058), 1, + anon_sym_TILDE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3586), 1, + aux_sym__simple_variable_name_token1, + STATE(2387), 1, + sym_command_substitution, + STATE(2484), 1, aux_sym__literal_repeat1, - ACTIONS(1981), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + STATE(3108), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3341), 3, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1641), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3054), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3056), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2397), 4, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, sym_process_substitution, - ACTIONS(1979), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [19149] = 21, - ACTIONS(3), 1, + STATE(2840), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [17415] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3240), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(3249), 1, - anon_sym_DQUOTE, - ACTIONS(3252), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(3255), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(3258), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3261), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3264), 1, - anon_sym_BQUOTE, - ACTIONS(3267), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3276), 1, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(3350), 1, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, - ACTIONS(3353), 1, - sym_test_operator, - STATE(1923), 1, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3600), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3602), 1, + sym_variable_name, + STATE(2509), 1, + sym_command_substitution, + STATE(2690), 1, aux_sym__literal_repeat1, - ACTIONS(1900), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3237), 2, + STATE(3130), 1, + sym__expression, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(1073), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3270), 2, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2500), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2506), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3281), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3347), 3, + [17540] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3604), 1, + aux_sym__simple_variable_name_token1, + STATE(2509), 1, + sym_command_substitution, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3100), 1, + sym__expression, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1641), 9, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2500), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2506), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1898), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [19245] = 21, + STATE(3283), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [17665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3612), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3614), 1, + sym__special_character, + ACTIONS(3616), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3618), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(3624), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(3358), 1, - sym__special_character, - ACTIONS(3360), 1, + ACTIONS(3630), 1, sym_test_operator, - STATE(3697), 1, + ACTIONS(3632), 1, + sym__brace_start, + STATE(2270), 1, aux_sym__literal_repeat1, - STATE(4044), 1, - sym_concatenation, - ACTIONS(2224), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3608), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3628), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3356), 3, + STATE(741), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3606), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3878), 9, + STATE(1839), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78926,7 +90809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 20, + ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78947,108 +90830,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19341] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(779), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(515), 29, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [19401] = 21, + [17762] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3233), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3236), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3242), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3245), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3248), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(3257), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(3269), 1, sym__brace_start, - ACTIONS(3358), 1, + ACTIONS(3637), 1, sym__special_character, - ACTIONS(3364), 1, + ACTIONS(3640), 1, sym_test_operator, - STATE(3661), 1, + STATE(2161), 1, aux_sym__literal_repeat1, - STATE(3970), 1, - sym_concatenation, - ACTIONS(2335), 2, + ACTIONS(2216), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3230), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3362), 3, + STATE(715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3634), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3871), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79058,7 +90885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 20, + ACTIONS(2214), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79068,7 +90895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79079,22 +90905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19497] = 7, + anon_sym_LT_LT_LT, + [17859] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - STATE(1681), 1, + ACTIONS(3647), 1, + sym_variable_name, + STATE(1547), 1, sym_string, - ACTIONS(3368), 2, + ACTIONS(3645), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3366), 9, + ACTIONS(3643), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79104,7 +90933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79140,22 +90969,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19565] = 7, + [17930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 1, + ACTIONS(3439), 1, anon_sym_DQUOTE, - STATE(1585), 1, + ACTIONS(3653), 1, + sym_variable_name, + STATE(1878), 1, sym_string, - ACTIONS(3374), 2, + ACTIONS(3651), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(3370), 9, + ts_builtin_sym_end, + ACTIONS(3649), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79165,19 +90996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79186,7 +91017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -79201,105 +91032,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19633] = 7, + [18001] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_DQUOTE, - STATE(1681), 1, - sym_string, - ACTIONS(3368), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3366), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3185), 1, + anon_sym_DOLLAR, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(3191), 1, aux_sym_number_token1, + ACTIONS(3193), 1, aux_sym_number_token2, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3199), 1, anon_sym_BQUOTE, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(3657), 1, + sym__special_character, + ACTIONS(3659), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3661), 1, + sym_test_operator, + STATE(1966), 1, + aux_sym__literal_repeat1, + ACTIONS(2299), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3181), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(743), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3655), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [19701] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_DQUOTE, - STATE(1585), 1, + STATE(1902), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3374), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3370), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 35, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2297), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79308,80 +91109,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [19769] = 25, - ACTIONS(71), 1, + [18100] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 1, - sym_word, - ACTIONS(3382), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3385), 1, - anon_sym_DOLLAR, - ACTIONS(3388), 1, - sym__special_character, - ACTIONS(3391), 1, + ACTIONS(3115), 1, anon_sym_DQUOTE, + ACTIONS(3395), 1, + anon_sym_DOLLAR_LBRACK, ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3400), 1, - aux_sym_number_token2, ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3406), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3412), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3418), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3421), 1, - sym_variable_name, - ACTIONS(3424), 1, - sym_test_operator, - ACTIONS(3427), 1, + ACTIONS(3417), 1, sym__brace_start, - STATE(2143), 1, + ACTIONS(3665), 1, + sym__special_character, + ACTIONS(3667), 1, + sym_test_operator, + STATE(2161), 1, aux_sym__literal_repeat1, - STATE(5470), 1, - sym_subscript, - ACTIONS(3379), 2, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3394), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3415), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(637), 3, - sym_variable_assignment, + STATE(715), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1634), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1973), 9, + aux_sym_for_statement_repeat1, + ACTIONS(3663), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79391,76 +91164,73 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1636), 10, - sym_file_descriptor, + ACTIONS(2072), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19873] = 25, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [18197] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - sym_word, - ACTIONS(3434), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(3438), 1, - sym__special_character, - ACTIONS(3440), 1, - anon_sym_DQUOTE, - ACTIONS(3444), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3446), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3448), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, + ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3454), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3458), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3460), 1, - sym_variable_name, - ACTIONS(3462), 1, - sym_test_operator, - ACTIONS(3464), 1, + ACTIONS(3417), 1, sym__brace_start, - STATE(2143), 1, + ACTIONS(3665), 1, + sym__special_character, + ACTIONS(3667), 1, + sym_test_operator, + STATE(2161), 1, aux_sym__literal_repeat1, - STATE(5470), 1, - sym_subscript, - ACTIONS(3432), 2, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3442), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3456), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(643), 3, - sym_variable_assignment, + STATE(715), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1565), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1973), 9, + aux_sym_for_statement_repeat1, + ACTIONS(3663), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79470,33 +91240,45 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1567), 10, - sym_file_descriptor, + ACTIONS(2094), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19977] = 7, + anon_sym_LT_LT_LT, + [18294] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(3439), 1, anon_sym_DQUOTE, - STATE(1520), 1, + ACTIONS(3653), 1, + sym_variable_name, + STATE(1878), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(3651), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3303), 9, + ACTIONS(3649), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79506,7 +91288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 35, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79542,52 +91324,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20045] = 21, + [18365] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR, - ACTIONS(3315), 1, + ACTIONS(3677), 1, sym__special_character, - ACTIONS(3317), 1, + ACTIONS(3679), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3681), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3683), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3685), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3687), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(3689), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3691), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(3468), 1, + ACTIONS(3695), 1, sym_test_operator, - STATE(3661), 1, + ACTIONS(3697), 1, + sym__brace_start, + STATE(4767), 1, aux_sym__literal_repeat1, - STATE(3970), 1, + STATE(5114), 1, sym_concatenation, - ACTIONS(3309), 2, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3671), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3693), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2335), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3466), 3, + ACTIONS(3669), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3842), 9, + STATE(4504), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79597,7 +91378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 19, + ACTIONS(2498), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79608,6 +91389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79617,80 +91400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20141] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2478), 1, - ts_builtin_sym_end, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [20203] = 7, + [18462] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(3701), 1, anon_sym_DQUOTE, - STATE(1388), 1, + ACTIONS(3705), 1, + sym_variable_name, + STATE(2025), 1, sym_string, - ACTIONS(3061), 2, + ACTIONS(3703), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3059), 9, + ts_builtin_sym_end, + ACTIONS(3699), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79700,7 +91427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79736,65 +91463,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20271] = 25, - ACTIONS(71), 1, + [18533] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - sym_word, - ACTIONS(3434), 1, + ACTIONS(3673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR, - ACTIONS(3438), 1, + ACTIONS(3677), 1, sym__special_character, - ACTIONS(3440), 1, + ACTIONS(3679), 1, anon_sym_DQUOTE, - ACTIONS(3444), 1, + ACTIONS(3681), 1, aux_sym_number_token1, - ACTIONS(3446), 1, + ACTIONS(3683), 1, aux_sym_number_token2, - ACTIONS(3448), 1, + ACTIONS(3685), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, + ACTIONS(3687), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, + ACTIONS(3689), 1, anon_sym_BQUOTE, - ACTIONS(3454), 1, + ACTIONS(3691), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3460), 1, - sym_variable_name, - ACTIONS(3462), 1, - sym_test_operator, - ACTIONS(3464), 1, + ACTIONS(3697), 1, sym__brace_start, - ACTIONS(3470), 1, - aux_sym__simple_variable_name_token1, - STATE(2143), 1, + ACTIONS(3709), 1, + sym_test_operator, + STATE(4695), 1, aux_sym__literal_repeat1, - STATE(5470), 1, - sym_subscript, - ACTIONS(3432), 2, + STATE(5096), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3671), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3442), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3456), 2, + ACTIONS(3693), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(637), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1531), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1973), 9, + ACTIONS(3707), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4555), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79804,32 +91517,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 10, - sym_file_descriptor, + ACTIONS(2494), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20375] = 7, + [18630] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(3701), 1, anon_sym_DQUOTE, - STATE(1451), 1, + ACTIONS(3705), 1, + sym_variable_name, + STATE(2025), 1, sym_string, - ACTIONS(3474), 2, + ACTIONS(3703), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3472), 9, + ts_builtin_sym_end, + ACTIONS(3699), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79839,7 +91566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 36, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79850,7 +91577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79876,171 +91602,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20443] = 7, + [18701] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(3183), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3185), 1, + anon_sym_DOLLAR, + ACTIONS(3189), 1, anon_sym_DQUOTE, - STATE(1451), 1, - sym_string, - ACTIONS(3474), 2, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(3657), 1, + sym__special_character, + ACTIONS(3661), 1, + sym_test_operator, + ACTIONS(3711), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3472), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20511] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2532), 1, - ts_builtin_sym_end, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [20573] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3073), 1, - anon_sym_DQUOTE, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3079), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, - anon_sym_BQUOTE, - ACTIONS(3085), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3343), 1, - sym__special_character, - ACTIONS(3345), 1, - sym_test_operator, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(1981), 2, + STATE(1966), 1, + aux_sym__literal_repeat1, + ACTIONS(2564), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + ACTIONS(3181), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, + STATE(731), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3341), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3655), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1641), 9, + STATE(1902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80050,7 +91657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 19, + ACTIONS(2562), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80070,52 +91677,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20669] = 21, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [18798] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2634), 1, + anon_sym_LT_LT_LT, + ACTIONS(2636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR, - ACTIONS(3073), 1, + ACTIONS(2640), 1, + sym__special_character, + ACTIONS(2642), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(2646), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(2648), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(2652), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2654), 1, anon_sym_BQUOTE, - ACTIONS(3085), 1, + ACTIONS(2656), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3343), 1, - sym__special_character, - ACTIONS(3345), 1, + ACTIONS(2660), 1, sym_test_operator, - STATE(1923), 1, + ACTIONS(2662), 1, + sym__bare_dollar, + ACTIONS(2664), 1, + sym__brace_start, + STATE(751), 1, + aux_sym_command_repeat2, + STATE(2417), 1, aux_sym__literal_repeat1, - ACTIONS(1943), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + STATE(2558), 1, + sym_concatenation, + STATE(2562), 1, + sym_herestring_redirect, + ACTIONS(2630), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3341), 3, + ACTIONS(2632), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2644), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1641), 9, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1625), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2211), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80125,69 +91749,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 19, - anon_sym_SEMI, + ACTIONS(1627), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20765] = 20, + [18907] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3725), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3329), 1, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(3478), 1, - sym__special_character, - ACTIONS(3480), 1, + ACTIONS(3751), 1, + sym_file_descriptor, + ACTIONS(3753), 1, sym_test_operator, - STATE(3697), 1, + ACTIONS(3755), 1, + sym__brace_start, + STATE(3570), 1, + aux_sym__heredoc_command, + STATE(5351), 1, aux_sym__literal_repeat1, - STATE(4044), 1, + STATE(5456), 1, sym_concatenation, - ACTIONS(2224), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + STATE(7036), 1, + sym__heredoc_expression, + STATE(7039), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3719), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3476), 3, + ACTIONS(3713), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3774), 9, + STATE(5505), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80197,91 +91845,73 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [20858] = 29, + [19022] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(3733), 1, sym__special_character, - ACTIONS(3502), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3753), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3755), 1, sym__brace_start, - STATE(2986), 1, + ACTIONS(3757), 1, + aux_sym_heredoc_redirect_token1, + STATE(3605), 1, aux_sym__heredoc_command, - STATE(4217), 1, + STATE(5351), 1, aux_sym__literal_repeat1, - STATE(4355), 1, + STATE(5456), 1, sym_concatenation, - STATE(5563), 1, + STATE(7041), 1, sym__heredoc_expression, - STATE(5564), 1, + STATE(7042), 1, sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3488), 2, + ACTIONS(3719), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3492), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4496), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(3713), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, + STATE(5504), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -80290,7 +91920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80300,213 +91930,144 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [20969] = 6, - ACTIONS(3), 1, + [19137] = 35, + ACTIONS(71), 1, sym_comment, - STATE(1549), 1, - aux_sym__literal_repeat1, - STATE(678), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1943), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1884), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [21034] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3524), 1, - sym_word, - ACTIONS(3530), 1, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3533), 1, - anon_sym_DOLLAR, - ACTIONS(3536), 1, + ACTIONS(1079), 1, sym__special_character, - ACTIONS(3539), 1, + ACTIONS(1081), 1, anon_sym_DQUOTE, - ACTIONS(3545), 1, - aux_sym_number_token1, - ACTIONS(3548), 1, - aux_sym_number_token2, - ACTIONS(3551), 1, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3557), 1, - anon_sym_BQUOTE, - ACTIONS(3560), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3566), 1, - sym_test_operator, - ACTIONS(3569), 1, - sym__brace_start, - STATE(2104), 1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3759), 1, + aux_sym__simple_variable_name_token1, + STATE(2509), 1, + sym_command_substitution, + STATE(2690), 1, aux_sym__literal_repeat1, - ACTIONS(3527), 2, + STATE(3107), 1, + sym__expression, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(1073), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3542), 2, + ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3563), 2, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(652), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1898), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1896), 9, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2500), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2506), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1900), 13, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [21131] = 29, + STATE(3278), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [19262] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3536), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, + ACTIONS(3545), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3548), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3551), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3557), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3560), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3575), 1, sym__brace_start, - ACTIONS(3572), 1, - aux_sym_heredoc_redirect_token1, - STATE(3038), 1, - aux_sym__heredoc_command, - STATE(4217), 1, + ACTIONS(3764), 1, + sym__special_character, + ACTIONS(3767), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3770), 1, + sym_test_operator, + STATE(1966), 1, aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - STATE(5851), 1, - sym__heredoc_expression, - STATE(5854), 1, - sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(2442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3488), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4484), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + STATE(731), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3761), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(1902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80516,38 +92077,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [21242] = 6, + ACTIONS(2440), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [19361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3576), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(3775), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(3777), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 43, + ACTIONS(3773), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80561,9 +92148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80575,148 +92160,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21307] = 6, - ACTIONS(71), 1, + [19432] = 21, + ACTIONS(3), 1, sym_comment, - STATE(2104), 1, - aux_sym__literal_repeat1, - STATE(652), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1896), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1979), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3785), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3787), 1, anon_sym_DOLLAR, + ACTIONS(3789), 1, sym__special_character, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(3793), 1, aux_sym_number_token1, + ACTIONS(3795), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1981), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3801), 1, anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [21372] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_BQUOTE, - ACTIONS(2474), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3807), 1, sym_test_operator, + ACTIONS(3809), 1, sym__brace_start, + STATE(4277), 1, + aux_sym__literal_repeat1, + STATE(4782), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(3781), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [21433] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - anon_sym_DQUOTE, - STATE(1734), 1, + STATE(4522), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3339), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3337), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 35, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80726,6 +92224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80736,36 +92235,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + anon_sym_LT_LT_LT, + [19529] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3811), 1, + aux_sym__simple_variable_name_token1, + STATE(2509), 1, + sym_command_substitution, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3126), 1, + sym__expression, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [21500] = 7, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2500), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2506), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3365), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [19654] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - STATE(1734), 1, + ACTIONS(3647), 1, + sym_variable_name, + STATE(1547), 1, sym_string, - ACTIONS(3339), 2, + ACTIONS(3645), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3337), 9, + ts_builtin_sym_end, + ACTIONS(3643), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80775,7 +92353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 35, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -80811,70 +92389,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21567] = 29, + [19725] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(3733), 1, sym__special_character, - ACTIONS(3502), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3753), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3755), 1, sym__brace_start, - ACTIONS(3578), 1, + ACTIONS(3813), 1, aux_sym_heredoc_redirect_token1, - STATE(3032), 1, + STATE(3603), 1, aux_sym__heredoc_command, - STATE(4217), 1, + STATE(5351), 1, aux_sym__literal_repeat1, - STATE(4355), 1, + STATE(5456), 1, sym_concatenation, - STATE(5835), 1, + STATE(6792), 1, sym__heredoc_expression, - STATE(5838), 1, + STATE(6806), 1, sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3488), 2, + ACTIONS(3719), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3492), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4550), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(3713), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, + STATE(5531), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -80883,7 +92464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80893,45 +92474,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [21678] = 10, + [19840] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3590), 1, + ACTIONS(3775), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, sym_variable_name, - STATE(5432), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3540), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + STATE(2093), 1, + sym_string, + ACTIONS(3777), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 10, - anon_sym_SEMI, + ACTIONS(3773), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80939,12 +92521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80956,106 +92537,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21751] = 13, + [19911] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - sym_variable_name, - ACTIONS(3599), 1, - aux_sym_heredoc_redirect_token1, - STATE(5432), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3593), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3595), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(3540), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2534), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3787), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3791), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3793), 1, aux_sym_number_token1, + ACTIONS(3795), 1, aux_sym_number_token2, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3801), 1, anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(3817), 1, + sym__special_character, + ACTIONS(3819), 1, + sym_test_operator, + STATE(4305), 1, + aux_sym__literal_repeat1, + STATE(4736), 1, + sym_concatenation, + ACTIONS(3783), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [21830] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(654), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(2500), 3, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 43, - anon_sym_LPAREN_LPAREN, + ACTIONS(3815), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4518), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81065,65 +92613,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [21895] = 20, + [20008] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3793), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3329), 1, + ACTIONS(3801), 1, + anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(3809), 1, sym__brace_start, - ACTIONS(3478), 1, + ACTIONS(3817), 1, sym__special_character, - ACTIONS(3605), 1, + ACTIONS(3823), 1, sym_test_operator, - STATE(3661), 1, + STATE(4277), 1, aux_sym__literal_repeat1, - STATE(3970), 1, + STATE(4782), 1, sym_concatenation, - ACTIONS(2335), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3603), 3, + ACTIONS(2496), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3821), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(3770), 9, + STATE(4486), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81133,7 +92668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 20, + ACTIONS(2494), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81153,41 +92688,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [21988] = 6, + anon_sym_LT_LT_LT, + [20105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, - aux_sym_concatenation_token1, - ACTIONS(3610), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, + sym_variable_name, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 43, + ACTIONS(3825), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81196,12 +92737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -81213,135 +92752,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22053] = 3, - ACTIONS(71), 1, + [20176] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3837), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3840), 1, + anon_sym_DOLLAR, + ACTIONS(3843), 1, + sym__special_character, + ACTIONS(3846), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3849), 1, + aux_sym_number_token1, + ACTIONS(3852), 1, + aux_sym_number_token2, + ACTIONS(3855), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3861), 1, anon_sym_BQUOTE, + ACTIONS(3864), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3870), 1, + sym_test_operator, + ACTIONS(3873), 1, + sym__brace_start, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3834), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, + STATE(741), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3831), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1839), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [22112] = 29, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [20273] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3701), 1, + anon_sym_DQUOTE, + ACTIONS(3880), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3882), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(3884), 1, sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3886), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3888), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3890), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3892), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3894), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3896), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3900), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3902), 1, sym__brace_start, - ACTIONS(3613), 1, - aux_sym_heredoc_redirect_token1, - STATE(2993), 1, - aux_sym__heredoc_command, - STATE(4217), 1, + STATE(2281), 1, aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - STATE(5726), 1, - sym__heredoc_expression, - STATE(5728), 1, - sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(3878), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3488), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4505), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + STATE(747), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3876), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(1846), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81351,40 +92884,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [22223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3615), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 43, - anon_sym_LPAREN_LPAREN, + ACTIONS(2094), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81393,49 +92904,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20370] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3185), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3189), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3191), 1, aux_sym_number_token1, + ACTIONS(3193), 1, aux_sym_number_token2, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3199), 1, anon_sym_BQUOTE, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(3657), 1, + sym__special_character, + ACTIONS(3661), 1, + sym_test_operator, + ACTIONS(3711), 1, + aux_sym__simple_variable_name_token1, + STATE(1966), 1, + aux_sym__literal_repeat1, + ACTIONS(2564), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3181), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(731), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3655), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22288] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym_DQUOTE, - STATE(1451), 1, + STATE(1902), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3474), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3472), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 35, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2562), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81455,118 +92981,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20469] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, aux_sym_number_token1, + ACTIONS(3739), 1, aux_sym_number_token2, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, anon_sym_BQUOTE, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [22355] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_DQUOTE, - STATE(1585), 1, - sym_string, - ACTIONS(3374), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(3751), 1, sym_file_descriptor, + ACTIONS(3753), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3755), 1, sym__brace_start, - ACTIONS(3370), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 34, + ACTIONS(3904), 1, + aux_sym_heredoc_redirect_token1, + STATE(3583), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6939), 1, + sym__heredoc_expression, + STATE(6941), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3719), 2, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5515), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20584] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, aux_sym_number_token1, + ACTIONS(3739), 1, aux_sym_number_token2, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, anon_sym_BQUOTE, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3751), 1, + sym_file_descriptor, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(3906), 1, + aux_sym_heredoc_redirect_token1, + STATE(3585), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6935), 1, + sym__heredoc_expression, + STATE(6936), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3719), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22422] = 7, + STATE(5516), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20699] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 1, + ACTIONS(2163), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2166), 1, + anon_sym_DOLLAR, + ACTIONS(2172), 1, anon_sym_DQUOTE, - STATE(1585), 1, - sym_string, - ACTIONS(3374), 2, + ACTIONS(2175), 1, + aux_sym_number_token1, + ACTIONS(2178), 1, + aux_sym_number_token2, + ACTIONS(2181), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2184), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2187), 1, + anon_sym_BQUOTE, + ACTIONS(2190), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2205), 1, + sym__brace_start, + ACTIONS(3911), 1, + sym__special_character, + ACTIONS(3914), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, + ACTIONS(3917), 1, + sym_variable_name, + ACTIONS(3920), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3370), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 34, + STATE(1743), 1, + aux_sym__literal_repeat1, + STATE(6739), 1, + sym_subscript, + ACTIONS(1704), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2160), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2193), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3908), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(746), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2330), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1702), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81575,36 +93230,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20802] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(3935), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3938), 1, + anon_sym_DQUOTE, + ACTIONS(3941), 1, aux_sym_number_token1, + ACTIONS(3944), 1, aux_sym_number_token2, + ACTIONS(3947), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3953), 1, anon_sym_BQUOTE, + ACTIONS(3956), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3962), 1, + sym_test_operator, + ACTIONS(3965), 1, + sym__brace_start, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(3926), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [22489] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1549), 1, - aux_sym__literal_repeat1, - STATE(678), 2, + STATE(747), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1981), 5, + ACTIONS(2216), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1884), 9, + ACTIONS(3923), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1846), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81614,15 +93286,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(2214), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -81632,38 +93306,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20899] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2261), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2263), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2267), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2269), 1, aux_sym_number_token1, + ACTIONS(2271), 1, aux_sym_number_token2, + ACTIONS(2273), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2275), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2277), 1, anon_sym_BQUOTE, + ACTIONS(2279), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(3970), 1, + sym__special_character, + ACTIONS(3972), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3974), 1, + sym_variable_name, + ACTIONS(3976), 1, + sym_test_operator, + STATE(1743), 1, + aux_sym__literal_repeat1, + STATE(6739), 1, + sym_subscript, + ACTIONS(1757), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2281), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3968), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22554] = 7, + STATE(777), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2330), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1755), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [21002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(3115), 1, anon_sym_DQUOTE, - STATE(1451), 1, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, sym_string, - ACTIONS(3474), 2, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3472), 9, + ACTIONS(3113), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81673,7 +93411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81695,6 +93433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -81709,40 +93448,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22621] = 6, + [21073] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(654), 1, - aux_sym_concatenation_repeat1, - ACTIONS(268), 5, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, + sym_string, + ACTIONS(3117), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(231), 43, + ACTIONS(3113), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81751,12 +93495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -81768,138 +93511,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22686] = 6, - ACTIONS(3), 1, + [21144] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(667), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(3978), 1, + sym_word, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3990), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3996), 1, + sym__special_character, + ACTIONS(3999), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + aux_sym_number_token1, + ACTIONS(4008), 1, + aux_sym_number_token2, + ACTIONS(4011), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4014), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4017), 1, + anon_sym_BQUOTE, + ACTIONS(4020), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4026), 1, sym_file_descriptor, + ACTIONS(4029), 1, sym_test_operator, + ACTIONS(4032), 1, sym__bare_dollar, + ACTIONS(4035), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 43, + STATE(751), 1, + aux_sym_command_repeat2, + STATE(2417), 1, + aux_sym__literal_repeat1, + STATE(2558), 1, + sym_concatenation, + STATE(2562), 1, + sym_herestring_redirect, + ACTIONS(3981), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3984), 2, anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4002), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4023), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1486), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1491), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [22751] = 29, - ACTIONS(3), 1, + STATE(2211), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [21255] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2634), 1, + anon_sym_LT_LT_LT, + ACTIONS(2636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(2640), 1, sym__special_character, - ACTIONS(3502), 1, + ACTIONS(2642), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(2646), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(2648), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(2652), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(2654), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(2656), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(2660), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(2662), 1, + sym__bare_dollar, + ACTIONS(2664), 1, sym__brace_start, - ACTIONS(3617), 1, - aux_sym_heredoc_redirect_token1, - STATE(3006), 1, - aux_sym__heredoc_command, - STATE(4217), 1, + STATE(751), 1, + aux_sym_command_repeat2, + STATE(2417), 1, aux_sym__literal_repeat1, - STATE(4355), 1, + STATE(2558), 1, sym_concatenation, - STATE(5560), 1, - sym__heredoc_expression, - STATE(5561), 1, - sym__heredoc_pipeline, - ACTIONS(3484), 2, + STATE(2562), 1, + sym_herestring_redirect, + ACTIONS(2630), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3488), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4493), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(2632), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2644), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(3490), 8, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1613), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(2211), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81909,70 +93665,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [22862] = 29, + ACTIONS(1615), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [21364] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(3733), 1, sym__special_character, - ACTIONS(3502), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3753), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3755), 1, sym__brace_start, - ACTIONS(3619), 1, + ACTIONS(4038), 1, aux_sym_heredoc_redirect_token1, - STATE(3020), 1, + STATE(3565), 1, aux_sym__heredoc_command, - STATE(4217), 1, + STATE(5351), 1, aux_sym__literal_repeat1, - STATE(4355), 1, + STATE(5456), 1, sym_concatenation, - STATE(5655), 1, + STATE(6837), 1, sym__heredoc_expression, - STATE(5659), 1, + STATE(6839), 1, sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3488), 2, + ACTIONS(3719), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3492), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4544), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(3713), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, + STATE(5545), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -81981,7 +93751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81991,51 +93761,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [22973] = 21, + [21479] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, - anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(3417), 1, sym__brace_start, - ACTIONS(3623), 1, + ACTIONS(3665), 1, sym__special_character, - ACTIONS(3625), 1, + ACTIONS(3667), 1, sym_test_operator, - STATE(3661), 1, + STATE(2161), 1, aux_sym__literal_repeat1, - STATE(3970), 1, - sym_concatenation, - ACTIONS(2335), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3621), 3, + STATE(715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3663), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4032), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82045,7 +93814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 19, + ACTIONS(2072), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82065,53 +93834,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23068] = 21, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [21574] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2598), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(2604), 1, - anon_sym_DQUOTE, - ACTIONS(2607), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(2610), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(2613), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2616), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2619), 1, - anon_sym_BQUOTE, - ACTIONS(2622), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2631), 1, + ACTIONS(3417), 1, sym__brace_start, - ACTIONS(3630), 1, + ACTIONS(3665), 1, sym__special_character, - ACTIONS(3633), 1, + ACTIONS(3667), 1, sym_test_operator, - STATE(1549), 1, + STATE(2161), 1, aux_sym__literal_repeat1, - ACTIONS(2592), 2, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2625), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(678), 2, + STATE(715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1900), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(3627), 3, + ACTIONS(3663), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1884), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82121,14 +93889,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1898), 17, + ACTIONS(2094), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82139,46 +93910,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [23163] = 9, + anon_sym_BQUOTE, + [21669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, sym_variable_name, - STATE(5432), 1, - sym_subscript, - ACTIONS(3588), 2, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3540), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(3825), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(3584), 22, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82188,10 +93948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82201,61 +93959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23234] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - sym_variable_name, - ACTIONS(3642), 1, aux_sym_heredoc_redirect_token1, - STATE(5432), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3595), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3638), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(3540), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3640), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -82267,41 +93974,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23313] = 7, + [21740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - ACTIONS(3644), 1, - anon_sym_LPAREN, - STATE(667), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, - sym_file_descriptor, + ACTIONS(3701), 1, + anon_sym_DQUOTE, + ACTIONS(3880), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3882), 1, + anon_sym_DOLLAR, + ACTIONS(3884), 1, + sym__special_character, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3890), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3894), 1, + anon_sym_BQUOTE, + ACTIONS(3896), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3900), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3902), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 42, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(3878), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3898), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(747), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3876), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1846), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82310,144 +94050,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [23380] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_BQUOTE, - ACTIONS(2474), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2472), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [23441] = 29, + [21837] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, + ACTIONS(3733), 1, sym__special_character, - ACTIONS(3502), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3508), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3514), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3753), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(3755), 1, sym__brace_start, - ACTIONS(3647), 1, + ACTIONS(4040), 1, aux_sym_heredoc_redirect_token1, - STATE(3027), 1, + STATE(3567), 1, aux_sym__heredoc_command, - STATE(4217), 1, + STATE(5351), 1, aux_sym__literal_repeat1, - STATE(4355), 1, + STATE(5456), 1, sym_concatenation, - STATE(5667), 1, + STATE(6843), 1, sym__heredoc_expression, - STATE(5668), 1, + STATE(6844), 1, sym__heredoc_pipeline, - ACTIONS(3484), 2, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3488), 2, + ACTIONS(3719), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3492), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4526), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(3713), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(3490), 8, + STATE(5546), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -82456,7 +94125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(4077), 9, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82466,51 +94135,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [23552] = 21, + [21952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3323), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, - anon_sym_BQUOTE, - ACTIONS(3329), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(3623), 1, - sym__special_character, - ACTIONS(3651), 1, - sym_test_operator, - STATE(3697), 1, + STATE(1739), 1, aux_sym__literal_repeat1, - STATE(4044), 1, + STATE(1953), 1, sym_concatenation, - ACTIONS(2224), 2, + ACTIONS(2496), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3649), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4028), 9, + STATE(1601), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82520,7 +94158,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 19, + ACTIONS(2494), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82540,195 +94179,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23647] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2104), 1, - aux_sym__literal_repeat1, - STATE(652), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1896), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1943), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [23712] = 29, - ACTIONS(3), 1, + sym_word, + [22019] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(282), 1, sym_test_operator, - ACTIONS(3522), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(3653), 1, - aux_sym_heredoc_redirect_token1, - STATE(2989), 1, - aux_sym__heredoc_command, - STATE(4217), 1, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4042), 1, + aux_sym__simple_variable_name_token1, + STATE(2509), 1, + sym_command_substitution, + STATE(2690), 1, aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - STATE(5790), 1, - sym__heredoc_expression, - STATE(5791), 1, - sym__heredoc_pipeline, - ACTIONS(3484), 2, + STATE(3111), 1, + sym__expression, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(1073), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3488), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4552), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3482), 3, + ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(3490), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(4077), 9, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2500), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2506), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - [23823] = 22, + STATE(3368), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [22144] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(2644), 1, + ACTIONS(3189), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(3191), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(3193), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, - anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(3209), 1, sym__brace_start, ACTIONS(3657), 1, sym__special_character, - ACTIONS(3659), 1, - aux_sym__simple_variable_name_token1, ACTIONS(3661), 1, sym_test_operator, - STATE(1629), 1, + ACTIONS(4044), 1, + aux_sym__simple_variable_name_token1, + STATE(1966), 1, aux_sym__literal_repeat1, - ACTIONS(2182), 2, + ACTIONS(2299), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + ACTIONS(3181), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(710), 2, + STATE(726), 2, sym_concatenation, aux_sym_unset_command_repeat1, ACTIONS(3655), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1961), 9, + STATE(1902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82738,52 +94341,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2180), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [23919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 44, - anon_sym_LPAREN_LPAREN, + ACTIONS(2297), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82792,228 +94361,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [23977] = 13, - ACTIONS(3), 1, + [22241] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3669), 1, - sym_variable_name, - STATE(5389), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3663), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3665), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3635), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2534), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - [24055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 44, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3050), 1, anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3052), 1, + anon_sym_BANG, + ACTIONS(3058), 1, + anon_sym_TILDE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(4046), 1, + aux_sym__simple_variable_name_token1, + STATE(2387), 1, + sym_command_substitution, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2621), 1, + sym__expression, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3054), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3056), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2397), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2843), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [22366] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - [24113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 44, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3050), 1, anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3052), 1, + anon_sym_BANG, + ACTIONS(3058), 1, + anon_sym_TILDE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(4048), 1, + aux_sym__simple_variable_name_token1, + STATE(2387), 1, + sym_command_substitution, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + STATE(3101), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3054), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3056), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2397), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2456), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2848), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [22491] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3787), 1, anon_sym_DOLLAR, + ACTIONS(3789), 1, sym__special_character, + ACTIONS(3791), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3793), 1, aux_sym_number_token1, + ACTIONS(3795), 1, aux_sym_number_token2, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3801), 1, anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3809), 1, sym__brace_start, + ACTIONS(4052), 1, + sym_test_operator, + STATE(4305), 1, + aux_sym__literal_repeat1, + STATE(4736), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 44, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4050), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4582), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83023,57 +94618,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24229] = 7, + [22588] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(736), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(4058), 1, + sym_variable_name, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 41, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83082,12 +94666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83099,39 +94681,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24295] = 6, + [22659] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(4058), 1, + sym_variable_name, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 42, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83140,12 +94729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83157,33 +94744,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24359] = 3, + [22730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, + sym_string, + ACTIONS(2068), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 44, + ACTIONS(2066), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83194,13 +94791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83212,33 +94807,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24417] = 3, + [22801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, + sym_string, + ACTIONS(2068), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 44, + ACTIONS(2066), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83249,13 +94854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83267,58 +94870,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24475] = 22, - ACTIONS(71), 1, + [22872] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - sym_word, - ACTIONS(3689), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3692), 1, + ACTIONS(3731), 1, anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3733), 1, sym__special_character, - ACTIONS(3698), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - ACTIONS(3704), 1, + ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3707), 1, + ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3710), 1, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3713), 1, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3716), 1, + ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3719), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3725), 1, + ACTIONS(3751), 1, + sym_file_descriptor, + ACTIONS(3753), 1, sym_test_operator, - ACTIONS(3728), 1, + ACTIONS(3755), 1, sym__brace_start, - STATE(2207), 1, + ACTIONS(4060), 1, + aux_sym_heredoc_redirect_token1, + STATE(3596), 1, + aux_sym__heredoc_command, + STATE(5351), 1, aux_sym__literal_repeat1, - ACTIONS(3686), 2, + STATE(5456), 1, + sym_concatenation, + STATE(6944), 1, + sym__heredoc_expression, + STATE(6945), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3701), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3722), 2, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3719), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(697), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1898), 7, - anon_sym_PIPE, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5517), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1952), 9, + anon_sym_GT_PIPE, + STATE(5062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83328,143 +94955,190 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1900), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24571] = 3, + [22987] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3753), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3755), 1, sym__brace_start, + ACTIONS(4062), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 44, + STATE(3608), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6870), 1, + sym__heredoc_expression, + STATE(6871), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3719), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5540), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [23102] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3729), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3731), 1, anon_sym_DOLLAR, + ACTIONS(3733), 1, sym__special_character, + ACTIONS(3735), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3737), 1, aux_sym_number_token1, + ACTIONS(3739), 1, aux_sym_number_token2, + ACTIONS(3741), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, anon_sym_BQUOTE, + ACTIONS(3747), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 6, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3753), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3755), 1, sym__brace_start, + ACTIONS(4064), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 44, + STATE(3591), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6873), 1, + sym__heredoc_expression, + STATE(6875), 1, + sym__heredoc_pipeline, + ACTIONS(3715), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3719), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5538), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24687] = 6, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [23217] = 6, ACTIONS(3), 1, sym_comment, - STATE(1433), 1, + STATE(1740), 1, aux_sym__literal_repeat1, - STATE(1748), 1, + STATE(1957), 1, sym_concatenation, - ACTIONS(2335), 5, + ACTIONS(2500), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1888), 9, + STATE(1560), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83474,15 +95148,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 34, + ACTIONS(2498), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83509,39 +95186,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24751] = 6, + [23284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(738), 1, - aux_sym_concatenation_repeat1, - ACTIONS(268), 5, - sym_file_descriptor, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3614), 1, + sym__special_character, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3620), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + anon_sym_BQUOTE, + ACTIONS(3626), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3630), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3632), 1, sym__brace_start, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 42, + ACTIONS(3608), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(741), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3606), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1839), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83550,56 +95262,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24815] = 6, + [23381] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3584), 1, + sym_variable_name, + STATE(2121), 1, + sym_string, + ACTIONS(3582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 42, + ACTIONS(3578), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83608,12 +95310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83625,35 +95325,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24879] = 3, + [23452] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, + sym_string, + ACTIONS(3284), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 44, + ACTIONS(3280), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83662,13 +95372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83680,39 +95388,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24937] = 6, + [23523] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(738), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, + sym_string, + ACTIONS(3284), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 42, + ACTIONS(3280), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83721,12 +95435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83738,39 +95451,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25001] = 6, + [23594] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(2261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2273), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2277), 1, + anon_sym_BQUOTE, + ACTIONS(2279), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2289), 1, sym__brace_start, + ACTIONS(3970), 1, + sym__special_character, + ACTIONS(3974), 1, + sym_variable_name, + ACTIONS(3976), 1, + sym_test_operator, + ACTIONS(4066), 1, + aux_sym__simple_variable_name_token1, + STATE(1743), 1, + aux_sym__literal_repeat1, + STATE(6739), 1, + sym_subscript, + ACTIONS(1799), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 42, + ACTIONS(2259), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2281), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3968), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(746), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2330), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1797), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83779,57 +95530,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [23697] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3787), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3791), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3793), 1, aux_sym_number_token1, + ACTIONS(3795), 1, aux_sym_number_token2, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(4070), 1, + sym__special_character, + ACTIONS(4072), 1, + sym_test_operator, + STATE(4305), 1, + aux_sym__literal_repeat1, + STATE(4736), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3783), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4068), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25065] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - anon_sym_DQUOTE, - STATE(1353), 1, + STATE(4472), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2968), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(2964), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83839,31 +95602,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [23791] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4082), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(4086), 1, aux_sym_number_token1, + ACTIONS(4088), 1, aux_sym_number_token2, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4094), 1, anon_sym_BQUOTE, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4100), 1, + sym_test_operator, + ACTIONS(4102), 1, + sym__brace_start, + STATE(4521), 1, + aux_sym__literal_repeat1, + STATE(5023), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4076), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4074), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25131] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2207), 1, - aux_sym__literal_repeat1, - STATE(697), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1952), 9, + STATE(4828), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83873,38 +95658,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 12, + ACTIONS(2494), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1981), 26, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [23887] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(809), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -83913,15 +95707,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [25195] = 6, - ACTIONS(71), 1, + ACTIONS(579), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [23947] = 21, + ACTIONS(3), 1, sym_comment, - STATE(2207), 1, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3840), 1, + anon_sym_DOLLAR, + ACTIONS(3846), 1, + anon_sym_DQUOTE, + ACTIONS(3849), 1, + aux_sym_number_token1, + ACTIONS(3852), 1, + aux_sym_number_token2, + ACTIONS(3855), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3861), 1, + anon_sym_BQUOTE, + ACTIONS(3864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3873), 1, + sym__brace_start, + ACTIONS(4107), 1, + sym__special_character, + ACTIONS(4110), 1, + sym_test_operator, + STATE(2270), 1, aux_sym__literal_repeat1, - STATE(697), 2, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3834), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1952), 9, + ACTIONS(4104), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1968), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83931,62 +95791,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 12, + ACTIONS(2214), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1943), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [25259] = 7, + [24043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(4115), 1, anon_sym_DQUOTE, - STATE(1964), 1, + ACTIONS(4119), 1, + sym_variable_name, + STATE(2334), 1, sym_string, - ACTIONS(3739), 2, + ACTIONS(4117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3735), 9, + ACTIONS(4113), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -83996,17 +95838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 33, + ACTIONS(1227), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84030,54 +95873,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25325] = 22, + [24113] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2707), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(2713), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(2716), 1, + ACTIONS(4086), 1, aux_sym_number_token1, - ACTIONS(2719), 1, + ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(2722), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2725), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2728), 1, + ACTIONS(4094), 1, anon_sym_BQUOTE, - ACTIONS(2731), 1, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2743), 1, + ACTIONS(4102), 1, sym__brace_start, - ACTIONS(3744), 1, + ACTIONS(4123), 1, sym__special_character, - ACTIONS(3747), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3750), 1, + ACTIONS(4125), 1, sym_test_operator, - STATE(1629), 1, + STATE(4521), 1, aux_sym__literal_repeat1, - ACTIONS(2289), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2701), 2, + STATE(5023), 1, + sym_concatenation, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2734), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(710), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3741), 3, + ACTIONS(2496), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4121), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1961), 9, + STATE(4705), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84087,14 +95928,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 16, + ACTIONS(2494), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84104,39 +95948,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25421] = 6, + [24209] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 1, - aux_sym_concatenation_token1, - ACTIONS(3756), 1, - sym__concat, - STATE(711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(4058), 1, + sym_variable_name, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 42, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84145,12 +95995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84162,35 +96010,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25485] = 3, + [24279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3785), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3803), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3809), 1, sym__brace_start, + ACTIONS(4070), 1, + sym__special_character, + ACTIONS(4129), 1, + sym_test_operator, + STATE(4277), 1, + aux_sym__literal_repeat1, + STATE(4782), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 44, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4127), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4479), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84200,61 +96083,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [24373] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3612), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3616), 1, aux_sym_number_token1, + ACTIONS(3618), 1, aux_sym_number_token2, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4133), 1, + sym__special_character, + ACTIONS(4135), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3608), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4131), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25543] = 10, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [24467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3669), 1, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(4058), 1, sym_variable_name, - STATE(5389), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3635), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 9, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84262,12 +96204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84279,47 +96220,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25615] = 13, + [24537] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 1, - sym_variable_name, - ACTIONS(3761), 1, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3620), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + anon_sym_BQUOTE, + ACTIONS(3626), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4133), 1, + sym__special_character, + ACTIONS(4135), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5389), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3665), 2, + ACTIONS(3608), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4131), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3759), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - STATE(3635), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3640), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84327,52 +96294,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, + [24633] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3616), 1, aux_sym_number_token1, + ACTIONS(3618), 1, aux_sym_number_token2, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, anon_sym_BQUOTE, + ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3632), 1, sym__brace_start, + ACTIONS(4133), 1, + sym__special_character, + ACTIONS(4135), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 44, + ACTIONS(3608), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4131), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84381,32 +96370,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [24729] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3791), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3793), 1, aux_sym_number_token1, + ACTIONS(3795), 1, aux_sym_number_token2, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3801), 1, anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(4139), 1, + sym__special_character, + ACTIONS(4141), 1, + sym_test_operator, + STATE(4277), 1, + aux_sym__literal_repeat1, + STATE(4782), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3783), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4137), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25751] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2093), 1, - aux_sym__literal_repeat1, - STATE(2174), 1, - sym_concatenation, - STATE(1915), 9, + STATE(4834), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84416,63 +96424,193 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 13, + ACTIONS(2494), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [24825] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3616), 1, aux_sym_number_token1, + ACTIONS(3618), 1, aux_sym_number_token2, + ACTIONS(3620), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2224), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(3626), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3632), 1, sym__brace_start, + ACTIONS(4133), 1, + sym__special_character, + ACTIONS(4135), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3608), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4131), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [24919] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3791), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3801), 1, anon_sym_BQUOTE, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(4139), 1, + sym__special_character, + ACTIONS(4145), 1, + sym_test_operator, + STATE(4305), 1, + aux_sym__literal_repeat1, + STATE(4736), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3783), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [25815] = 7, + ACTIONS(4143), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4838), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [25015] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - STATE(1964), 1, + ACTIONS(3584), 1, + sym_variable_name, + STATE(2121), 1, sym_string, - ACTIONS(3739), 2, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1241), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3735), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -84482,17 +96620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 33, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84501,7 +96641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -84516,22 +96656,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25881] = 7, + [25085] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2725), 1, + ts_builtin_sym_end, + ACTIONS(2717), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [25147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - STATE(1353), 1, + ACTIONS(3829), 1, + sym_variable_name, + STATE(1595), 1, sym_string, - ACTIONS(2968), 2, + ACTIONS(3827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2964), 9, + ACTIONS(3825), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -84541,15 +96740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 33, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84560,7 +96762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -84575,35 +96776,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25947] = 3, + [25217] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3584), 1, + sym_variable_name, + STATE(2121), 1, + sym_string, + ACTIONS(3582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 44, + ACTIONS(3578), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84612,13 +96823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84630,78 +96838,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26005] = 6, - ACTIONS(3), 1, + [25287] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, - sym_file_descriptor, + ACTIONS(4147), 1, + sym_word, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4153), 1, + anon_sym_DOLLAR, + ACTIONS(4155), 1, + sym__special_character, + ACTIONS(4157), 1, + anon_sym_DQUOTE, + ACTIONS(4161), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4175), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4177), 1, + sym_variable_name, + ACTIONS(4179), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4181), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 42, + STATE(2688), 1, + aux_sym__literal_repeat1, + STATE(6751), 1, + sym_subscript, + ACTIONS(4149), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(803), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1797), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2419), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1799), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [25391] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, + ACTIONS(4082), 1, sym__special_character, + ACTIONS(4084), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4086), 1, aux_sym_number_token1, + ACTIONS(4088), 1, aux_sym_number_token2, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4094), 1, anon_sym_BQUOTE, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [26069] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1515), 1, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(4185), 1, + sym_test_operator, + STATE(4546), 1, aux_sym__literal_repeat1, - STATE(1631), 1, + STATE(4907), 1, sym_concatenation, - ACTIONS(2224), 5, + ACTIONS(2500), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1920), 9, + ACTIONS(4076), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4183), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4692), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84711,15 +96971,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(2498), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84729,114 +96992,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [25487] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4147), 1, + sym_word, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4153), 1, anon_sym_DOLLAR, + ACTIONS(4155), 1, sym__special_character, + ACTIONS(4157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4161), 1, aux_sym_number_token1, + ACTIONS(4163), 1, aux_sym_number_token2, + ACTIONS(4165), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, anon_sym_BQUOTE, + ACTIONS(4171), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [26133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, - sym_file_descriptor, + ACTIONS(4177), 1, + sym_variable_name, + ACTIONS(4179), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4181), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 42, + ACTIONS(4187), 1, + aux_sym__simple_variable_name_token1, + STATE(2688), 1, + aux_sym__literal_repeat1, + STATE(6751), 1, + sym_subscript, + ACTIONS(4149), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(797), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1755), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2419), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1757), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [25591] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2721), 1, + ts_builtin_sym_end, + ACTIONS(2717), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [26197] = 6, + [25653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3771), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, + sym_variable_name, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 42, + ACTIONS(3825), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84845,12 +97176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84862,109 +97191,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26261] = 3, - ACTIONS(3), 1, + [25723] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(809), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 44, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(579), 29, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_done, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [25783] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4189), 1, + sym_word, + ACTIONS(4195), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4198), 1, + anon_sym_DOLLAR, + ACTIONS(4201), 1, + sym__special_character, + ACTIONS(4204), 1, + anon_sym_DQUOTE, + ACTIONS(4210), 1, aux_sym_number_token1, + ACTIONS(4213), 1, aux_sym_number_token2, + ACTIONS(4216), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4219), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4222), 1, anon_sym_BQUOTE, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4231), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4234), 1, + sym_variable_name, + ACTIONS(4237), 1, + sym_test_operator, + ACTIONS(4240), 1, + sym__brace_start, + STATE(2688), 1, + aux_sym__literal_repeat1, + STATE(6751), 1, + sym_subscript, + ACTIONS(4192), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4207), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4228), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [26319] = 22, + STATE(803), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1702), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2419), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1704), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [25887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2640), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(2644), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(4086), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(4094), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(4102), 1, sym__brace_start, - ACTIONS(3657), 1, + ACTIONS(4123), 1, sym__special_character, - ACTIONS(3661), 1, + ACTIONS(4245), 1, sym_test_operator, - ACTIONS(3773), 1, - aux_sym__simple_variable_name_token1, - STATE(1629), 1, + STATE(4546), 1, aux_sym__literal_repeat1, - ACTIONS(2275), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2636), 2, + STATE(4907), 1, + sym_concatenation, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(687), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3655), 3, + ACTIONS(2500), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4243), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1961), 9, + STATE(4614), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84974,14 +97382,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 16, + ACTIONS(2498), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84991,37 +97402,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [26415] = 6, + [25983] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3777), 5, + ACTIONS(4115), 1, + anon_sym_DQUOTE, + ACTIONS(4119), 1, + sym_variable_name, + STATE(2334), 1, + sym_string, + ACTIONS(4117), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 42, + ACTIONS(4113), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -85035,9 +97452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85049,39 +97464,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26479] = 6, + [26053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3781), 5, + STATE(1744), 1, + aux_sym__literal_repeat1, + STATE(811), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2074), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 42, + STATE(2337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85107,100 +97523,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26543] = 9, + [26118] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 1, + ACTIONS(4259), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4263), 1, sym_variable_name, - STATE(5389), 1, + STATE(6726), 1, sym_subscript, - ACTIONS(3588), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3635), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(3584), 21, + ACTIONS(4249), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4255), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - [26613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - aux_sym_concatenation_token1, - ACTIONS(3601), 1, - sym__concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 5, + STATE(4237), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85208,7 +97572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -85226,17 +97589,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26677] = 3, + [26197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4266), 1, + aux_sym_concatenation_token1, + ACTIONS(4268), 1, sym__concat, + STATE(820), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 44, + ACTIONS(1265), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85266,7 +97634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85281,35 +97648,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26735] = 3, + [26262] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(4263), 1, + sym_variable_name, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + STATE(6726), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4237), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 44, - anon_sym_LPAREN_LPAREN, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85317,11 +97694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85336,93 +97711,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26793] = 6, - ACTIONS(3), 1, + [26335] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(736), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(2725), 1, + anon_sym_BQUOTE, + ACTIONS(2717), 22, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 42, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [26396] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2738), 1, + anon_sym_DOLLAR, + ACTIONS(2744), 1, + anon_sym_DQUOTE, + ACTIONS(2747), 1, aux_sym_number_token1, + ACTIONS(2750), 1, aux_sym_number_token2, + ACTIONS(2753), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2759), 1, anon_sym_BQUOTE, + ACTIONS(2762), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2771), 1, + sym__brace_start, + ACTIONS(4277), 1, + sym__special_character, + ACTIONS(4280), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(2732), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [26857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1246), 6, + STATE(811), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2216), 3, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 44, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(4274), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85432,39 +97842,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [26491] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_BQUOTE, + ACTIONS(2717), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [26915] = 6, + [26552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(4266), 1, aux_sym_concatenation_token1, - ACTIONS(3601), 1, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, sym__concat, - STATE(739), 1, + STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 5, + ACTIONS(1281), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 42, + ACTIONS(1271), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85507,17 +97959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26979] = 3, + [26619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4266), 1, + aux_sym_concatenation_token1, + ACTIONS(4288), 1, sym__concat, + STATE(820), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 44, + ACTIONS(1286), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85547,7 +98004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85562,22 +98018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27037] = 6, + [26684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4266), 1, aux_sym_concatenation_token1, - ACTIONS(3791), 1, + ACTIONS(4286), 1, sym__concat, - STATE(711), 1, + STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1281), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 42, + ACTIONS(1271), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85590,6 +98046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85620,35 +98077,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27101] = 3, + [26749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + STATE(1744), 1, + aux_sym__literal_repeat1, + STATE(811), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2096), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 44, + STATE(2337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85660,7 +98122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85675,39 +98136,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27159] = 6, - ACTIONS(3), 1, + [26814] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3793), 1, - sym__concat, - STATE(711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, + ACTIONS(4290), 1, + sym_word, + ACTIONS(4296), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4299), 1, + anon_sym_DOLLAR, + ACTIONS(4302), 1, + sym__special_character, + ACTIONS(4305), 1, + anon_sym_DQUOTE, + ACTIONS(4311), 1, + aux_sym_number_token1, + ACTIONS(4314), 1, + aux_sym_number_token2, + ACTIONS(4317), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4323), 1, + anon_sym_BQUOTE, + ACTIONS(4326), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4332), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4335), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 42, + STATE(2457), 1, + aux_sym__literal_repeat1, + ACTIONS(4293), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4308), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4329), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(817), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2271), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [26911] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + sym_variable_name, + ACTIONS(4340), 1, + aux_sym_heredoc_redirect_token1, + STATE(6726), 1, + sym_subscript, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4338), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4237), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2719), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85715,7 +98260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -85733,22 +98277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27223] = 6, + [26990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(4266), 1, aux_sym_concatenation_token1, - ACTIONS(3795), 1, + ACTIONS(4286), 1, sym__concat, - STATE(664), 1, + STATE(808), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 42, + ACTIONS(241), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85760,6 +98304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85791,17 +98336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27287] = 3, + [27055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, - sym_file_descriptor, + ACTIONS(4342), 1, + aux_sym_concatenation_token1, + ACTIONS(4345), 1, sym__concat, + STATE(820), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 44, + ACTIONS(1251), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85831,7 +98381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85846,14 +98395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27345] = 6, + [27120] = 6, ACTIONS(71), 1, sym_comment, - STATE(2055), 1, + STATE(2457), 1, aux_sym__literal_repeat1, - STATE(2194), 1, + STATE(817), 2, sym_concatenation, - STATE(1927), 9, + aux_sym_for_statement_repeat1, + STATE(2271), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85863,7 +98413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 13, + ACTIONS(2094), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -85877,7 +98427,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2335), 26, + ACTIONS(2096), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -85904,34 +98454,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27409] = 3, + [27185] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4263), 1, + sym_variable_name, + STATE(6726), 1, + sym_subscript, + ACTIONS(4261), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4348), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 43, + STATE(4237), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4253), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85940,35 +98516,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [27256] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2457), 1, + aux_sym__literal_repeat1, + STATE(817), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2271), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2074), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [27466] = 3, + [27321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, - sym_file_descriptor, + ACTIONS(4266), 1, + aux_sym_concatenation_token1, + ACTIONS(4286), 1, sym__concat, + STATE(808), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 43, + ACTIONS(1261), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85981,6 +98603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85997,7 +98620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86012,120 +98634,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27523] = 9, + [27386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, - sym_variable_name, - STATE(5434), 1, - sym_subscript, - ACTIONS(3588), 2, - sym_test_operator, - sym__brace_start, - STATE(3694), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3636), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4084), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4086), 1, aux_sym_number_token1, + ACTIONS(4088), 1, aux_sym_number_token2, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4094), 1, anon_sym_BQUOTE, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(3584), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [27592] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3800), 1, - sym_word, - ACTIONS(3804), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(3808), 1, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(4352), 1, sym__special_character, - ACTIONS(3810), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - aux_sym_number_token1, - ACTIONS(3816), 1, - aux_sym_number_token2, - ACTIONS(3818), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3822), 1, - anon_sym_BQUOTE, - ACTIONS(3824), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3828), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3830), 1, + ACTIONS(4354), 1, sym_test_operator, - ACTIONS(3832), 1, - sym__brace_start, - STATE(2308), 1, + STATE(4521), 1, aux_sym__literal_repeat1, - ACTIONS(3802), 2, + STATE(5023), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3812), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3826), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(787), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2273), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2019), 9, + ACTIONS(4350), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4921), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86135,63 +98688,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 10, - sym_file_descriptor, + ACTIONS(2494), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27689] = 21, + [27481] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3073), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(4086), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, + ACTIONS(4094), 1, anon_sym_BQUOTE, - ACTIONS(3085), 1, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, + ACTIONS(4102), 1, sym__brace_start, - ACTIONS(3836), 1, + ACTIONS(4352), 1, sym__special_character, - ACTIONS(3838), 1, + ACTIONS(4358), 1, sym_test_operator, - STATE(1923), 1, + STATE(4546), 1, aux_sym__literal_repeat1, - ACTIONS(1943), 2, + STATE(4907), 1, + sym_concatenation, + ACTIONS(2500), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(772), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3834), 3, + ACTIONS(4356), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2101), 9, + STATE(4901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86201,14 +98762,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1941), 16, + ACTIONS(2498), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86218,115 +98782,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27782] = 6, - ACTIONS(3), 1, + [27576] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(798), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 6, + ACTIONS(2717), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2715), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [27845] = 22, - ACTIONS(71), 1, + [27635] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - sym_word, - ACTIONS(3848), 1, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3850), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3852), 1, - sym__special_character, - ACTIONS(3854), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(3858), 1, + ACTIONS(4086), 1, aux_sym_number_token1, - ACTIONS(3860), 1, + ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(3862), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3872), 1, - sym_test_operator, - ACTIONS(3874), 1, + ACTIONS(4102), 1, sym__brace_start, - STATE(2312), 1, + ACTIONS(4362), 1, + sym__special_character, + ACTIONS(4364), 1, + sym_test_operator, + STATE(4546), 1, aux_sym__literal_repeat1, - ACTIONS(3846), 2, + STATE(4907), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3856), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3870), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1979), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2023), 9, + ACTIONS(4360), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86336,64 +98890,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1981), 11, - sym_file_descriptor, + ACTIONS(2498), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27940] = 21, + anon_sym_BQUOTE, + [27728] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3069), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3073), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(3075), 1, + ACTIONS(4086), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(3079), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3081), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3083), 1, - anon_sym_BQUOTE, - ACTIONS(3085), 1, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3091), 1, + ACTIONS(4102), 1, sym__brace_start, - ACTIONS(3836), 1, + ACTIONS(4362), 1, sym__special_character, - ACTIONS(3838), 1, + ACTIONS(4368), 1, sym_test_operator, - STATE(1923), 1, + STATE(4521), 1, aux_sym__literal_repeat1, - ACTIONS(1981), 2, + STATE(5023), 1, + sym_concatenation, + ACTIONS(2496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3065), 2, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3087), 2, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(772), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3834), 3, + ACTIONS(4366), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2101), 9, + STATE(4627), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86403,14 +98963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1979), 16, + ACTIONS(2494), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86420,101 +98983,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [28033] = 7, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [27821] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2013), 1, - anon_sym_DQUOTE, - STATE(1388), 1, + STATE(2476), 1, + aux_sym__literal_repeat1, + STATE(2637), 1, + sym_concatenation, + STATE(2303), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3061), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(3059), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [28098] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 6, + ACTIONS(2496), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 39, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -86522,31 +99034,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [28163] = 3, + [27885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 43, + ACTIONS(1300), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86559,6 +99065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86590,17 +99097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28220] = 3, + [27943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4374), 1, + aux_sym_concatenation_token1, + ACTIONS(4376), 1, sym__concat, + STATE(893), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, + ACTIONS(4370), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86612,7 +99124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86629,7 +99141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86644,38 +99155,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28277] = 6, + [28007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1957), 1, + sym_concatenation, + ACTIONS(2500), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 41, + STATE(2291), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86701,23 +99213,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28340] = 6, + [28071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(3842), 1, + ACTIONS(4376), 1, sym__concat, - STATE(798), 1, + STATE(891), 1, aux_sym_concatenation_repeat1, - ACTIONS(268), 6, + ACTIONS(1263), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 40, + ACTIONS(1261), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86729,8 +99240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -86758,38 +99271,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28403] = 6, + [28135] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3881), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4384), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(4386), 1, + sym_variable_name, + STATE(6772), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4378), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4380), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4358), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2719), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86797,7 +99319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -86815,38 +99336,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28466] = 5, + [28213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3883), 1, - sym__special_character, - STATE(810), 1, + STATE(1739), 1, aux_sym__literal_repeat1, - ACTIONS(268), 5, + STATE(1953), 1, + sym_concatenation, + ACTIONS(2496), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 42, + STATE(2328), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86859,6 +99381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86871,184 +99394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28527] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(465), 1, - sym_test_operator, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2538), 1, - sym_word, - ACTIONS(3885), 1, - sym__special_character, - ACTIONS(3887), 1, - sym_variable_name, - STATE(427), 1, - sym_command_name, - STATE(757), 1, - aux_sym__literal_repeat1, - STATE(931), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(445), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(674), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28638] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, - anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(703), 1, - sym_test_operator, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2470), 1, - sym_word, - ACTIONS(3887), 1, - sym_variable_name, - ACTIONS(3889), 1, - sym__special_character, - STATE(429), 1, - sym_command_name, - STATE(827), 1, - aux_sym__literal_repeat1, - STATE(945), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(683), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28749] = 6, + [28277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4389), 1, aux_sym_concatenation_token1, - ACTIONS(3677), 1, + ACTIONS(4391), 1, sym__concat, - STATE(797), 1, + STATE(841), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 41, + ACTIONS(1265), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87060,6 +99421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87090,22 +99452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28812] = 6, + [28341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4389), 1, aux_sym_concatenation_token1, - ACTIONS(3677), 1, + ACTIONS(4393), 1, sym__concat, - STATE(804), 1, + STATE(841), 1, aux_sym_concatenation_repeat1, - ACTIONS(3777), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 41, + ACTIONS(1286), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87117,6 +99479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87147,34 +99510,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28875] = 3, + [28405] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4386), 1, + sym_variable_name, + STATE(6772), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4358), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 43, - anon_sym_LPAREN_LPAREN, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87182,11 +99555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87201,22 +99572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28932] = 7, + [28477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(4397), 1, anon_sym_DQUOTE, - STATE(2077), 1, + ACTIONS(4401), 1, + sym_variable_name, + STATE(2412), 1, sym_string, - ACTIONS(3895), 2, + ACTIONS(4399), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3891), 9, + ACTIONS(4395), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87226,7 +99598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 32, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87236,6 +99608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87259,22 +99632,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28997] = 6, + [28545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4403), 1, aux_sym_concatenation_token1, - ACTIONS(3677), 1, + ACTIONS(4406), 1, sym__concat, - STATE(804), 1, + STATE(841), 1, aux_sym_concatenation_repeat1, - ACTIONS(3785), 5, + ACTIONS(1253), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 41, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87286,6 +99659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87316,43 +99690,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29060] = 10, + [28609] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3897), 1, + ACTIONS(4397), 1, + anon_sym_DQUOTE, + ACTIONS(4401), 1, sym_variable_name, - STATE(5455), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3692), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + STATE(2412), 1, + sym_string, + ACTIONS(4399), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 8, - anon_sym_SEMI, + ACTIONS(4395), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87360,12 +99734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -87377,153 +99750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29131] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3844), 1, - sym_word, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(3852), 1, - sym__special_character, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - aux_sym_number_token1, - ACTIONS(3860), 1, - aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3872), 1, - sym_test_operator, - ACTIONS(3874), 1, - sym__brace_start, - STATE(2312), 1, - aux_sym__literal_repeat1, - ACTIONS(3846), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3856), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3870), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1941), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1943), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [29226] = 7, + [28677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, - anon_sym_DQUOTE, - STATE(1388), 1, - sym_string, - ACTIONS(3061), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(3059), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [29291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3781), 5, - sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 41, + ACTIONS(1320), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87535,6 +99772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87551,6 +99790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87565,17 +99805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29354] = 3, + [28735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 43, + ACTIONS(1336), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87588,6 +99828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87619,17 +99860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29411] = 3, + [28793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 43, + ACTIONS(1340), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87642,6 +99883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87673,17 +99915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29468] = 3, + [28851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 43, + ACTIONS(1312), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87696,6 +99938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87727,69 +99970,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29525] = 21, + [28909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, + ACTIONS(4386), 1, + sym_variable_name, + STATE(6772), 1, + sym_subscript, + ACTIONS(4261), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4348), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4358), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(3249), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3252), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3255), 1, aux_sym_number_token2, - ACTIONS(3258), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3264), 1, anon_sym_BQUOTE, - ACTIONS(3267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3276), 1, - sym__brace_start, - ACTIONS(3903), 1, - sym__special_character, - ACTIONS(3906), 1, - sym_test_operator, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(1900), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3237), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(772), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3900), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2101), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1898), 16, + ACTIONS(4253), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87799,22 +100031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [29618] = 6, + [28979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 41, + ACTIONS(1352), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87826,6 +100053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87842,6 +100071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87856,74 +100086,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29681] = 6, - ACTIONS(71), 1, + [29037] = 13, + ACTIONS(3), 1, sym_comment, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2304), 1, - sym_concatenation, - STATE(1991), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 12, + ACTIONS(4386), 1, + sym_variable_name, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + STATE(6772), 1, + sym_subscript, + ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2224), 26, + anon_sym_LT_LT_DASH, + ACTIONS(4409), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4358), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4257), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4261), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [29744] = 3, + sym_word, + [29115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4389), 1, + aux_sym_concatenation_token1, + ACTIONS(4413), 1, sym__concat, + STATE(837), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 43, + ACTIONS(1261), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87952,7 +100195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87967,75 +100209,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29801] = 10, - ACTIONS(3), 1, + [29179] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3797), 1, - sym_variable_name, - STATE(5434), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(3694), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4415), 1, + sym_word, + ACTIONS(4421), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4424), 1, anon_sym_DOLLAR, + ACTIONS(4427), 1, sym__special_character, + ACTIONS(4430), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4436), 1, aux_sym_number_token1, + ACTIONS(4439), 1, aux_sym_number_token2, + ACTIONS(4442), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4445), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4448), 1, anon_sym_BQUOTE, + ACTIONS(4451), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4457), 1, + sym_test_operator, + ACTIONS(4460), 1, + sym__brace_start, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(4418), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4433), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4454), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [29872] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2139), 1, - aux_sym__literal_repeat1, - STATE(2295), 1, + STATE(851), 2, sym_concatenation, - STATE(1965), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2369), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88045,25 +100270,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2335), 26, + ACTIONS(2216), 12, sym_file_descriptor, sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -88074,52 +100283,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [29935] = 7, + [29275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, - anon_sym_DQUOTE, - STATE(2077), 1, - sym_string, - ACTIONS(3895), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(4389), 1, + aux_sym_concatenation_token1, + ACTIONS(4413), 1, + sym__concat, + STATE(838), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3891), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88131,7 +100327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -88143,22 +100341,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30000] = 6, + [29339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4389), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4413), 1, sym__concat, - STATE(817), 1, + STATE(837), 1, aux_sym_concatenation_repeat1, - ACTIONS(268), 5, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 41, + ACTIONS(241), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88171,8 +100369,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88200,22 +100399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30063] = 6, + [29403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4376), 1, sym__concat, - STATE(817), 1, + STATE(893), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(4465), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 41, + ACTIONS(4463), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88227,9 +100426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88257,22 +100457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30126] = 6, + [29467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 41, + ACTIONS(1308), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88284,6 +100479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -88300,6 +100497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88314,22 +100512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30189] = 6, + [29525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(756), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 41, + ACTIONS(1304), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88342,8 +100535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88357,6 +100552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88371,132 +100567,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30252] = 23, - ACTIONS(71), 1, + [29583] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, - sym_word, - ACTIONS(3917), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3920), 1, - anon_sym_DOLLAR, - ACTIONS(3923), 1, - sym__special_character, - ACTIONS(3926), 1, - anon_sym_DQUOTE, - ACTIONS(3932), 1, - aux_sym_number_token1, - ACTIONS(3935), 1, - aux_sym_number_token2, - ACTIONS(3938), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3941), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3944), 1, - anon_sym_BQUOTE, - ACTIONS(3947), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3953), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3956), 1, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3959), 1, + sym__bare_dollar, sym__brace_start, - STATE(2308), 1, - aux_sym__literal_repeat1, - ACTIONS(3914), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 44, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3929), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(783), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2287), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2019), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2289), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30349] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3962), 1, - sym_word, - ACTIONS(3968), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3971), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3974), 1, sym__special_character, - ACTIONS(3977), 1, anon_sym_DQUOTE, - ACTIONS(3983), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3986), 1, aux_sym_number_token2, - ACTIONS(3989), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3995), 1, anon_sym_BQUOTE, - ACTIONS(3998), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4004), 1, - sym_test_operator, - ACTIONS(4007), 1, - sym__brace_start, - STATE(2312), 1, - aux_sym__literal_repeat1, - ACTIONS(3965), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3980), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4001), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(784), 2, + sym_word, + [29641] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2671), 1, + aux_sym__literal_repeat1, + STATE(851), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1898), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2023), 9, + STATE(2369), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88506,29 +100640,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1900), 11, + ACTIONS(2072), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2074), 26, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30444] = 3, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [29705] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, + ACTIONS(4374), 1, + aux_sym_concatenation_token1, + ACTIONS(4376), 1, sym__concat, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 43, + ACTIONS(4467), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88540,7 +100707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -88557,7 +100724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88572,24 +100738,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30501] = 7, + [29769] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3233), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3236), 1, + anon_sym_DOLLAR, + ACTIONS(3242), 1, + anon_sym_DQUOTE, + ACTIONS(3245), 1, + aux_sym_number_token1, + ACTIONS(3248), 1, + aux_sym_number_token2, + ACTIONS(3251), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3257), 1, + anon_sym_BQUOTE, + ACTIONS(3260), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, + sym__brace_start, + ACTIONS(4474), 1, + sym__special_character, + ACTIONS(4477), 1, + sym_test_operator, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3230), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(860), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4471), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2422), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [29863] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4376), 1, sym__concat, - STATE(756), 1, + STATE(891), 1, aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(4482), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 40, + ACTIONS(4480), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88601,8 +100838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88630,60 +100869,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30566] = 23, - ACTIONS(71), 1, + [29927] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 1, - sym_word, - ACTIONS(3804), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3806), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(3808), 1, - sym__special_character, - ACTIONS(3810), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(3816), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3818), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3820), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3824), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3830), 1, - sym_test_operator, - ACTIONS(3832), 1, + ACTIONS(3417), 1, sym__brace_start, - ACTIONS(4010), 1, - aux_sym__simple_variable_name_token1, - STATE(2308), 1, + ACTIONS(4486), 1, + sym__special_character, + ACTIONS(4488), 1, + sym_test_operator, + STATE(2161), 1, aux_sym__literal_repeat1, - ACTIONS(3802), 2, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3812), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3826), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(783), 2, + STATE(860), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2180), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2019), 9, + aux_sym_for_statement_repeat1, + ACTIONS(4484), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88693,89 +100924,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2182), 10, - sym_file_descriptor, + ACTIONS(2072), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30663] = 30, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [30021] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(3401), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym_test_operator, - ACTIONS(334), 1, + ACTIONS(3417), 1, sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2585), 1, - sym_word, - ACTIONS(3887), 1, - sym_variable_name, - ACTIONS(4012), 1, + ACTIONS(4486), 1, sym__special_character, - STATE(441), 1, - sym_command_name, - STATE(948), 1, + ACTIONS(4488), 1, + sym_test_operator, + STATE(2161), 1, aux_sym__literal_repeat1, - STATE(1176), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(302), 2, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(312), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(326), 2, + ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(925), 9, + STATE(860), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4484), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88785,46 +100997,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [30774] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - ts_builtin_sym_end, - ACTIONS(3797), 1, - sym_variable_name, - ACTIONS(4020), 1, - aux_sym_heredoc_redirect_token1, - STATE(5434), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, + ACTIONS(2094), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(3694), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4014), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88832,40 +101013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [30851] = 6, + [30115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(4022), 1, - sym__concat, - STATE(818), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 6, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, + ACTIONS(1324), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88878,7 +101038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88892,6 +101055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88906,100 +101070,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30914] = 3, + [30173] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3189), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3191), 1, aux_sym_number_token1, + ACTIONS(3193), 1, aux_sym_number_token2, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3199), 1, anon_sym_BQUOTE, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(4492), 1, + sym__special_character, + ACTIONS(4494), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4496), 1, + sym_test_operator, + STATE(1966), 1, + aux_sym__literal_repeat1, + ACTIONS(2564), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3181), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(875), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4490), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [30971] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3897), 1, - sym_variable_name, - STATE(5455), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, + STATE(2367), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2562), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(3692), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3759), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89007,34 +101143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31048] = 3, + anon_sym_LT_LT_DASH, + [30269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 43, + ACTIONS(1251), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89047,6 +101167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89078,71 +101199,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31105] = 3, - ACTIONS(3), 1, + [30327] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4498), 1, + sym_word, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4504), 1, + anon_sym_DOLLAR, + ACTIONS(4506), 1, + sym__special_character, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4526), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4528), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 43, + STATE(2715), 1, + aux_sym__literal_repeat1, + ACTIONS(4500), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4510), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(895), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2072), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2074), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31162] = 3, + [30423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 43, + ACTIONS(1348), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89155,6 +101296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89186,17 +101328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31219] = 3, + [30481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 43, + ACTIONS(1296), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89209,6 +101351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89240,42 +101383,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31276] = 6, - ACTIONS(3), 1, + [30539] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(4026), 1, - sym__concat, - STATE(711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + STATE(2671), 1, + aux_sym__literal_repeat1, + STATE(851), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2369), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2096), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 41, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -89283,37 +101432,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31339] = 6, + [30603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(4028), 1, - sym__concat, - STATE(818), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 6, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, + ACTIONS(1332), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89326,7 +101464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -89340,6 +101481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89354,17 +101496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31402] = 3, + [30661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 43, + ACTIONS(1292), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89377,6 +101519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89408,34 +101551,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31459] = 3, + [30719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, + sym_string, + ACTIONS(3117), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 43, + ACTIONS(3113), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89444,13 +101595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -89462,22 +101611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31516] = 6, + [30787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(3677), 1, + ACTIONS(4376), 1, sym__concat, - STATE(804), 1, + STATE(893), 1, aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, + ACTIONS(4532), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 41, + ACTIONS(4530), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89489,6 +101638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89519,57 +101669,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31579] = 9, + [30851] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - sym_variable_name, - STATE(5455), 1, - sym_subscript, - ACTIONS(3588), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3692), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3536), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3539), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3545), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3548), 1, aux_sym_number_token1, + ACTIONS(3551), 1, aux_sym_number_token2, + ACTIONS(3554), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3557), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3560), 1, anon_sym_BQUOTE, + ACTIONS(3563), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3575), 1, + sym__brace_start, + ACTIONS(4537), 1, + sym__special_character, + ACTIONS(4540), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4543), 1, + sym_test_operator, + STATE(1966), 1, + aux_sym__literal_repeat1, + ACTIONS(2442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3533), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(875), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4534), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(3584), 20, - anon_sym_SEMI, + STATE(2367), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2440), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89579,103 +101743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [31648] = 30, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(77), 1, - sym_test_operator, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2468), 1, - sym_word, - ACTIONS(3887), 1, - sym_variable_name, - ACTIONS(4030), 1, - sym__special_character, - STATE(434), 1, - sym_command_name, - STATE(985), 1, - aux_sym__literal_repeat1, - STATE(1141), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(813), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31759] = 6, + [30947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(4032), 1, + ACTIONS(4376), 1, sym__concat, - STATE(711), 1, + STATE(891), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(4548), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 41, + ACTIONS(4546), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89687,6 +101770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -89717,34 +101801,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31822] = 3, + [31011] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(3115), 1, + anon_sym_DQUOTE, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, + sym_string, + ACTIONS(3117), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 43, + ACTIONS(3113), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89753,13 +101845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -89771,78 +101861,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31879] = 30, - ACTIONS(71), 1, + [31079] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, + ACTIONS(3183), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(985), 1, + ACTIONS(3189), 1, anon_sym_DQUOTE, - ACTIONS(989), 1, + ACTIONS(3191), 1, aux_sym_number_token1, - ACTIONS(991), 1, + ACTIONS(3193), 1, aux_sym_number_token2, - ACTIONS(993), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, + ACTIONS(3199), 1, anon_sym_BQUOTE, - ACTIONS(999), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1005), 1, - sym_test_operator, - ACTIONS(1007), 1, + ACTIONS(3209), 1, sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2480), 1, - sym_word, - ACTIONS(3887), 1, - sym_variable_name, - ACTIONS(4034), 1, + ACTIONS(4492), 1, sym__special_character, - STATE(537), 1, - sym_command_name, - STATE(1928), 1, + ACTIONS(4496), 1, + sym_test_operator, + ACTIONS(4550), 1, + aux_sym__simple_variable_name_token1, + STATE(1966), 1, aux_sym__literal_repeat1, - STATE(1945), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(977), 2, + ACTIONS(2299), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3181), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(987), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, + ACTIONS(3203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1487), 9, + STATE(865), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4490), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2367), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89852,34 +101918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [31990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(2297), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89888,152 +101935,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [31175] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4498), 1, + sym_word, + ACTIONS(4502), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4504), 1, anon_sym_DOLLAR, + ACTIONS(4506), 1, sym__special_character, + ACTIONS(4508), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4512), 1, aux_sym_number_token1, + ACTIONS(4514), 1, aux_sym_number_token2, + ACTIONS(4516), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, anon_sym_BQUOTE, + ACTIONS(4522), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32047] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - aux_sym_concatenation_token1, - ACTIONS(3677), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, - sym_file_descriptor, + ACTIONS(4526), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4528), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 41, + STATE(2715), 1, + aux_sym__literal_repeat1, + ACTIONS(4500), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4510), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(895), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2094), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32110] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4036), 1, - aux_sym_concatenation_token1, - ACTIONS(4039), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2096), 12, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32173] = 5, + [31271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - sym__special_character, - STATE(810), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(4374), 1, + aux_sym_concatenation_token1, + ACTIONS(4376), 1, + sym__concat, + STATE(893), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(4552), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90045,7 +102036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90064,69 +102054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32234] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 1, - sym_variable_name, - ACTIONS(4045), 1, - ts_builtin_sym_end, - ACTIONS(4049), 1, - aux_sym_heredoc_redirect_token1, - STATE(5434), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(3694), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4047), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -90140,119 +102067,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32311] = 30, - ACTIONS(71), 1, + [31335] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, + ACTIONS(4558), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(745), 1, - sym_test_operator, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2587), 1, - sym_word, - ACTIONS(3887), 1, + ACTIONS(4562), 1, sym_variable_name, - ACTIONS(4051), 1, - sym__special_character, - STATE(436), 1, - sym_command_name, - STATE(948), 1, - aux_sym__literal_repeat1, - STATE(1176), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(743), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(782), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2447), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 6, + ACTIONS(4560), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 40, + ACTIONS(4556), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90264,9 +102115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -90278,78 +102127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32485] = 30, + [31403] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym_test_operator, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, - sym_file_descriptor, - ACTIONS(2585), 1, - sym_word, - ACTIONS(3887), 1, - sym_variable_name, - ACTIONS(4012), 1, - sym__special_character, - STATE(447), 1, - sym_command_name, - STATE(948), 1, + STATE(2541), 1, aux_sym__literal_repeat1, - STATE(1176), 1, + STATE(2622), 1, sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(312), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(925), 9, + STATE(2300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90359,187 +102144,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [32596] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3897), 1, - sym_variable_name, - STATE(5455), 1, - sym_subscript, - ACTIONS(3584), 2, + ACTIONS(2498), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3692), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3663), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [32673] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(959), 1, - sym_test_operator, - ACTIONS(1326), 1, - anon_sym_LT_LT_LT, - ACTIONS(1328), 1, + ACTIONS(2500), 26, sym_file_descriptor, - ACTIONS(2341), 1, - sym_word, - ACTIONS(3887), 1, sym_variable_name, - ACTIONS(4053), 1, - sym__special_character, - STATE(490), 1, - sym_command_name, - STATE(948), 1, - aux_sym__literal_repeat1, - STATE(1176), 1, - sym_concatenation, - STATE(5442), 1, - sym_subscript, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(953), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1324), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1322), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1320), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1225), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32784] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4055), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 41, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -90547,52 +102177,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32847] = 6, + [31467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 1, - aux_sym_concatenation_token1, - ACTIONS(4060), 1, - sym__concat, - STATE(818), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 6, + ACTIONS(4558), 1, + anon_sym_DQUOTE, + ACTIONS(4562), 1, + sym_variable_name, + STATE(2447), 1, + sym_string, + ACTIONS(4560), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(4556), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90604,9 +102233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -90618,18 +102245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32910] = 3, + [31535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1316), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90642,7 +102268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -90671,28 +102300,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32966] = 6, + [31593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(4069), 1, + ACTIONS(4376), 1, sym__concat, - STATE(868), 1, + STATE(891), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(4566), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 40, + ACTIONS(4564), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -90702,6 +102332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90710,68 +102341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [33028] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4077), 1, - sym_variable_name, - STATE(5465), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3849), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4071), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -90789,23 +102358,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33102] = 6, + [31657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(4389), 1, aux_sym_concatenation_token1, - ACTIONS(4080), 1, + ACTIONS(4413), 1, sym__concat, - STATE(818), 1, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(838), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 6, + ACTIONS(1281), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, + ACTIONS(1271), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90818,6 +102388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -90845,17 +102417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33164] = 3, + [31723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, + ACTIONS(1328), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90868,8 +102440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -90898,17 +102472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33220] = 3, + [31781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(1344), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90921,8 +102495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -90951,17 +102527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33276] = 3, + [31839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, + ACTIONS(1356), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90974,8 +102550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -91004,21 +102582,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33332] = 7, + [31897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - STATE(1451), 1, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, sym_string, - ACTIONS(3474), 2, + ACTIONS(3284), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3472), 9, + ACTIONS(3280), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91028,7 +102608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 32, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91047,6 +102627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -91061,20 +102642,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33396] = 5, + [31965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(268), 5, + ACTIONS(4374), 1, + aux_sym_concatenation_token1, + ACTIONS(4571), 1, + sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 41, + ACTIONS(1265), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91086,7 +102669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -91104,6 +102687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91116,33 +102700,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33456] = 3, + [32029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, + sym_string, + ACTIONS(3284), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 42, + ACTIONS(3280), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91151,13 +102744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -91169,28 +102760,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33512] = 6, + [32097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4374), 1, aux_sym_concatenation_token1, - ACTIONS(4069), 1, + ACTIONS(4573), 1, sym__concat, - STATE(864), 1, + STATE(894), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1288), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 40, + ACTIONS(1286), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -91200,6 +102792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91208,6 +102801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -91223,20 +102817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [33574] = 3, + [32161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 7, - sym_file_descriptor, + ACTIONS(4575), 1, + aux_sym_concatenation_token1, + ACTIONS(4578), 1, sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 41, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91248,8 +102845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -91263,7 +102862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91278,33 +102876,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33630] = 3, + [32225] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4581), 1, + sym_word, + ACTIONS(4587), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4590), 1, + anon_sym_DOLLAR, + ACTIONS(4593), 1, + sym__special_character, + ACTIONS(4596), 1, + anon_sym_DQUOTE, + ACTIONS(4602), 1, + aux_sym_number_token1, + ACTIONS(4605), 1, + aux_sym_number_token2, + ACTIONS(4608), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4611), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4614), 1, + anon_sym_BQUOTE, + ACTIONS(4617), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4623), 1, + sym_test_operator, + ACTIONS(4626), 1, + sym__brace_start, + STATE(2715), 1, + aux_sym__literal_repeat1, + ACTIONS(4584), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4599), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4620), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(895), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [32321] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, + sym_variable_name, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(3825), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91313,13 +102994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -91331,28 +103009,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33686] = 6, + [32388] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4629), 1, + sym_word, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4635), 1, + anon_sym_DOLLAR, + ACTIONS(4637), 1, + sym__special_character, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4657), 1, + sym_test_operator, + ACTIONS(4659), 1, + sym__brace_start, + STATE(2914), 1, + aux_sym__literal_repeat1, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4641), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(936), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2072), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2074), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [32483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 40, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -91362,6 +103109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91373,6 +103121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91387,36 +103136,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33748] = 6, + [32540] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, - sym_file_descriptor, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, sym_variable_name, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 40, + ACTIONS(3825), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91426,12 +103180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -91443,23 +103195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33810] = 6, + [32607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(4092), 1, - sym__concat, - STATE(818), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 6, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91471,7 +103217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -91485,6 +103234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91499,22 +103249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33872] = 6, + [32664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 40, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91526,8 +103271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -91541,6 +103288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91555,103 +103303,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33934] = 3, + [32721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, + ACTIONS(4663), 1, + anon_sym_DQUOTE, + ACTIONS(4667), 1, + sym_variable_name, + STATE(2716), 1, + sym_string, + ACTIONS(1241), 2, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(4665), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4661), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [33990] = 22, + [32788] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4094), 1, + ACTIONS(4629), 1, sym_word, - ACTIONS(4098), 1, + ACTIONS(4633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4100), 1, + ACTIONS(4635), 1, anon_sym_DOLLAR, - ACTIONS(4102), 1, + ACTIONS(4637), 1, sym__special_character, - ACTIONS(4104), 1, + ACTIONS(4639), 1, anon_sym_DQUOTE, - ACTIONS(4108), 1, + ACTIONS(4643), 1, aux_sym_number_token1, - ACTIONS(4110), 1, + ACTIONS(4645), 1, aux_sym_number_token2, - ACTIONS(4112), 1, + ACTIONS(4647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, + ACTIONS(4649), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, + ACTIONS(4651), 1, anon_sym_BQUOTE, - ACTIONS(4118), 1, + ACTIONS(4653), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4122), 1, + ACTIONS(4657), 1, sym_test_operator, - ACTIONS(4124), 1, + ACTIONS(4659), 1, sym__brace_start, - STATE(2561), 1, + STATE(2914), 1, aux_sym__literal_repeat1, - ACTIONS(4096), 2, + ACTIONS(4631), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4106), 2, + ACTIONS(4641), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4120), 2, + ACTIONS(4655), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(859), 2, + STATE(936), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(1979), 7, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -91659,7 +103413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2229), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91669,7 +103423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1981), 10, + ACTIONS(2096), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91680,212 +103434,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34084] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 1, - sym_variable_name, - ACTIONS(4128), 1, - aux_sym_heredoc_redirect_token1, - STATE(5465), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3849), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4126), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [34158] = 3, + [32883] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4663), 1, + anon_sym_DQUOTE, + ACTIONS(4667), 1, + sym_variable_name, + STATE(2716), 1, + sym_string, + ACTIONS(1235), 2, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(4665), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4661), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [34214] = 6, - ACTIONS(3), 1, + [32950] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(896), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2718), 1, + aux_sym__literal_repeat1, + STATE(2864), 1, + sym_concatenation, + STATE(2357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 12, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [34276] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 1, - aux_sym_concatenation_token1, - ACTIONS(4133), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(2496), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -91893,50 +103542,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [34338] = 6, + [33013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, - sym_file_descriptor, + ACTIONS(3189), 1, + anon_sym_DQUOTE, + ACTIONS(4058), 1, sym_variable_name, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 40, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91946,12 +103595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -91963,37 +103610,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34400] = 6, + [33080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4669), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, aux_sym_concatenation_token1, - ACTIONS(4090), 1, + ACTIONS(4674), 1, sym__concat, - STATE(851), 1, + STATE(983), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1281), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 40, + ACTIONS(1271), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92019,51 +103668,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34462] = 21, + [33145] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3793), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(3801), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(3809), 1, sym__brace_start, - ACTIONS(4138), 1, + ACTIONS(4678), 1, sym__special_character, - ACTIONS(4140), 1, + ACTIONS(4680), 1, sym_test_operator, - STATE(3661), 1, + STATE(4277), 1, aux_sym__literal_repeat1, - STATE(3970), 1, + STATE(4782), 1, sym_concatenation, - ACTIONS(2335), 2, + ACTIONS(2496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4136), 3, + ACTIONS(4676), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4277), 9, + STATE(5135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92073,7 +103722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2333), 16, + ACTIONS(2494), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -92090,51 +103739,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34554] = 21, + anon_sym_LT_LT_LT, + [33238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3785), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3313), 1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(3319), 1, + ACTIONS(3793), 1, aux_sym_number_token1, - ACTIONS(3321), 1, + ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3325), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3327), 1, + ACTIONS(3801), 1, anon_sym_BQUOTE, - ACTIONS(3329), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(3809), 1, sym__brace_start, - ACTIONS(4138), 1, + ACTIONS(4678), 1, sym__special_character, - ACTIONS(4144), 1, + ACTIONS(4684), 1, sym_test_operator, - STATE(3697), 1, + STATE(4305), 1, aux_sym__literal_repeat1, - STATE(4044), 1, + STATE(4736), 1, sym_concatenation, - ACTIONS(2224), 2, + ACTIONS(2500), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3309), 2, + ACTIONS(3783), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3331), 2, + ACTIONS(3805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4142), 3, + ACTIONS(4682), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4311), 9, + STATE(5133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92144,7 +103794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2222), 16, + ACTIONS(2498), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -92161,18 +103811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34646] = 3, + anon_sym_LT_LT_LT, + [33331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1251), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92184,8 +103834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92214,96 +103866,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34702] = 22, - ACTIONS(71), 1, + [33388] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 1, - sym_word, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4100), 1, - anon_sym_DOLLAR, - ACTIONS(4102), 1, - sym__special_character, - ACTIONS(4104), 1, + ACTIONS(3189), 1, anon_sym_DQUOTE, - ACTIONS(4108), 1, - aux_sym_number_token1, - ACTIONS(4110), 1, - aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4122), 1, + ACTIONS(4058), 1, + sym_variable_name, + STATE(1737), 1, + sym_string, + ACTIONS(4056), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4124), 1, sym__brace_start, - STATE(2561), 1, - aux_sym__literal_repeat1, - ACTIONS(4096), 2, + ACTIONS(4054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4106), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(859), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1941), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2229), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1943), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34796] = 7, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [33455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - ACTIONS(4146), 1, - anon_sym_LPAREN, - STATE(927), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 39, + ACTIONS(1324), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92315,7 +103947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92329,6 +103964,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [33512] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + ts_builtin_sym_end, + ACTIONS(4694), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4696), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4574), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4688), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92343,16 +104043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34860] = 3, + [33589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 43, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92365,7 +104066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -92382,6 +104082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92396,22 +104097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34916] = 6, + [33646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(896), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92423,8 +104119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92438,6 +104136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92452,37 +104151,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34978] = 6, + [33703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4149), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1342), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, + ACTIONS(1340), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92494,6 +104190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92508,28 +104205,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35040] = 6, + [33760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, + ACTIONS(1352), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -92539,6 +104232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92550,6 +104244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92564,17 +104259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35102] = 3, + [33817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 42, + ACTIONS(1312), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92586,9 +104281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92617,17 +104313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35158] = 3, + [33874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1340), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92639,9 +104335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92670,28 +104367,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35214] = 9, + [33931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 1, - sym_variable_name, - STATE(5485), 1, - sym_subscript, - ACTIONS(3588), 2, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, + sym__concat, + STATE(935), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3713), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 17, + ACTIONS(1261), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -92704,22 +104419,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(3584), 20, + [33994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92728,41 +104460,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [35282] = 7, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [34051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, - anon_sym_DQUOTE, - STATE(1451), 1, - sym_string, - ACTIONS(3474), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3472), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92771,10 +104514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -92786,37 +104532,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35346] = 6, + [34108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 40, + ACTIONS(1352), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92828,6 +104571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92842,28 +104586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35408] = 6, + [34165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1338), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 40, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -92873,6 +104613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92884,6 +104625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92898,58 +104640,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35470] = 22, + [34222] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(4156), 1, - sym_word, - ACTIONS(4162), 1, + ACTIONS(451), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4165), 1, + ACTIONS(453), 1, anon_sym_DOLLAR, - ACTIONS(4168), 1, - sym__special_character, - ACTIONS(4171), 1, + ACTIONS(457), 1, anon_sym_DQUOTE, - ACTIONS(4177), 1, + ACTIONS(461), 1, aux_sym_number_token1, - ACTIONS(4180), 1, + ACTIONS(463), 1, aux_sym_number_token2, - ACTIONS(4183), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4186), 1, + ACTIONS(467), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4189), 1, + ACTIONS(469), 1, anon_sym_BQUOTE, - ACTIONS(4192), 1, + ACTIONS(471), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4198), 1, + ACTIONS(479), 1, sym_test_operator, - ACTIONS(4201), 1, + ACTIONS(481), 1, sym__brace_start, - STATE(2561), 1, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3018), 1, + sym_word, + ACTIONS(4703), 1, + sym__special_character, + ACTIONS(4705), 1, + sym_variable_name, + STATE(529), 1, + sym_command_name, + STATE(926), 1, aux_sym__literal_repeat1, - ACTIONS(4159), 2, + STATE(1082), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(449), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4174), 2, + ACTIONS(459), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4195), 2, + ACTIONS(473), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(859), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1898), 7, - anon_sym_PIPE, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2229), 9, + STATE(815), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92959,162 +104721,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1900), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [35564] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - STATE(2159), 1, - sym_string, - ACTIONS(1175), 2, - sym__concat, - sym_test_operator, - ACTIONS(4208), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4204), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [35628] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - STATE(2159), 1, - sym_string, - ACTIONS(1171), 2, - sym__concat, - sym_test_operator, - ACTIONS(4208), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4204), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [35692] = 6, + [34333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 5, + ACTIONS(4707), 1, + sym__special_character, + STATE(952), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 40, + ACTIONS(241), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93127,7 +104765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93140,37 +104777,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35754] = 6, + [34394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 40, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93182,6 +104816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93196,37 +104831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35816] = 6, + [34451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4210), 1, - sym__concat, - STATE(870), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1306), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93235,8 +104867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93250,76 +104884,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [35878] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_DQUOTE, - STATE(2173), 1, - sym_string, - ACTIONS(4216), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4212), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [35942] = 3, + [34508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 42, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93332,8 +104908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -93362,20 +104939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35998] = 5, + [34565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3883), 1, - sym__special_character, - STATE(810), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 41, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93404,7 +104978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93417,37 +104993,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36058] = 6, + [34622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4218), 1, - sym__concat, - STATE(870), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1346), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, + ACTIONS(1344), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93456,8 +105029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93471,20 +105046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [36120] = 3, + [34679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, sym__concat, + STATE(935), 1, + aux_sym_concatenation_repeat1, + ACTIONS(278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(241), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93497,6 +105075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -93511,7 +105090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93526,37 +105104,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36176] = 6, - ACTIONS(3), 1, + [34742] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(4220), 1, - aux_sym_concatenation_token1, - ACTIONS(4223), 1, - sym__concat, - STATE(870), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(1023), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, sym_file_descriptor, + ACTIONS(2961), 1, + sym_word, + ACTIONS(4705), 1, sym_variable_name, + ACTIONS(4709), 1, + sym__special_character, + STATE(600), 1, + sym_command_name, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1717), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93565,8 +105221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93580,39 +105238,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [36238] = 6, + [34910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(4090), 1, + ACTIONS(4711), 1, sym__concat, - STATE(852), 1, + STATE(965), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1267), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(1265), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93638,80 +105296,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36300] = 12, - ACTIONS(3), 1, + [34973] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4077), 1, - sym_variable_name, - ACTIONS(4228), 1, - aux_sym_heredoc_redirect_token1, - STATE(5465), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3849), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, + ACTIONS(4713), 1, + sym_word, + ACTIONS(4719), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4722), 1, + anon_sym_DOLLAR, + ACTIONS(4725), 1, + sym__special_character, + ACTIONS(4728), 1, + anon_sym_DQUOTE, + ACTIONS(4734), 1, + aux_sym_number_token1, + ACTIONS(4737), 1, + aux_sym_number_token2, + ACTIONS(4740), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4746), 1, + anon_sym_BQUOTE, + ACTIONS(4749), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4755), 1, sym_test_operator, + ACTIONS(4758), 1, sym__brace_start, - ACTIONS(4226), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, + STATE(2914), 1, + aux_sym__literal_repeat1, + ACTIONS(4716), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4731), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4752), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(936), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [35068] = 30, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(53), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(57), 1, aux_sym_number_token1, + ACTIONS(59), 1, aux_sym_number_token2, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, anon_sym_BQUOTE, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(77), 1, + sym_test_operator, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2666), 1, + sym_word, + ACTIONS(4705), 1, + sym_variable_name, + ACTIONS(4761), 1, + sym__special_character, + STATE(537), 1, + sym_command_name, + STATE(1212), 1, + aux_sym__literal_repeat1, + STATE(1386), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(55), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [36374] = 3, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(957), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, sym__concat, + STATE(947), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1271), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93724,6 +105478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -93738,7 +105493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93753,79 +105507,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36430] = 6, - ACTIONS(3), 1, + [35242] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4763), 1, + sym_word, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4769), 1, + anon_sym_DOLLAR, + ACTIONS(4771), 1, + sym__special_character, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4791), 1, sym_test_operator, + ACTIONS(4793), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 40, + STATE(5357), 1, + aux_sym__literal_repeat1, + STATE(5539), 1, + sym_concatenation, + ACTIONS(4765), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4775), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2498), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5178), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2500), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [36492] = 6, + [35337] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(1278), 1, + anon_sym_LPAREN, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(3842), 1, + ACTIONS(4701), 1, sym__concat, - STATE(822), 1, + STATE(947), 1, aux_sym_concatenation_repeat1, - ACTIONS(3785), 6, + ACTIONS(1281), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 39, + ACTIONS(1271), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93837,6 +105609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -93865,36 +105638,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36554] = 6, + [35402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - aux_sym_concatenation_token1, - ACTIONS(4090), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, - sym_file_descriptor, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3584), 1, sym_variable_name, + STATE(2121), 1, + sym_string, + ACTIONS(3582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 40, + ACTIONS(3578), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93904,12 +105682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -93921,36 +105697,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36616] = 6, + [35469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, - sym_file_descriptor, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3584), 1, sym_variable_name, + STATE(2121), 1, + sym_string, + ACTIONS(3582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(3578), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93960,11 +105741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -93975,39 +105755,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [36678] = 6, + [35536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(834), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 6, + ACTIONS(4797), 1, + anon_sym_DQUOTE, + ACTIONS(4801), 1, + sym_variable_name, + STATE(2585), 1, + sym_string, + ACTIONS(4799), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 39, + ACTIONS(4795), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94016,12 +105801,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94033,153 +105815,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36740] = 6, - ACTIONS(3), 1, + [35603] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 6, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4767), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4769), 1, anon_sym_DOLLAR, + ACTIONS(4771), 1, sym__special_character, + ACTIONS(4773), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4777), 1, aux_sym_number_token1, + ACTIONS(4779), 1, aux_sym_number_token2, + ACTIONS(4781), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, anon_sym_BQUOTE, + ACTIONS(4787), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(4803), 1, sym_word, - [36802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3883), 1, - sym__special_character, - STATE(810), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 5, - sym_file_descriptor, + ACTIONS(4807), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 41, + STATE(5376), 1, + aux_sym__literal_repeat1, + STATE(5530), 1, + sym_concatenation, + ACTIONS(4765), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4805), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2494), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5182), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2496), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [36862] = 13, + [35698] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_BQUOTE, - ACTIONS(4153), 1, - sym_variable_name, - ACTIONS(4242), 1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4411), 1, aux_sym_heredoc_redirect_token1, - STATE(5485), 1, + ACTIONS(4811), 1, + sym_variable_name, + STATE(6786), 1, sym_subscript, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, + ACTIONS(4809), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(3713), 2, + STATE(4534), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4238), 3, + ACTIONS(4409), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3907), 3, + STATE(4746), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 27, + ACTIONS(4247), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -94203,46 +105947,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36938] = 10, + [35775] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4153), 1, + ACTIONS(4797), 1, + anon_sym_DQUOTE, + ACTIONS(4801), 1, sym_variable_name, - STATE(5485), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3713), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + STATE(2585), 1, + sym_string, + ACTIONS(4799), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 7, - anon_sym_SEMI, + ACTIONS(4795), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94250,12 +105996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94267,22 +106011,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37008] = 6, + [35842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4814), 1, sym__concat, - STATE(886), 1, + STATE(965), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 40, + ACTIONS(1286), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -94294,6 +106038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94323,37 +106068,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37070] = 6, + [35905] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(896), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4811), 1, + sym_variable_name, + STATE(6786), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4534), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 40, - anon_sym_LPAREN_LPAREN, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94361,7 +106112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -94379,97 +106129,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37132] = 6, - ACTIONS(3), 1, + [35976] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4244), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2726), 1, + aux_sym__literal_repeat1, + STATE(2846), 1, + sym_concatenation, + STATE(2427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 12, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [37194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4246), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(2500), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -94477,84 +106177,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [37256] = 3, - ACTIONS(3), 1, + [36039] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOLLAR, + ACTIONS(4824), 1, + sym__special_character, + ACTIONS(4826), 1, + anon_sym_DQUOTE, + ACTIONS(4830), 1, + aux_sym_number_token1, + ACTIONS(4832), 1, + aux_sym_number_token2, + ACTIONS(4834), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4838), 1, + anon_sym_BQUOTE, + ACTIONS(4840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4844), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4846), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4848), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 42, + STATE(2939), 1, + aux_sym__literal_repeat1, + ACTIONS(4818), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4828), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(962), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2297), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2299), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36136] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(314), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(316), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(320), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(324), 1, aux_sym_number_token1, + ACTIONS(326), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, anon_sym_BQUOTE, + ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(775), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2941), 1, + sym_word, + ACTIONS(4705), 1, + sym_variable_name, + ACTIONS(4850), 1, + sym__special_character, + STATE(536), 1, + sym_command_name, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [37312] = 3, + ACTIONS(773), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(938), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(4852), 1, + sym__special_character, + STATE(952), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 42, + ACTIONS(1362), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -94567,8 +106367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -94582,9 +106384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94597,37 +106397,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37368] = 6, + [36308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(834), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 6, + ACTIONS(4857), 1, + anon_sym_DQUOTE, + ACTIONS(4861), 1, + sym_variable_name, + STATE(2638), 1, + sym_string, + ACTIONS(4859), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(4855), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94639,9 +106444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94653,21 +106456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37430] = 7, + [36375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(4857), 1, anon_sym_DQUOTE, - STATE(1734), 1, + ACTIONS(4861), 1, + sym_variable_name, + STATE(2638), 1, sym_string, - ACTIONS(3339), 2, + ACTIONS(4859), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3337), 9, + ACTIONS(4855), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94677,7 +106482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 32, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94695,7 +106500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94710,21 +106515,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37494] = 7, + [36442] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1045), 1, + anon_sym_DOLLAR, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1069), 1, + sym_test_operator, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2668), 1, + sym_word, + ACTIONS(4705), 1, + sym_variable_name, + ACTIONS(4863), 1, + sym__special_character, + STATE(617), 1, + sym_command_name, + STATE(2332), 1, + aux_sym__literal_repeat1, + STATE(2368), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(1041), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1051), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1799), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(4867), 1, anon_sym_DQUOTE, - STATE(1734), 1, + ACTIONS(4871), 1, + sym_variable_name, + STATE(2525), 1, sym_string, - ACTIONS(3339), 2, + ACTIONS(4869), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3337), 9, + ACTIONS(4865), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94734,7 +106622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 32, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94752,7 +106640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94767,17 +106655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37558] = 3, + [36620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4672), 1, + aux_sym_concatenation_token1, + ACTIONS(4674), 1, sym__concat, + STATE(983), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, + ACTIONS(1271), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -94790,7 +106684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -94805,7 +106698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94820,17 +106712,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37614] = 3, - ACTIONS(3), 1, + [36683] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(342), 1, + sym_test_operator, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, sym_file_descriptor, + ACTIONS(2723), 1, + sym_word, + ACTIONS(4705), 1, + sym_variable_name, + ACTIONS(4873), 1, + sym__special_character, + STATE(543), 1, + sym_command_name, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1078), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36794] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, + aux_sym_concatenation_token1, + ACTIONS(4875), 1, sym__concat, + STATE(996), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -94843,7 +106822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -94858,7 +106836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94873,37 +106850,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37670] = 6, + [36857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(4867), 1, + anon_sym_DQUOTE, + ACTIONS(4871), 1, + sym_variable_name, + STATE(2525), 1, + sym_string, + ACTIONS(4869), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(4865), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94915,9 +106897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94929,29 +106909,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37732] = 6, + [36924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, - sym_file_descriptor, + ACTIONS(4811), 1, + sym_variable_name, + STATE(6786), 1, + sym_subscript, + ACTIONS(4261), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4348), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 40, + STATE(4534), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4253), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -94959,7 +106961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94968,39 +106969,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36993] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4820), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4822), 1, anon_sym_DOLLAR, + ACTIONS(4824), 1, sym__special_character, + ACTIONS(4826), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4830), 1, aux_sym_number_token1, + ACTIONS(4832), 1, aux_sym_number_token2, + ACTIONS(4834), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4836), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4838), 1, anon_sym_BQUOTE, + ACTIONS(4840), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym__brace_start, + ACTIONS(4877), 1, + aux_sym__simple_variable_name_token1, + STATE(2939), 1, + aux_sym__literal_repeat1, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4828), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4842), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [37794] = 6, + STATE(979), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2562), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2564), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [37090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4248), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, + ACTIONS(1296), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95012,8 +107065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95027,6 +107082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95041,22 +107097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37856] = 6, + [37147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(896), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 40, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95068,8 +107119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95083,6 +107136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95097,17 +107151,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37918] = 3, + [37204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(4879), 1, + aux_sym_concatenation_token1, + ACTIONS(4882), 1, sym__concat, + STATE(965), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95135,7 +107194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95150,17 +107208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37974] = 3, + [37267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4672), 1, + aux_sym_concatenation_token1, + ACTIONS(4674), 1, sym__concat, + STATE(959), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95173,7 +107237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -95188,7 +107251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95203,77 +107265,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38030] = 9, - ACTIONS(3), 1, + [37330] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4077), 1, - sym_variable_name, - STATE(5465), 1, - sym_subscript, - ACTIONS(3588), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3849), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4885), 1, + sym_word, + ACTIONS(4891), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4894), 1, anon_sym_DOLLAR, + ACTIONS(4897), 1, sym__special_character, + ACTIONS(4900), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4906), 1, aux_sym_number_token1, + ACTIONS(4909), 1, aux_sym_number_token2, + ACTIONS(4912), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4915), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4918), 1, anon_sym_BQUOTE, + ACTIONS(4921), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4927), 1, + sym_test_operator, + ACTIONS(4930), 1, + sym__brace_start, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(4888), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4903), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4924), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(3584), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(967), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2489), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38098] = 3, + [37425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1316), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95287,6 +107362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95315,18 +107392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38154] = 3, + [37482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, - sym_file_descriptor, + ACTIONS(4933), 1, + aux_sym_concatenation_token1, + ACTIONS(4935), 1, sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(1261), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95338,8 +107419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95353,7 +107435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95368,18 +107449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38210] = 3, + [37545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, - sym_file_descriptor, + ACTIONS(4937), 1, + aux_sym_concatenation_token1, + ACTIONS(4940), 1, sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95391,8 +107476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95406,7 +107492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95421,93 +107506,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38266] = 6, - ACTIONS(3), 1, + [37608] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(896), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3781), 5, - sym_file_descriptor, + ACTIONS(4943), 1, + sym_word, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4949), 1, + anon_sym_DOLLAR, + ACTIONS(4951), 1, + sym__special_character, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4971), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4973), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 40, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(4945), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(967), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2072), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2489), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2074), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [37703] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3616), 1, aux_sym_number_token1, + ACTIONS(3618), 1, aux_sym_number_token2, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, anon_sym_BQUOTE, + ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3883), 1, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4977), 1, sym__special_character, - STATE(810), 1, + ACTIONS(4979), 1, + sym_test_operator, + STATE(2270), 1, aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(2096), 2, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 41, + ACTIONS(3608), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2572), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95516,38 +107651,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [37796] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3612), 1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3616), 1, aux_sym_number_token1, + ACTIONS(3618), 1, aux_sym_number_token2, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, anon_sym_BQUOTE, + ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4977), 1, + sym__special_character, + ACTIONS(4979), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3608), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3628), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4975), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [38388] = 6, + STATE(2572), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [37889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4981), 1, sym__concat, - STATE(886), 1, + STATE(970), 1, aux_sym_concatenation_repeat1, - ACTIONS(3777), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 40, + ACTIONS(1286), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95559,8 +107750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95588,18 +107780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38450] = 3, + [37952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 7, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 41, + ACTIONS(1344), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95611,8 +107802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95641,42 +107834,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38506] = 10, + [38009] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4077), 1, - sym_variable_name, - STATE(5465), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3849), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3840), 1, + anon_sym_DOLLAR, + ACTIONS(3846), 1, + anon_sym_DQUOTE, + ACTIONS(3849), 1, + aux_sym_number_token1, + ACTIONS(3852), 1, + aux_sym_number_token2, + ACTIONS(3855), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3861), 1, + anon_sym_BQUOTE, + ACTIONS(3864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3873), 1, sym__brace_start, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 7, - anon_sym_SEMI, + ACTIONS(4986), 1, + sym__special_character, + ACTIONS(4989), 1, + sym_test_operator, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3834), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4983), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2572), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95684,37 +107905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38576] = 5, + anon_sym_LT_LT_DASH, + [38102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3883), 1, - sym__special_character, - STATE(810), 1, - aux_sym__literal_repeat1, - ACTIONS(3781), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 41, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95743,7 +107945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95756,23 +107960,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38636] = 6, + [38159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3842), 1, + ACTIONS(4992), 1, sym__concat, - STATE(834), 1, + STATE(970), 1, aux_sym_concatenation_repeat1, - ACTIONS(3781), 6, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 39, + ACTIONS(1265), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95785,6 +107988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95812,49 +108017,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38698] = 22, + [38222] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4994), 1, sym_word, - ACTIONS(4254), 1, + ACTIONS(5000), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4256), 1, + ACTIONS(5003), 1, anon_sym_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(5006), 1, sym__special_character, - ACTIONS(4260), 1, + ACTIONS(5009), 1, anon_sym_DQUOTE, - ACTIONS(4264), 1, + ACTIONS(5015), 1, aux_sym_number_token1, - ACTIONS(4266), 1, + ACTIONS(5018), 1, aux_sym_number_token2, - ACTIONS(4268), 1, + ACTIONS(5021), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, + ACTIONS(5024), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, + ACTIONS(5027), 1, anon_sym_BQUOTE, - ACTIONS(4274), 1, + ACTIONS(5030), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4278), 1, + ACTIONS(5036), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5039), 1, sym_test_operator, - ACTIONS(4280), 1, + ACTIONS(5042), 1, sym__brace_start, - STATE(4341), 1, + STATE(2939), 1, aux_sym__literal_repeat1, - STATE(4450), 1, - sym_concatenation, - ACTIONS(4252), 2, + ACTIONS(4997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4262), 2, + ACTIONS(5012), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4276), 2, + ACTIONS(5033), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2333), 7, + STATE(979), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -95862,7 +108070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(4229), 9, + STATE(2539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95872,86 +108080,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2335), 11, + ACTIONS(2442), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38792] = 6, + [38319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3777), 6, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 7, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 41, + ACTIONS(1292), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95965,6 +108115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95993,49 +108145,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38910] = 22, + [38376] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4254), 1, + ACTIONS(4943), 1, + sym_word, + ACTIONS(4947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4256), 1, + ACTIONS(4949), 1, anon_sym_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4951), 1, sym__special_character, - ACTIONS(4260), 1, + ACTIONS(4953), 1, anon_sym_DQUOTE, - ACTIONS(4264), 1, + ACTIONS(4957), 1, aux_sym_number_token1, - ACTIONS(4266), 1, + ACTIONS(4959), 1, aux_sym_number_token2, - ACTIONS(4268), 1, + ACTIONS(4961), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, + ACTIONS(4963), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, + ACTIONS(4965), 1, anon_sym_BQUOTE, - ACTIONS(4274), 1, + ACTIONS(4967), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(4282), 1, - sym_word, - ACTIONS(4286), 1, + ACTIONS(4971), 1, sym_test_operator, - STATE(4391), 1, + ACTIONS(4973), 1, + sym__brace_start, + STATE(2776), 1, aux_sym__literal_repeat1, - STATE(4475), 1, - sym_concatenation, - ACTIONS(4252), 2, + ACTIONS(4945), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4284), 2, + ACTIONS(4955), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2222), 7, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(967), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -96043,7 +108196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(4266), 9, + STATE(2489), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96053,7 +108206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2224), 11, + ACTIONS(2096), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96065,18 +108218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [39004] = 3, + [38471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 7, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 41, + ACTIONS(1332), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96090,6 +108242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96118,37 +108272,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39060] = 6, + [38528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4672), 1, aux_sym_concatenation_token1, - ACTIONS(4069), 1, + ACTIONS(5045), 1, sym__concat, - STATE(868), 1, + STATE(996), 1, aux_sym_concatenation_repeat1, - ACTIONS(4290), 5, + ACTIONS(1288), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96157,6 +108312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -96172,43 +108328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [39122] = 7, + [38591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_DQUOTE, - STATE(2022), 1, - sym_string, - ACTIONS(4296), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1330), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4292), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96217,9 +108365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96231,37 +108383,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39186] = 6, + [38648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(4069), 1, + ACTIONS(4935), 1, sym__concat, - STATE(864), 1, + STATE(974), 1, aux_sym_concatenation_repeat1, - ACTIONS(4300), 5, + ACTIONS(4532), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 40, + ACTIONS(4530), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96270,6 +108423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -96285,22 +108439,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [39248] = 5, + [38711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4696), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4261), 2, + sym_test_operator, + sym__brace_start, + STATE(4574), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4348), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4253), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [38780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1316), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96312,7 +108522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -96329,7 +108539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96342,17 +108554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39308] = 3, + [38837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 42, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96365,8 +108577,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96395,44 +108608,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39364] = 12, - ACTIONS(3), 1, + [38894] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(4077), 1, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 1, + sym_test_operator, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2971), 1, + sym_word, + ACTIONS(4705), 1, sym_variable_name, - ACTIONS(4307), 1, - aux_sym_heredoc_redirect_token1, - STATE(5465), 1, + ACTIONS(5047), 1, + sym__special_character, + STATE(531), 1, + sym_command_name, + STATE(1026), 1, + aux_sym__literal_repeat1, + STATE(1169), 1, + sym_concatenation, + STATE(6771), 1, sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3849), 2, + ACTIONS(705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(715), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(852), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4305), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96440,9 +108724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96457,41 +108743,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39438] = 7, + [39062] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_DQUOTE, - STATE(2022), 1, - sym_string, - ACTIONS(4296), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, - sym_file_descriptor, + ACTIONS(2721), 1, + ts_builtin_sym_end, + ACTIONS(4696), 1, sym_variable_name, + ACTIONS(5051), 1, + aux_sym_heredoc_redirect_token1, + STATE(6757), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4574), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4292), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 31, + ACTIONS(5049), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96499,10 +108790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96514,18 +108807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39502] = 3, + [39139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, - sym_file_descriptor, + ACTIONS(4933), 1, + aux_sym_concatenation_token1, + ACTIONS(4935), 1, sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(4467), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96537,8 +108834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96552,7 +108850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96567,24 +108864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39558] = 7, + [39202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4935), 1, sym__concat, - ACTIONS(4309), 1, - anon_sym_LPAREN, - STATE(927), 1, + STATE(974), 1, aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(4372), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 39, + ACTIONS(4370), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96597,6 +108892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96624,22 +108921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39622] = 6, + [39265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4935), 1, sym__concat, - STATE(927), 1, + STATE(978), 1, aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(4566), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 40, + ACTIONS(4564), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96651,8 +108948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96680,23 +108978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39684] = 6, + [39328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3842), 1, + ACTIONS(4935), 1, sym__concat, - STATE(834), 1, + STATE(974), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 6, + ACTIONS(4554), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 39, + ACTIONS(4552), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96709,6 +109006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96736,22 +109035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39746] = 6, + [39391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5053), 1, aux_sym_concatenation_token1, - ACTIONS(4312), 1, + ACTIONS(5056), 1, sym__concat, - STATE(809), 1, + STATE(996), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1253), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96792,23 +109092,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39808] = 6, + [39454] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(342), 1, + sym_test_operator, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2723), 1, + sym_word, + ACTIONS(4705), 1, + sym_variable_name, + ACTIONS(4873), 1, + sym__special_character, + STATE(545), 1, + sym_command_name, + STATE(1267), 1, + aux_sym__literal_repeat1, + STATE(1376), 1, + sym_concatenation, + STATE(6771), 1, + sym_subscript, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1078), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_concatenation_token1, - ACTIONS(3842), 1, - sym__concat, - STATE(822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 6, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 39, + ACTIONS(1348), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96820,7 +109195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96834,6 +109212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96848,18 +109227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39870] = 3, + [39622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(1251), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96873,6 +109251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96901,23 +109281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39926] = 6, + [39679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(4933), 1, aux_sym_concatenation_token1, - ACTIONS(3842), 1, + ACTIONS(4935), 1, sym__concat, - STATE(834), 1, + STATE(974), 1, aux_sym_concatenation_repeat1, - ACTIONS(3681), 6, + ACTIONS(4465), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 39, + ACTIONS(4463), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96930,6 +109309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -96957,16 +109338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39988] = 3, + [39742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 5, + ACTIONS(4933), 1, + aux_sym_concatenation_token1, + ACTIONS(4935), 1, + sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4482), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 43, + ACTIONS(4480), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96978,8 +109365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -97010,18 +109395,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40044] = 3, + [39805] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(2719), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4811), 1, + sym_variable_name, + STATE(6786), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4534), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4378), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39882] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4933), 1, + aux_sym_concatenation_token1, + ACTIONS(4935), 1, sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4548), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(4546), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97033,8 +109486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97048,7 +109502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97063,46 +109516,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40100] = 13, + [39945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_BQUOTE, - ACTIONS(4153), 1, - sym_variable_name, - ACTIONS(4316), 1, - aux_sym_heredoc_redirect_token1, - STATE(5485), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(3713), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4314), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 27, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97110,9 +109551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97122,22 +109565,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40176] = 3, + [40002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 7, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 41, + ACTIONS(1292), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97149,8 +109592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97179,22 +109624,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40232] = 6, + [40059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4696), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4574), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [40130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4674), 1, sym__concat, - STATE(885), 1, + STATE(959), 1, aux_sym_concatenation_repeat1, - ACTIONS(268), 5, + ACTIONS(278), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 40, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97235,17 +109742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40294] = 3, + [40193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 42, + ACTIONS(1332), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97257,9 +109764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97288,18 +109796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40350] = 3, + [40250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97311,8 +109818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97341,33 +109850,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40406] = 3, + [40307] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(5061), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + sym_variable_name, + STATE(2712), 1, + sym_string, + ACTIONS(5063), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(5059), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97376,13 +109894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97394,33 +109908,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40462] = 3, + [40373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(5067), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97429,10 +109947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97446,19 +109962,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [40518] = 3, + [40435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, sym__concat, + ACTIONS(5075), 1, + anon_sym_LPAREN, + STATE(1054), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(1271), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97470,7 +109993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -97485,7 +110007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97500,75 +110021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40574] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_DQUOTE, - STATE(2173), 1, - sym_string, - ACTIONS(4216), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4212), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40638] = 3, + [40499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 7, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 41, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97581,6 +110044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -97610,16 +110074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40694] = 3, + [40555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 5, + ACTIONS(5078), 1, + sym__special_character, + STATE(1095), 1, + aux_sym__literal_repeat1, + ACTIONS(4482), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 42, + ACTIONS(4480), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97649,7 +110117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97662,36 +110129,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40749] = 6, + [40615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4320), 1, - sym__concat, - STATE(1040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 40, + ACTIONS(1292), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97700,8 +110164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97715,18 +110181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [40810] = 3, + [40671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 42, + ACTIONS(1296), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97739,9 +110205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97755,60 +110220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40865] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, aux_sym_concatenation_token1, - ACTIONS(4324), 1, - sym__concat, - STATE(971), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4300), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97822,38 +110234,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [40926] = 6, + [40727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - aux_sym_concatenation_token1, - ACTIONS(4324), 1, - sym__concat, - STATE(990), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4290), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 39, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97862,8 +110270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97877,22 +110287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [40987] = 5, + [40783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - sym__special_character, - STATE(987), 1, - aux_sym__literal_repeat1, - ACTIONS(268), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 40, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97920,7 +110326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97933,32 +110341,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41046] = 3, + [40839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 41, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97985,76 +110394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41101] = 7, + [40895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [41164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 40, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98066,9 +110416,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -98082,7 +110432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98095,36 +110447,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41223] = 6, + [40951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4336), 1, + ACTIONS(5082), 1, sym__concat, - STATE(963), 1, + STATE(1032), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(4548), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, + ACTIONS(4546), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98150,32 +110503,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41284] = 3, + [41013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98184,6 +110538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -98200,34 +110555,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [41339] = 3, + [41069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1040), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4532), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(4530), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98236,9 +110595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98252,128 +110611,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [41394] = 3, + [41131] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1235), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5086), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [41449] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4338), 1, - sym__concat, - STATE(963), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, - sym_file_descriptor, + ACTIONS(5090), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [41510] = 7, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [41197] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(252), 1, - anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(1241), 1, sym_test_operator, - STATE(2217), 1, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, sym_string, - ACTIONS(4342), 2, + ACTIONS(5088), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4340), 9, + ACTIONS(5084), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -98383,7 +110694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 33, + ACTIONS(1239), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -98415,34 +110726,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - [41573] = 3, + anon_sym_COLON, + [41263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(5092), 1, + sym__special_character, + STATE(1097), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 41, + ACTIONS(241), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98454,9 +110770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98469,16 +110783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41628] = 3, + [41323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 42, + ACTIONS(1332), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98490,10 +110805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -98507,6 +110821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98521,22 +110836,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41683] = 6, + [41379] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4348), 1, - sym__concat, - STATE(1050), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4346), 4, - sym_file_descriptor, + ACTIONS(5094), 1, + sym_variable_name, + STATE(6758), 1, + sym_subscript, + ACTIONS(4261), 2, sym_test_operator, sym__brace_start, + ACTIONS(4348), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 40, + STATE(4568), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 17, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4253), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98546,10 +110884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98559,53 +110894,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [41744] = 6, + [41447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4348), 1, - sym__concat, - STATE(944), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4352), 4, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 40, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98614,8 +110930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98629,94 +110947,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [41805] = 7, + [41503] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(252), 1, - anon_sym_DQUOTE, - ACTIONS(1175), 1, - sym_test_operator, - STATE(2217), 1, - sym_string, - ACTIONS(4342), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4340), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5101), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5103), 1, + sym_variable_name, + STATE(6727), 1, + sym_subscript, + ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [41868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 1, - aux_sym_concatenation_token1, - ACTIONS(4357), 1, - sym__concat, - STATE(963), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(5097), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98724,7 +110993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -98742,36 +111010,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41929] = 6, + [41577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4360), 1, - sym__concat, - STATE(956), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1354), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 39, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98783,6 +111048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98797,22 +111063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41990] = 6, + [41633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4362), 1, + ACTIONS(5106), 1, sym__concat, - STATE(809), 1, + STATE(1065), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98824,6 +111090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -98852,22 +111119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42051] = 6, + [41695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4364), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1294), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98879,6 +111142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -98893,6 +111157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98907,16 +111172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42112] = 3, + [41751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 42, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98928,10 +111195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -98945,6 +111210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98959,36 +111225,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42167] = 6, - ACTIONS(3), 1, + [41807] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4360), 1, - sym__concat, - STATE(952), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5108), 1, + sym_word, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5114), 1, + anon_sym_DOLLAR, + ACTIONS(5116), 1, + sym__special_character, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5136), 1, sym_test_operator, + ACTIONS(5138), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 39, + STATE(3114), 1, + aux_sym__literal_repeat1, + ACTIONS(5110), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5120), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1075), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2094), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2613), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2096), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [41901] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5142), 1, + aux_sym_heredoc_redirect_token1, + STATE(6727), 1, + sym_subscript, + ACTIONS(4253), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5140), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98996,7 +111342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -99014,20 +111359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42228] = 5, + [41975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(3781), 5, + ACTIONS(1253), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 40, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99039,9 +111381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -99055,7 +111397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99068,32 +111412,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42287] = 3, + [42031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 41, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99102,6 +111447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -99118,38 +111464,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [42342] = 6, + [42087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4366), 1, + ACTIONS(5146), 1, sym__concat, - STATE(995), 1, + STATE(1131), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(4465), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, + ACTIONS(4463), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99158,6 +111504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -99173,42 +111520,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [42403] = 7, + [42149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, - anon_sym_DQUOTE, - STATE(2374), 1, - sym_string, - ACTIONS(4372), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5148), 1, + sym__concat, + STATE(1065), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4368), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99217,9 +111560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -99231,21 +111577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42466] = 7, + [42211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(5061), 1, anon_sym_DQUOTE, - STATE(2374), 1, + ACTIONS(5065), 1, + sym_variable_name, + STATE(2712), 1, sym_string, - ACTIONS(4372), 2, + ACTIONS(5063), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4368), 9, + ACTIONS(5059), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -99255,7 +111603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 31, + ACTIONS(1227), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99287,148 +111635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42529] = 7, + [42277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [42592] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [42655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4324), 1, + ACTIONS(5146), 1, sym__concat, - STATE(971), 1, + STATE(1123), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(4482), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 39, + ACTIONS(4480), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99437,6 +111674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -99452,18 +111690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [42716] = 3, + [42339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 5, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 42, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99475,10 +111714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -99492,6 +111729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99506,32 +111744,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42771] = 3, + [42395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99558,16 +111797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42826] = 3, + [42451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 5, + ACTIONS(5078), 1, + sym__special_character, + STATE(1095), 1, + aux_sym__literal_repeat1, + ACTIONS(4548), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4374), 42, + ACTIONS(4546), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99597,7 +111840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99610,32 +111852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42881] = 3, + [42511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99662,32 +111905,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42936] = 3, + [42567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99714,134 +111958,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42991] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4382), 1, - anon_sym_DQUOTE, - ACTIONS(4384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4388), 1, - anon_sym_BQUOTE, - ACTIONS(4390), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2094), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(4380), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(4378), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [43058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - aux_sym_concatenation_token1, - ACTIONS(4324), 1, - sym__concat, - STATE(990), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [43119] = 7, + [42623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - STATE(2136), 1, + ACTIONS(5156), 1, + sym_variable_name, + STATE(2566), 1, sym_string, - ACTIONS(4396), 2, + ACTIONS(5154), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4392), 9, + ACTIONS(5150), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -99851,7 +111984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 31, + ACTIONS(1227), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99883,21 +112016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43182] = 5, + [42689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - sym__special_character, - STATE(992), 1, - aux_sym__literal_repeat1, - ACTIONS(268), 6, + ACTIONS(1342), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 39, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99924,7 +112054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99937,21 +112069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43241] = 7, + [42745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - STATE(2136), 1, + ACTIONS(5156), 1, + sym_variable_name, + STATE(2566), 1, sym_string, - ACTIONS(4396), 2, + ACTIONS(5154), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4392), 9, + ACTIONS(5150), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -99961,7 +112095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 31, + ACTIONS(1239), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99993,20 +112127,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43304] = 5, + [42811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, - sym__special_character, - STATE(987), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(262), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(5162), 1, + sym_variable_name, + STATE(2734), 1, + sym_string, + ACTIONS(5160), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5158), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [42877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1261), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100019,8 +112207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -100035,6 +112225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100047,36 +112238,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43363] = 6, + [42933] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5162), 1, + sym_variable_name, + STATE(2734), 1, + sym_string, + ACTIONS(5160), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5158), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [42999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(5164), 1, sym__concat, - STATE(952), 1, + STATE(965), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, + ACTIONS(1288), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 39, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100102,22 +112352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43424] = 6, + [43061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5166), 1, sym__concat, STATE(965), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 5, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 39, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100129,6 +112379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -100157,36 +112408,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43485] = 6, + [43123] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5108), 1, + sym_word, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5114), 1, + anon_sym_DOLLAR, + ACTIONS(5116), 1, + sym__special_character, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5136), 1, + sym_test_operator, + ACTIONS(5138), 1, + sym__brace_start, + STATE(3114), 1, + aux_sym__literal_repeat1, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5120), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1075), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2072), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2613), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2074), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [43217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - aux_sym_concatenation_token1, - ACTIONS(4403), 1, - sym__concat, - STATE(995), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1338), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100195,8 +112515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100210,24 +112532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [43546] = 6, + [43273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(966), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 39, + ACTIONS(1328), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100239,6 +112555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -100253,6 +112571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100267,36 +112586,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43607] = 5, + [43329] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, - sym__special_character, - STATE(992), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 6, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5094), 1, + sym_variable_name, + STATE(6758), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4568), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, - anon_sym_LPAREN_LPAREN, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100304,11 +112629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100321,32 +112646,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43666] = 3, + [43399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 41, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100355,6 +112681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -100371,18 +112698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [43721] = 3, + [43455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 42, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100395,9 +112722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -100411,6 +112737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100425,36 +112752,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43776] = 6, + [43511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - aux_sym_concatenation_token1, - ACTIONS(4411), 1, - sym__concat, - STATE(995), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(1346), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100463,8 +112787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100478,34 +112804,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [43837] = 3, + [43567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100532,92 +112858,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43892] = 7, + [43623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [43955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4360), 1, - sym__concat, - STATE(956), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, + ACTIONS(1334), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 39, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100629,6 +112896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100643,32 +112911,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44016] = 3, + [43679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, - sym_file_descriptor, + ACTIONS(5168), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__concat, - sym_variable_name, + STATE(1065), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 41, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100680,7 +112953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100695,36 +112967,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44071] = 6, + [43741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4348), 1, + ACTIONS(5146), 1, sym__concat, - STATE(1050), 1, + STATE(1123), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(4469), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(4467), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100733,6 +113006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -100748,24 +113022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44132] = 6, + [43803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(5073), 1, sym__concat, - STATE(952), 1, + STATE(1087), 1, aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(5176), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 39, + ACTIONS(5174), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100776,6 +113049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100788,7 +113062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -100804,23 +113077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [44193] = 6, + [43865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(5073), 1, sym__concat, - STATE(956), 1, + STATE(1086), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 5, + ACTIONS(5180), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 39, + ACTIONS(5178), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100831,6 +113105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100843,7 +113118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -100859,33 +113133,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [44254] = 3, + [43927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5144), 1, + aux_sym_concatenation_token1, + ACTIONS(5146), 1, sym__concat, - sym_variable_name, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(4370), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100894,9 +113174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100910,38 +113190,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44309] = 6, + [43989] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(4663), 1, + anon_sym_DQUOTE, + ACTIONS(4667), 1, + sym_variable_name, + STATE(2716), 1, + sym_string, + ACTIONS(4665), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4661), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [44055] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(4663), 1, + anon_sym_DQUOTE, + ACTIONS(4667), 1, + sym_variable_name, + STATE(2716), 1, + sym_string, + ACTIONS(4665), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4661), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [44121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(5146), 1, sym__concat, - STATE(956), 1, + STATE(1123), 1, aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, + ACTIONS(4566), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 39, + ACTIONS(4564), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100967,36 +113363,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44370] = 6, + [44183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5184), 1, sym__concat, - STATE(966), 1, + STATE(1079), 1, aux_sym_concatenation_repeat1, - ACTIONS(3777), 5, + ACTIONS(1267), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 39, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101022,22 +113419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44431] = 6, + [44245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(5186), 1, sym__concat, - STATE(952), 1, + STATE(1079), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 39, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101048,6 +113445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101077,32 +113475,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44492] = 3, - ACTIONS(3), 1, + [44307] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(5188), 1, + sym_word, + ACTIONS(5194), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5197), 1, + anon_sym_DOLLAR, + ACTIONS(5200), 1, + sym__special_character, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5209), 1, + aux_sym_number_token1, + ACTIONS(5212), 1, + aux_sym_number_token2, + ACTIONS(5215), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5218), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5221), 1, + anon_sym_BQUOTE, + ACTIONS(5224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5230), 1, + sym_test_operator, + ACTIONS(5233), 1, + sym__brace_start, + STATE(3114), 1, + aux_sym__literal_repeat1, + ACTIONS(5191), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5227), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1075), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2613), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 10, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [44401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 1, + aux_sym_concatenation_token1, + ACTIONS(5146), 1, sym__concat, - sym_variable_name, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(4552), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101111,9 +113586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101127,38 +113602,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44547] = 6, + [44463] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(4701), 1, sym__concat, - STATE(956), 1, + STATE(1055), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(278), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 39, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101184,22 +113659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44608] = 6, + [44525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(4701), 1, sym__concat, - STATE(965), 1, + STATE(1054), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1281), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1271), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101211,6 +113686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -101239,17 +113715,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44669] = 3, + [44587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, - sym_file_descriptor, + ACTIONS(5236), 1, + aux_sym_concatenation_token1, + ACTIONS(5239), 1, sym__concat, + STATE(1079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 41, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101273,9 +113754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101289,38 +113770,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44724] = 6, + [44649] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4699), 1, aux_sym_concatenation_token1, - ACTIONS(4360), 1, + ACTIONS(4701), 1, sym__concat, - STATE(956), 1, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1054), 1, aux_sym_concatenation_repeat1, - ACTIONS(1943), 5, + ACTIONS(1281), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 39, + ACTIONS(1271), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101346,17 +113828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44785] = 3, + [44713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, sym__concat, + STATE(1074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 41, + ACTIONS(2072), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101380,9 +113867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101396,38 +113883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44840] = 6, + [44775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4360), 1, - sym__concat, - STATE(952), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1281), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1271), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101453,32 +113937,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44901] = 3, + [44831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1253), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101487,6 +113972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -101503,24 +113989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [44956] = 6, + [44887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 39, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101532,6 +114013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -101546,6 +114028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101560,32 +114043,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45017] = 3, + [44943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1316), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101612,178 +114096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45072] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4414), 1, - sym_word, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4420), 1, - anon_sym_DOLLAR, - ACTIONS(4422), 1, - sym__special_character, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4442), 1, - sym_test_operator, - ACTIONS(4444), 1, - sym__brace_start, - STATE(4422), 1, - aux_sym__literal_repeat1, - STATE(4513), 1, - sym_concatenation, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4426), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2333), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(4344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2335), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [45165] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4420), 1, - anon_sym_DOLLAR, - ACTIONS(4422), 1, - sym__special_character, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(4446), 1, - sym_word, - ACTIONS(4450), 1, - sym_test_operator, - STATE(4413), 1, - aux_sym__literal_repeat1, - STATE(4511), 1, - sym_concatenation, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4448), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2222), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(4351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2224), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [45258] = 6, + [44999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5247), 1, sym__concat, - STATE(966), 1, + STATE(1088), 1, aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, + ACTIONS(1267), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 39, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101792,7 +114135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -101808,18 +114150,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [45319] = 3, + [45061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5249), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101845,7 +114193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101861,17 +114208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [45374] = 3, + [45123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5251), 1, + aux_sym_concatenation_token1, + ACTIONS(5254), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101895,10 +114247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101912,37 +114262,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [45429] = 6, + [45185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5245), 1, sym__concat, - STATE(965), 1, + STATE(1073), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1263), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 39, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101968,22 +114320,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45490] = 6, + [45247] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5257), 1, + sym_word, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5263), 1, + anon_sym_DOLLAR, + ACTIONS(5265), 1, + sym__special_character, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5285), 1, + sym_test_operator, + ACTIONS(5287), 1, + sym__brace_start, + STATE(5437), 1, + aux_sym__literal_repeat1, + STATE(5604), 1, + sym_concatenation, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5269), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2494), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5378), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2496), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [45341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5082), 1, sym__concat, - STATE(966), 1, + STATE(1032), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1263), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 39, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101995,6 +114419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -102023,17 +114448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45551] = 3, + [45403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102059,7 +114489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102075,32 +114504,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [45606] = 3, + [45465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, + ACTIONS(5144), 1, + aux_sym_concatenation_token1, + ACTIONS(5146), 1, sym__concat, - sym_variable_name, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4532), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 41, + ACTIONS(4530), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102112,7 +114546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102127,132 +114560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45661] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym_test_operator, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - STATE(2159), 1, - sym_string, - ACTIONS(4208), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4204), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [45724] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - sym_test_operator, - ACTIONS(4206), 1, - anon_sym_DQUOTE, - STATE(2159), 1, - sym_string, - ACTIONS(4208), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4204), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [45787] = 5, + [45527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 5, + ACTIONS(5144), 1, + aux_sym_concatenation_token1, + ACTIONS(5146), 1, + sym__concat, + STATE(1123), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4548), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 40, + ACTIONS(4546), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102265,8 +114589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -102281,6 +114603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102293,23 +114616,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45846] = 3, + [45589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(5289), 1, + sym__special_character, + STATE(1095), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1362), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -102319,6 +114646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102330,9 +114658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102345,36 +114671,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45901] = 6, + [45649] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3781), 5, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5103), 1, + sym_variable_name, + STATE(6727), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 39, - anon_sym_LPAREN_LPAREN, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102382,7 +114714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -102400,32 +114731,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45962] = 3, + [45719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(5292), 1, + sym__special_character, + STATE(1097), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(1362), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102437,9 +114773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102452,44 +114786,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46017] = 3, + [45779] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5103), 1, sym_variable_name, + STATE(6727), 1, + sym_subscript, + ACTIONS(4261), 2, sym_test_operator, sym__brace_start, + ACTIONS(4348), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102504,18 +114825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(4253), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102525,10 +114835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102538,50 +114845,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [46127] = 3, + [45847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102590,6 +114880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -102606,19 +114897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46182] = 3, + [45903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, sym__concat, + STATE(1074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(2094), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102645,7 +114940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102660,32 +114954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46237] = 3, + [45965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102694,6 +114989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -102710,90 +115006,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46292] = 7, - ACTIONS(3), 1, + [46021] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1171), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5263), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5265), 1, + sym__special_character, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(5295), 1, + sym_word, + ACTIONS(5299), 1, + sym_test_operator, + STATE(5494), 1, + aux_sym__literal_repeat1, + STATE(5601), 1, + sym_concatenation, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5297), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2498), 7, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5352), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2500), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [46355] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [46115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102802,6 +115114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -102818,94 +115131,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46410] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [46473] = 6, + [46171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 1, - aux_sym_concatenation_token1, - ACTIONS(4455), 1, - sym__concat, - STATE(1040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(1318), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102914,8 +115167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102929,34 +115184,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46534] = 3, + [46227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, sym__concat, - sym_variable_name, + STATE(1055), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102965,9 +115224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102981,34 +115240,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46589] = 3, + [46289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 41, + ACTIONS(4467), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103017,9 +115280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103033,38 +115296,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46644] = 6, + [46351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4324), 1, + ACTIONS(5082), 1, sym__concat, - STATE(971), 1, + STATE(1040), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(4372), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(4370), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103073,6 +115336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -103088,34 +115352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46705] = 3, + [46413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(4564), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103127,7 +115395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103142,32 +115409,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46760] = 3, + [46475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1040), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(4552), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103179,7 +115451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103194,31 +115465,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46815] = 3, + [46537] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(4078), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4094), 1, + anon_sym_BQUOTE, + ACTIONS(4096), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4102), 1, sym__brace_start, + ACTIONS(5303), 1, + sym__special_character, + ACTIONS(5305), 1, + sym_test_operator, + STATE(4546), 1, + aux_sym__literal_repeat1, + STATE(4907), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 41, + ACTIONS(4076), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5301), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5293), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103228,50 +115536,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + [46629] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4084), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4086), 1, aux_sym_number_token1, + ACTIONS(4088), 1, aux_sym_number_token2, + ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4094), 1, anon_sym_BQUOTE, + ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(5303), 1, + sym__special_character, + ACTIONS(5309), 1, + sym_test_operator, + STATE(4521), 1, + aux_sym__literal_repeat1, + STATE(5023), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4076), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(5307), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [46870] = 3, + STATE(5398), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [46721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 41, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103298,32 +115660,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46925] = 3, + [46777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1330), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103350,20 +115713,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46980] = 5, + [46833] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(919), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [46899] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [46965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103375,9 +115852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103391,7 +115867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103404,87 +115882,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47039] = 6, - ACTIONS(3), 1, + [47021] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4458), 1, - sym__concat, - STATE(1040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, - sym_file_descriptor, + ACTIONS(5311), 1, + sym_word, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(5319), 1, + sym__special_character, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5339), 1, sym_test_operator, + ACTIONS(5341), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 40, + STATE(5424), 1, + aux_sym__literal_repeat1, + STATE(5575), 1, + sym_concatenation, + ACTIONS(5313), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5323), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2494), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5379), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2496), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + [47115] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5315), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5317), 1, anon_sym_DOLLAR, + ACTIONS(5319), 1, sym__special_character, + ACTIONS(5321), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5325), 1, aux_sym_number_token1, + ACTIONS(5327), 1, aux_sym_number_token2, + ACTIONS(5329), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, anon_sym_BQUOTE, + ACTIONS(5335), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(5343), 1, + sym_word, + ACTIONS(5347), 1, + sym_test_operator, + STATE(5496), 1, + aux_sym__literal_repeat1, + STATE(5563), 1, + sym_concatenation, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [47100] = 3, + ACTIONS(5345), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2498), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5331), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2500), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [47209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103493,6 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -103509,25 +116078,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47155] = 3, + [47265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 40, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -103536,6 +116105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103544,6 +116114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -103560,22 +116131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47209] = 5, + [47321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 5, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, + sym__concat, + STATE(1073), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 39, + ACTIONS(4467), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103603,6 +116175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103615,28 +116188,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47267] = 6, + [47383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4464), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1102), 1, + STATE(1032), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(4482), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 38, + ACTIONS(4480), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -103644,6 +116218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103669,35 +116244,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47327] = 6, + [47445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4468), 1, + ACTIONS(5349), 1, sym__concat, - STATE(1142), 1, + STATE(1140), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 6, + ACTIONS(1267), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 37, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103723,31 +116300,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47387] = 3, + [47507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1040), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4465), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(4463), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103756,9 +116339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103772,18 +116355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47441] = 3, + [47569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(1350), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 41, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103795,9 +116379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103811,6 +116394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103825,35 +116409,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47495] = 6, + [47625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_concatenation_token1, - ACTIONS(4472), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 6, + ACTIONS(1346), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103862,8 +116444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103877,18 +116461,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47555] = 3, + [47681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, sym__concat, + STATE(1074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(4370), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103912,9 +116501,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103928,33 +116517,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47609] = 3, + [47743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103963,6 +116553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -103979,37 +116570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47663] = 6, + [47799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - aux_sym_concatenation_token1, - ACTIONS(4477), 1, - sym__concat, - STATE(1061), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 6, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 37, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104021,6 +116609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104035,23 +116624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47723] = 3, + [47855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 40, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -104060,6 +116650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104068,6 +116659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -104084,37 +116676,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47777] = 6, + [47911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4483), 1, + ACTIONS(5351), 1, sym__concat, - STATE(1063), 1, + STATE(1140), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 6, + ACTIONS(1288), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 37, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104123,6 +116716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -104138,38 +116732,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47837] = 6, + [47973] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_concatenation_token1, - ACTIONS(4488), 1, - sym__concat, - STATE(1093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(2719), 1, + anon_sym_BQUOTE, + ACTIONS(5094), 1, + sym_variable_name, + ACTIONS(5357), 1, + aux_sym_heredoc_redirect_token1, + STATE(6758), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4568), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(5353), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104177,7 +116780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -104189,36 +116792,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47897] = 3, + [48049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(1296), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104227,6 +116831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -104243,48 +116848,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47951] = 3, + [48105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1241), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [48171] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5361), 1, + anon_sym_DQUOTE, + ACTIONS(5365), 1, + sym_variable_name, + STATE(2850), 1, + sym_string, + ACTIONS(5363), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5359), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -104296,35 +116965,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48005] = 6, + [48237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1142), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 6, + ACTIONS(1314), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104336,6 +117003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104350,36 +117018,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48065] = 6, + [48293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_concatenation_token1, - ACTIONS(4490), 1, - sym__concat, - STATE(1093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104388,8 +117053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104404,35 +117071,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48125] = 6, + [48349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1142), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 6, + ACTIONS(1338), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 37, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104444,6 +117109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104458,23 +117124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48185] = 3, + [48405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -104483,6 +117150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104509,35 +117177,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48239] = 6, + [48461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(5367), 1, aux_sym_concatenation_token1, - ACTIONS(4495), 1, + ACTIONS(5370), 1, sym__concat, - STATE(1071), 1, + STATE(1140), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104546,6 +117216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -104561,25 +117232,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + [48523] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5361), 1, + anon_sym_DQUOTE, + ACTIONS(5365), 1, + sym_variable_name, + STATE(2850), 1, + sym_string, + ACTIONS(5363), 2, aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5359), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [48299] = 3, + [48589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 40, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -104588,6 +117317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104596,6 +117326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -104612,37 +117343,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48353] = 6, + [48645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1111), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 38, + ACTIONS(1332), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104651,8 +117379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104666,37 +117396,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48413] = 6, + [48701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(5144), 1, aux_sym_concatenation_token1, - ACTIONS(4500), 1, + ACTIONS(5146), 1, sym__concat, - STATE(1106), 1, + STATE(1123), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1263), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 38, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104705,6 +117436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -104720,33 +117452,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48473] = 3, + [48763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 41, + ACTIONS(1292), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104755,6 +117488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -104771,37 +117505,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48527] = 6, + [48819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - aux_sym_concatenation_token1, - ACTIONS(4504), 1, - sym__concat, - STATE(1071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(5078), 1, + sym__special_character, + STATE(1095), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 39, + ACTIONS(4564), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104810,10 +117545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104825,22 +117560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48587] = 5, + [48879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, + sym__concat, + STATE(1073), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(5067), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104868,6 +117604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104880,17 +117617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48645] = 3, + [48941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, sym__concat, + STATE(1074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5373), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104901,6 +117643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104913,9 +117656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104929,28 +117672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48699] = 5, + [49003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(5078), 1, sym__special_character, - STATE(1077), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - ACTIONS(4511), 5, + ACTIONS(4469), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 39, + ACTIONS(4467), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -104960,6 +117703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104984,32 +117728,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48757] = 3, + [49063] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(4257), 1, + anon_sym_BQUOTE, + ACTIONS(5094), 1, + sym_variable_name, + ACTIONS(5379), 1, + aux_sym_heredoc_redirect_token1, + STATE(6758), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4568), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(5377), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105017,7 +117775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -105030,40 +117787,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48811] = 5, + [49139] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - sym__special_character, - STATE(987), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 5, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5383), 1, + aux_sym_heredoc_redirect_token1, + STATE(6727), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(5381), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105071,11 +117836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105088,35 +117853,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48869] = 6, + [49213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1054), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 38, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105128,6 +117891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105142,35 +117906,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48929] = 6, + [49269] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, - sym_file_descriptor, + ACTIONS(5103), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5387), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(6727), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(4787), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5385), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105178,7 +117951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -105196,88 +117968,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48989] = 5, + [49343] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1235), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [49047] = 6, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [49409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_concatenation_token1, - ACTIONS(4519), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 6, + ACTIONS(1318), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1316), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105286,8 +118061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105301,24 +118078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [49107] = 6, + [49465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5073), 1, sym__concat, - STATE(1054), 1, + STATE(1087), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 38, + ACTIONS(5373), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105329,8 +118105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105340,7 +118118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -105356,36 +118133,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49167] = 6, + [49527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1330), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 38, + ACTIONS(1328), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105397,6 +118173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105411,17 +118188,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49227] = 3, + [49583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, - sym_file_descriptor, + ACTIONS(5182), 1, + aux_sym_concatenation_token1, + ACTIONS(5245), 1, sym__concat, + STATE(1074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 40, + ACTIONS(5389), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105432,6 +118214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105447,7 +118230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105462,35 +118244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49281] = 5, + [49645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(1346), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 39, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105502,7 +118282,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105515,22 +118297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49339] = 6, + [49701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5245), 1, sym__concat, - STATE(1054), 1, + STATE(1073), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 5, + ACTIONS(4566), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 38, + ACTIONS(4564), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105541,8 +118323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105569,35 +118353,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49399] = 6, + [49763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1095), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 6, + ACTIONS(1358), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 37, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105609,6 +118391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105623,22 +118406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49459] = 6, + [49819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(4521), 1, + ACTIONS(5245), 1, sym__concat, - STATE(1102), 1, + STATE(1074), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(4554), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 38, + ACTIONS(4552), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105649,8 +118432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105677,21 +118462,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49519] = 6, + [49881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(5182), 1, aux_sym_concatenation_token1, - ACTIONS(4526), 1, + ACTIONS(5245), 1, sym__concat, - STATE(1093), 1, + STATE(1073), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(5395), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(5393), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105715,6 +118501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -105731,17 +118518,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49579] = 3, + [49943] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [50008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105752,6 +118596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105782,23 +118627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49633] = 6, + [50063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5397), 1, aux_sym_concatenation_token1, - ACTIONS(4529), 1, + ACTIONS(5399), 1, sym__concat, - STATE(1061), 1, + STATE(1257), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 6, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(5373), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105810,6 +118654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105819,7 +118665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -105835,21 +118680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49693] = 5, + [50124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 1, - sym__special_character, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5399), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 39, + ACTIONS(5067), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105860,7 +118708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105876,6 +118723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105889,20 +118737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [49751] = 5, + [50185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - sym__special_character, - STATE(987), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(4465), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 39, + ACTIONS(4463), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105914,8 +118758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105930,6 +118776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105942,31 +118789,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49809] = 3, + [50240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1281), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 41, + ACTIONS(1271), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105975,9 +118824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105991,19 +118840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [49863] = 3, + [50295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5399), 1, sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(5178), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106026,10 +118879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106043,22 +118894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49917] = 6, + [50356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(5397), 1, aux_sym_concatenation_token1, - ACTIONS(4533), 1, + ACTIONS(5399), 1, sym__concat, - STATE(1071), 1, + STATE(1257), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(5176), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 39, + ACTIONS(5174), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106098,86 +118951,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [49977] = 3, - ACTIONS(3), 1, + [50417] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1230), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5401), 1, + sym_word, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5407), 1, + anon_sym_DOLLAR, + ACTIONS(5409), 1, + sym__special_character, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5429), 1, sym_test_operator, + ACTIONS(5431), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 41, + STATE(5532), 1, + aux_sym__literal_repeat1, + STATE(5692), 1, + sym_concatenation, + ACTIONS(5403), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5413), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2498), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5418), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2500), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + [50510] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5437), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5439), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5441), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5443), 1, anon_sym_BQUOTE, + ACTIONS(5445), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [50031] = 6, + STATE(2559), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5435), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5433), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [50577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4538), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1102), 1, + STATE(1177), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(1263), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106203,31 +119135,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50091] = 3, + [50638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(5447), 1, + sym__special_character, + STATE(1295), 1, + aux_sym__literal_repeat1, + ACTIONS(4548), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(4546), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106236,11 +119173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106252,33 +119188,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50145] = 3, + [50697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106305,35 +119241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50199] = 6, + [50752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5449), 1, sym__concat, - STATE(1092), 1, + STATE(1065), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1267), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106359,85 +119296,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50259] = 6, - ACTIONS(3), 1, + [50813] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4541), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5407), 1, + anon_sym_DOLLAR, + ACTIONS(5409), 1, + sym__special_character, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 38, + ACTIONS(5451), 1, + sym_word, + ACTIONS(5455), 1, + sym_test_operator, + STATE(5519), 1, + aux_sym__literal_repeat1, + STATE(5619), 1, + sym_concatenation, + ACTIONS(5403), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5453), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2494), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2496), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [50319] = 3, + [50906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5457), 1, + sym__special_character, + STATE(1179), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1362), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106446,11 +119405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106462,22 +119420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50373] = 5, + [50965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(5447), 1, sym__special_character, - STATE(987), 1, + STATE(1295), 1, aux_sym__literal_repeat1, - ACTIONS(3781), 5, + ACTIONS(4482), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 39, + ACTIONS(4480), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106489,8 +119446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106517,26 +119475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50431] = 5, + [51024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(5462), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 39, + ACTIONS(5460), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -106546,6 +119501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106558,6 +119514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106570,20 +119527,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50489] = 5, + [51079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4532), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4530), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(987), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106595,7 +119602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -106610,7 +119616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106623,22 +119631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50547] = 6, + [51189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(5464), 1, aux_sym_concatenation_token1, - ACTIONS(4543), 1, + ACTIONS(5466), 1, sym__concat, - STATE(1125), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(2074), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 38, + ACTIONS(2072), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106649,8 +119657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106660,6 +119669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -106675,33 +119685,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50607] = 3, + [51250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106728,31 +119738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50661] = 3, + [51305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106761,6 +119772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -106777,37 +119789,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50715] = 6, + [51360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_concatenation_token1, - ACTIONS(4545), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 6, + ACTIONS(1310), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106816,8 +119824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106831,33 +119841,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50775] = 3, + [51415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106866,6 +119876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -106882,25 +119893,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50829] = 6, + [51470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(1253), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(4468), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, + aux_sym_concatenation_token1, + ACTIONS(5474), 1, sym__concat, - STATE(1095), 1, + STATE(1214), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 6, + ACTIONS(5470), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(5468), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106911,7 +119971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106921,7 +119984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -106937,24 +119999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50889] = 6, + [51586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5472), 1, aux_sym_concatenation_token1, - ACTIONS(4468), 1, + ACTIONS(5474), 1, sym__concat, - STATE(1095), 1, + STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 6, + ACTIONS(5478), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 37, + ACTIONS(5476), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106965,7 +120026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106975,7 +120039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -106991,24 +120054,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50949] = 6, + [51647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5464), 1, aux_sym_concatenation_token1, - ACTIONS(4468), 1, + ACTIONS(5466), 1, sym__concat, - STATE(1142), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 6, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 37, + ACTIONS(5373), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107020,6 +120083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107046,16 +120111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51009] = 3, + [51708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(5067), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107066,7 +120137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107079,9 +120149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107095,33 +120165,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51063] = 3, + [51769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1346), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107130,6 +120200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -107146,33 +120217,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51117] = 3, + [51824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107181,6 +120252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -107197,23 +120269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51171] = 5, + [51879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - sym__special_character, - STATE(992), 1, - aux_sym__literal_repeat1, - ACTIONS(3781), 6, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 38, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107225,6 +120292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -107239,7 +120307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107252,17 +120322,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51229] = 3, + [51934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(5086), 1, + anon_sym_DQUOTE, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, + sym_string, + ACTIONS(5088), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5084), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [51999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 40, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107273,6 +120400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107303,17 +120431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51283] = 3, + [52054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107324,6 +120452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107336,6 +120465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -107352,30 +120482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51337] = 6, + [52109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - aux_sym_concatenation_token1, - ACTIONS(4550), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -107383,6 +120508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107391,8 +120517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107406,37 +120534,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51397] = 6, + [52164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1095), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 6, + ACTIONS(5447), 1, + sym__special_character, + STATE(1295), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 37, + ACTIONS(4564), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107449,7 +120577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107462,17 +120589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51457] = 3, + [52223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 6, + ACTIONS(5447), 1, + sym__special_character, + STATE(1295), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(4467), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107484,8 +120614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107500,7 +120631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107513,35 +120643,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51511] = 6, + [52282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4472), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1085), 1, + STATE(1177), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 6, + ACTIONS(4548), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(4546), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107550,6 +120681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -107565,19 +120697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51571] = 3, + [52343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107588,6 +120719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107600,6 +120732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -107616,23 +120749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51625] = 5, + [52398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - sym__special_character, - STATE(992), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 6, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 38, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107644,6 +120772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -107658,7 +120787,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107671,16 +120802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51683] = 3, + [52453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107722,23 +120854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51737] = 6, + [52508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_concatenation_token1, - ACTIONS(4472), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 6, + ACTIONS(1253), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107749,7 +120875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107761,6 +120890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107776,32 +120906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51797] = 3, + [52563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107813,6 +120943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107827,35 +120958,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51851] = 6, + [52618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_concatenation_token1, - ACTIONS(4472), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4300), 6, + ACTIONS(5480), 1, + sym__special_character, + STATE(1209), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 37, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107864,10 +120996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107879,18 +121011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51911] = 3, + [52677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107914,6 +121046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -107930,25 +121063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51965] = 6, + [52732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(5472), 1, aux_sym_concatenation_token1, - ACTIONS(4472), 1, + ACTIONS(5483), 1, sym__concat, - STATE(1085), 1, + STATE(1217), 1, aux_sym_concatenation_repeat1, - ACTIONS(4290), 6, + ACTIONS(1267), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 37, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107959,7 +121089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107986,75 +121119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52025] = 6, + [52793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1054), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [52085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 1, + ACTIONS(5485), 1, sym__special_character, - STATE(992), 1, + STATE(1209), 1, aux_sym__literal_repeat1, - ACTIONS(3681), 6, + ACTIONS(278), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 38, + ACTIONS(241), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108066,6 +121145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -108093,74 +121173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [52203] = 5, + [52852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4553), 1, - sym__special_character, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108186,7 +121209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108200,32 +121225,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52261] = 3, + [52907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 6, + ACTIONS(5472), 1, + aux_sym_concatenation_token1, + ACTIONS(5487), 1, + sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108234,7 +121263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -108250,36 +121278,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52315] = 6, + [52968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4556), 1, + ACTIONS(5489), 1, sym__concat, - STATE(1061), 1, + STATE(1065), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 6, + ACTIONS(1288), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108305,31 +121335,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52375] = 3, + [53029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108338,6 +121369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -108354,24 +121386,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52429] = 6, + [53084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(5491), 1, aux_sym_concatenation_token1, - ACTIONS(4500), 1, + ACTIONS(5494), 1, sym__concat, - STATE(1106), 1, + STATE(1217), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1253), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108382,8 +121412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108410,17 +121442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52489] = 3, + [53145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108431,6 +121463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108461,35 +121494,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52543] = 6, + [53200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1054), 1, + STATE(1215), 1, aux_sym_concatenation_repeat1, - ACTIONS(1943), 5, + ACTIONS(4532), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 38, + ACTIONS(4530), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108515,78 +121549,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52603] = 9, - ACTIONS(71), 1, + [53261] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4560), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(4562), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4564), 1, anon_sym_BQUOTE, - ACTIONS(4566), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2212), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(4380), 14, - anon_sym_EQ, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [53316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(4378), 24, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [53371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 6, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [52669] = 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [53426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - sym__special_character, - STATE(992), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 6, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108612,7 +121742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108625,17 +121757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52727] = 3, + [53481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108646,6 +121778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108676,23 +121809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52781] = 6, + [53536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1142), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 6, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108703,7 +121830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108713,9 +121843,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108729,18 +121859,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52841] = 3, + [53591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5472), 1, + aux_sym_concatenation_token1, + ACTIONS(5474), 1, sym__concat, - sym_variable_name, + STATE(1211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108751,6 +121886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108765,7 +121901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108781,17 +121916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52895] = 3, + [53652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, + ACTIONS(5497), 1, + aux_sym_concatenation_token1, + ACTIONS(5499), 1, sym__concat, - sym_variable_name, + STATE(1230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1265), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108802,6 +121941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108814,9 +121954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108830,19 +121970,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52949] = 3, + [53713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, + ACTIONS(5497), 1, + aux_sym_concatenation_token1, + ACTIONS(5501), 1, sym__concat, - sym_variable_name, + STATE(1230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108853,6 +121996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108868,7 +122012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108883,31 +122026,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53003] = 3, + [53774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1263), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1261), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108919,7 +122064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108934,23 +122078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53057] = 6, + [53829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(4468), 1, + ACTIONS(5506), 1, sym__concat, - STATE(1095), 1, + STATE(1230), 1, aux_sym_concatenation_repeat1, - ACTIONS(1943), 6, + ACTIONS(1253), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 37, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108961,7 +122103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108988,35 +122133,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53117] = 6, + [53890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1111), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4290), 5, + ACTIONS(1342), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 38, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109025,8 +122167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109040,19 +122184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53177] = 3, + [53945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109063,6 +122206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109093,22 +122237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53231] = 6, + [54000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1106), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4300), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 38, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109119,8 +122258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109130,8 +122271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109145,34 +122288,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53291] = 3, + [54055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 5, + ACTIONS(5497), 1, + aux_sym_concatenation_token1, + ACTIONS(5509), 1, + sym__concat, + STATE(1227), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 41, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109198,145 +122344,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53345] = 7, + [54116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, + ACTIONS(1318), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53407] = 7, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [54171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, + ACTIONS(1330), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(4330), 1, - anon_sym_DQUOTE, - STATE(1987), 1, - sym_string, - ACTIONS(4332), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53469] = 5, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [54226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym__special_character, - STATE(1077), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 39, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109348,7 +122485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109361,31 +122500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53527] = 3, + [54281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109412,31 +122552,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53581] = 3, + [54336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109463,23 +122604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53635] = 6, + [54391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1095), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 6, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 37, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109490,7 +122625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109500,9 +122638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109516,21 +122654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53695] = 5, + [54446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 1, - sym__special_character, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(4300), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 39, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109556,7 +122692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109570,16 +122708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53753] = 3, + [54501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109621,36 +122760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53807] = 6, + [54556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4568), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1064), 1, + STATE(1177), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(4482), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 39, + ACTIONS(4480), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109659,6 +122798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -109675,31 +122815,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53867] = 3, + [54617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4465), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(4463), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109708,9 +122853,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109724,19 +122869,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53921] = 3, + [54678] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5511), 1, sym__concat, + STATE(1250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109759,9 +122908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109775,19 +122924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53975] = 3, + [54739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109798,6 +122946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109810,6 +122959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -109826,18 +122976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54029] = 3, + [54794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109861,6 +123011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -109877,37 +123028,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54083] = 6, + [54849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - aux_sym_concatenation_token1, - ACTIONS(4570), 1, - sym__concat, - STATE(1100), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(1330), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109916,8 +123063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109931,24 +123080,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54143] = 6, + [54904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5464), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5513), 1, sym__concat, - STATE(1054), 1, + STATE(1250), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 38, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109959,8 +123107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109987,22 +123136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54203] = 6, + [54965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5515), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1092), 1, + STATE(1250), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, + ACTIONS(1253), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 38, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110013,8 +123162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -110041,179 +123191,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54263] = 3, + [55026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [54317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, + ACTIONS(5397), 1, aux_sym_concatenation_token1, - ACTIONS(4568), 1, + ACTIONS(5521), 1, sym__concat, - STATE(1064), 1, + STATE(1262), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [54377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4374), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [54431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 5, + ACTIONS(1267), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 41, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -110222,7 +123221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110231,7 +123229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -110247,18 +123244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54485] = 3, + [55087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110269,6 +123267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110299,16 +123298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [54539] = 3, + [55142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110350,16 +123350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [54593] = 3, + [55197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110383,6 +123384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -110399,18 +123401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54647] = 3, + [55252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110434,6 +123436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -110450,23 +123453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54701] = 6, + [55307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - aux_sym_concatenation_token1, - ACTIONS(4570), 1, - sym__concat, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4352), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 39, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110477,6 +123475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110489,8 +123488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110504,23 +123505,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54761] = 6, + [55362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(5397), 1, aux_sym_concatenation_token1, - ACTIONS(4570), 1, + ACTIONS(5523), 1, sym__concat, - STATE(1100), 1, + STATE(1262), 1, aux_sym_concatenation_repeat1, - ACTIONS(4346), 4, + ACTIONS(1288), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 39, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110560,21 +123561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [54821] = 6, + [55423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(5464), 1, aux_sym_concatenation_token1, - ACTIONS(4568), 1, + ACTIONS(5466), 1, sym__concat, - STATE(1068), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + ACTIONS(4554), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 39, + ACTIONS(4552), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110585,7 +123587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110598,6 +123599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -110614,31 +123616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54881] = 3, + [55484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1322), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110647,6 +123650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -110663,33 +123667,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54935] = 3, + [55539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, + ACTIONS(1263), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 40, + ACTIONS(1261), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110701,7 +123706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110716,17 +123720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54989] = 3, + [55594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(4564), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110752,7 +123761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110767,17 +123775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55043] = 3, + [55655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5525), 1, + aux_sym_concatenation_token1, + ACTIONS(5528), 1, sym__concat, + STATE(1262), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110802,7 +123815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110818,17 +123830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55097] = 3, + [55716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 40, + ACTIONS(4370), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110851,9 +123868,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110867,19 +123884,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55151] = 3, + [55777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110905,7 +123926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110920,17 +123940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55205] = 3, + [55838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4467), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110956,7 +123981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110971,17 +123995,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55259] = 3, + [55899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5399), 1, sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111004,10 +124033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111021,31 +124048,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [55313] = 3, + [55960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(5531), 1, + sym__special_character, + STATE(1179), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111054,11 +124088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111070,25 +124103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55366] = 3, + [56019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 39, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -111096,6 +124129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111122,21 +124156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55419] = 6, + [56074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(5464), 1, aux_sym_concatenation_token1, - ACTIONS(4575), 1, + ACTIONS(5466), 1, sym__concat, - STATE(1197), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(5391), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(5389), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111159,6 +124194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -111175,17 +124211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55478] = 3, + [56135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5393), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111196,8 +124237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -111210,7 +124252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111225,34 +124266,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55531] = 5, + [56196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - sym__special_character, - STATE(1199), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(4467), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111265,6 +124308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111277,34 +124321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55588] = 6, + [56257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - aux_sym_concatenation_token1, - ACTIONS(4583), 1, - sym__concat, - STATE(1231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4346), 5, + ACTIONS(1318), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 37, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111313,8 +124355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111328,36 +124372,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55647] = 6, + [56312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(5080), 1, aux_sym_concatenation_token1, - ACTIONS(4588), 1, + ACTIONS(5082), 1, sym__concat, - STATE(1201), 1, + STATE(1215), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(4372), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 37, + ACTIONS(4370), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111366,6 +124411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -111381,36 +124427,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55706] = 5, + [56373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, - sym__special_character, - STATE(1210), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 38, + ACTIONS(4564), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111419,9 +124466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111433,18 +124482,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55763] = 3, + [56434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, - sym_file_descriptor, + ACTIONS(5464), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, sym__concat, + STATE(1249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 40, + ACTIONS(2094), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111467,9 +124521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111483,32 +124537,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55816] = 3, + [56495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, - sym_variable_name, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(4552), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111520,7 +124579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111535,30 +124593,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55869] = 3, + [56556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111567,6 +124627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -111583,18 +124644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55922] = 3, + [56611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 40, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111634,32 +124695,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [55975] = 3, + [56666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1294), 7, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111668,6 +124731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -111685,23 +124749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56028] = 3, + [56721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 39, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -111709,6 +124774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111717,6 +124783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -111733,27 +124800,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56081] = 5, + [56776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - sym__special_character, - STATE(1209), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(4372), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(4370), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -111763,6 +124827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111771,110 +124836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [56138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 1, - sym__special_character, - STATE(1210), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [56195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -111887,84 +124852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [56248] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4599), 1, - sym__special_character, - STATE(1209), 1, - aux_sym__literal_repeat1, - ACTIONS(4346), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56305] = 3, + [56831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 39, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111991,30 +124905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56358] = 3, + [56886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1334), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112041,34 +124957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56411] = 6, + [56941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - aux_sym_concatenation_token1, - ACTIONS(4601), 1, - sym__concat, - STATE(1201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112077,8 +124991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112092,37 +125008,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56470] = 9, + [56996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - sym_variable_name, - STATE(5393), 1, - sym_subscript, - ACTIONS(3588), 2, + ACTIONS(1338), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3636), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4201), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 16, + ACTIONS(1336), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112131,11 +125043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112150,20 +125061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56535] = 5, + [57051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - sym__special_character, - STATE(1199), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 38, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112174,6 +125082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -112186,10 +125095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112201,28 +125111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [56592] = 6, + [57106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1338), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4346), 4, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 38, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -112230,6 +125138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112238,8 +125147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112253,23 +125164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56651] = 6, + [57161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1306), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4352), 4, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 38, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112280,8 +125186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112293,6 +125201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112308,30 +125217,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [56710] = 3, + [57216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112340,6 +125251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -112356,18 +125268,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56763] = 3, + [57271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(5497), 1, + aux_sym_concatenation_token1, + ACTIONS(5509), 1, sym__concat, + STATE(1228), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(5389), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112391,9 +125307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112408,21 +125324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56816] = 6, + [57332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(5497), 1, aux_sym_concatenation_token1, - ACTIONS(4614), 1, + ACTIONS(5509), 1, sym__concat, - STATE(1402), 1, + STATE(1227), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(5395), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(5393), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112433,6 +125349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -112445,6 +125362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -112461,32 +125379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56875] = 6, + [57393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4616), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112500,6 +125416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112514,32 +125431,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56934] = 6, + [57448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4618), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1253), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112553,6 +125468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112567,32 +125483,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56993] = 6, + [57503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1224), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 37, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112606,6 +125520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112620,26 +125535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57052] = 5, + [57558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(5533), 1, sym__special_character, - STATE(1199), 1, + STATE(1295), 1, aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(1364), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 38, + ACTIONS(1362), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -112648,6 +125564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112672,31 +125589,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57109] = 3, + [57617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112705,6 +125623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -112722,16 +125641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57162] = 3, + [57672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112771,18 +125691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57215] = 3, + [57727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 39, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112793,8 +125714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112822,16 +125745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57268] = 3, + [57782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112871,35 +125795,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57321] = 6, + [57837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - aux_sym_concatenation_token1, - ACTIONS(4620), 1, - sym__concat, - STATE(1201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112908,8 +125831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112923,36 +125848,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57380] = 6, + [57892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1338), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(4554), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(4552), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112961,6 +125884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -112976,20 +125900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57439] = 3, + [57947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113000,7 +125922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113010,6 +125935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -113026,32 +125952,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57492] = 3, + [58002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113078,30 +126005,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57545] = 3, + [58057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113128,74 +126057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57598] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4603), 1, - sym_variable_name, - STATE(5393), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4201), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3580), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [57665] = 3, + [58112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113206,8 +126078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113235,17 +126109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57718] = 3, + [58167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113256,8 +126130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113267,6 +126143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -113283,20 +126160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57771] = 3, + [58222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, + ACTIONS(5536), 1, + aux_sym_concatenation_token1, + ACTIONS(5538), 1, sym__concat, - sym_variable_name, + STATE(1311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(5393), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113308,6 +126187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113320,7 +126201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113335,22 +126215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57824] = 6, + [58282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(5540), 1, aux_sym_concatenation_token1, - ACTIONS(4500), 1, + ACTIONS(5542), 1, sym__concat, - STATE(1242), 1, + STATE(1441), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113361,7 +126240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113386,24 +126268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57883] = 6, + [58342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4622), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113414,7 +126289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113424,8 +126302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113439,24 +126319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57942] = 6, + [58396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4624), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113467,7 +126340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113477,8 +126353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113492,24 +126370,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58001] = 6, + [58450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5536), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5544), 1, sym__concat, - STATE(1245), 1, + STATE(1347), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1267), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113521,6 +126397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113547,34 +126425,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58060] = 6, - ACTIONS(3), 1, + [58510] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4626), 1, + ACTIONS(5546), 1, + anon_sym_DQUOTE, + ACTIONS(5548), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5550), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5552), 1, + anon_sym_BQUOTE, + ACTIONS(5554), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2601), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5435), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5433), 24, sym__concat, - STATE(1102), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [58576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5556), 1, + sym__special_character, + STATE(1313), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1362), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113587,7 +126523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113600,34 +126535,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58119] = 6, + [58634] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4628), 1, - sym__concat, - STATE(1102), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5565), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5568), 1, + anon_sym_DOLLAR, + ACTIONS(5571), 1, + sym__special_character, + ACTIONS(5574), 1, + anon_sym_DQUOTE, + ACTIONS(5577), 1, + aux_sym_number_token1, + ACTIONS(5580), 1, + aux_sym_number_token2, + ACTIONS(5583), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5589), 1, + anon_sym_BQUOTE, + ACTIONS(5592), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5598), 1, sym_test_operator, + ACTIONS(5601), 1, sym__brace_start, + STATE(3469), 1, + aux_sym__literal_repeat1, + ACTIONS(2216), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(5562), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1314), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5559), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3093), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113635,34 +126603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [58178] = 3, + [58724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113673,7 +126625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -113702,19 +126653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58231] = 3, + [58778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113726,6 +126677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113753,17 +126706,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58284] = 3, + [58832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, + ACTIONS(5608), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5610), 1, + anon_sym_DOLLAR, + ACTIONS(5612), 1, + sym__special_character, + ACTIONS(5614), 1, + anon_sym_DQUOTE, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5620), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5624), 1, + anon_sym_BQUOTE, + ACTIONS(5626), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5630), 1, + sym_test_operator, + ACTIONS(5632), 1, + sym__brace_start, + STATE(3469), 1, + aux_sym__literal_repeat1, + ACTIONS(2074), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1314), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5604), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3093), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2072), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [58922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 1, + aux_sym_concatenation_token1, + ACTIONS(5636), 1, sym__concat, + STATE(1398), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 39, + ACTIONS(5178), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113774,7 +126802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -113787,7 +126814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113803,18 +126829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58337] = 3, + [58982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 7, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113826,6 +126851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113853,34 +126880,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58390] = 6, + [59036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5640), 1, sym__concat, - STATE(1223), 1, + STATE(1367), 1, aux_sym_concatenation_repeat1, - ACTIONS(268), 5, + ACTIONS(2096), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(231), 37, + ACTIONS(2094), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113906,30 +126934,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58449] = 3, + [59096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 7, + ACTIONS(5642), 1, + sym__special_character, + STATE(1358), 1, + aux_sym__literal_repeat1, + ACTIONS(4548), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 38, + ACTIONS(4546), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113938,11 +126971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113954,20 +126986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58502] = 3, + [59154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, - sym_file_descriptor, + ACTIONS(5634), 1, + aux_sym_concatenation_token1, + ACTIONS(5636), 1, sym__concat, + STATE(1443), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5176), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(5174), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113990,7 +127026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114006,18 +127041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58555] = 3, + [59214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114029,6 +127063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114038,6 +127074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -114054,20 +127091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58608] = 3, + [59268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114079,6 +127114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114106,18 +127143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58661] = 3, + [59322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 7, - sym_file_descriptor, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5646), 1, sym__concat, - sym_variable_name, + STATE(1420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5478), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 38, + ACTIONS(5476), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114129,6 +127169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114138,10 +127180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114155,18 +127195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58714] = 3, + [59382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, - sym_file_descriptor, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5646), 1, sym__concat, - sym_variable_name, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5470), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 39, + ACTIONS(5468), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114177,8 +127222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114190,7 +127236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114206,18 +127251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58767] = 3, + [59442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114229,6 +127273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114238,6 +127284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -114254,32 +127301,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58820] = 3, + [59496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(4532), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(4530), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114288,9 +127336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114304,32 +127352,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58873] = 3, + [59550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(5462), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(5460), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114338,9 +127387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114354,20 +127403,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58926] = 3, + [59604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(4370), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114378,6 +127430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -114388,9 +127441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114404,20 +127457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58979] = 3, + [59664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 7, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(4467), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114428,6 +127484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -114438,9 +127495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114454,32 +127511,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59032] = 3, + [59724] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5608), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5610), 1, + anon_sym_DOLLAR, + ACTIONS(5612), 1, + sym__special_character, + ACTIONS(5614), 1, + anon_sym_DQUOTE, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5620), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5624), 1, + anon_sym_BQUOTE, + ACTIONS(5626), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5630), 1, sym_test_operator, + ACTIONS(5632), 1, sym__brace_start, + STATE(3469), 1, + aux_sym__literal_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 39, + ACTIONS(5606), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5628), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1314), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5604), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3093), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114487,53 +127580,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [59085] = 6, + [59814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5648), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5650), 1, sym__concat, - STATE(1223), 1, + STATE(1373), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1288), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114559,18 +127635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59144] = 3, + [59874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114582,6 +127657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114591,6 +127668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -114607,107 +127685,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59197] = 28, - ACTIONS(71), 1, + [59928] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + ACTIONS(5652), 1, sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(4630), 1, - sym_extglob_pattern, - STATE(2140), 1, + STATE(1313), 1, aux_sym__literal_repeat1, - STATE(2460), 1, - sym__extglob_blob, - STATE(2620), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 6, + ACTIONS(4482), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(4480), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114716,11 +127723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114732,23 +127738,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59353] = 6, + [59986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(4635), 1, + ACTIONS(5640), 1, sym__concat, - STATE(1267), 1, + STATE(1367), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(2074), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(2072), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114770,6 +127776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -114785,19 +127792,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59412] = 3, + [60046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, + ACTIONS(5634), 1, + aux_sym_concatenation_token1, + ACTIONS(5636), 1, sym__concat, + STATE(1443), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(5373), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114808,7 +127820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -114821,7 +127832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114837,30 +127847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59465] = 3, + [60106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1263), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1261), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114869,9 +127881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114885,19 +127897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59518] = 3, + [60160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(4467), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114908,7 +127925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -114919,9 +127935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114935,33 +127951,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59571] = 3, + [60220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 40, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114973,6 +127988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114987,22 +128003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59624] = 6, + [60274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(5634), 1, aux_sym_concatenation_token1, - ACTIONS(4500), 1, + ACTIONS(5636), 1, sym__concat, - STATE(1241), 1, + STATE(1398), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(5069), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115040,20 +128057,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59683] = 5, + [60334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - sym__special_character, - STATE(1199), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, + sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 38, + ACTIONS(4370), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115065,8 +128085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115080,6 +128098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115092,16 +128111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59740] = 3, + [60394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(4564), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115112,9 +128137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115124,9 +128148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115140,18 +128164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59793] = 3, + [60454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(4552), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115162,10 +128191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115175,6 +128202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -115190,24 +128218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59846] = 6, + [60514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1242), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115219,6 +128241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115228,8 +128252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115243,33 +128269,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59905] = 3, + [60568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(4465), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(4463), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115278,9 +128304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115295,22 +128321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59958] = 6, + [60622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(5656), 1, aux_sym_concatenation_token1, - ACTIONS(4583), 1, + ACTIONS(5659), 1, sym__concat, - STATE(1231), 1, + STATE(1347), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1253), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115322,6 +128347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115331,6 +128358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -115346,95 +128374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60017] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4642), 1, - sym_extglob_pattern, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2355), 1, - sym__extglob_blob, - STATE(2389), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60120] = 3, + [60682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 38, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115446,6 +128397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115455,6 +128408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -115471,22 +128425,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60173] = 5, + [60736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(5662), 1, sym__special_character, - STATE(1199), 1, + STATE(1433), 1, aux_sym__literal_repeat1, - ACTIONS(3765), 5, + ACTIONS(4469), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 38, + ACTIONS(4467), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115497,6 +128450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -115525,18 +128479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60230] = 3, + [60794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 7, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115548,6 +128501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115575,30 +128530,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60283] = 3, + [60848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1263), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 40, + ACTIONS(1261), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115607,9 +128564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115623,20 +128580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60336] = 3, + [60902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115648,6 +128603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115657,6 +128614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -115673,20 +128631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60389] = 3, + [60956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115698,6 +128654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115725,16 +128683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60442] = 3, + [61010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 40, + ACTIONS(5067), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115745,9 +128709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115757,9 +128720,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115773,20 +128736,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60495] = 3, + [61070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(5373), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115797,6 +128763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -115807,9 +128774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115823,20 +128790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60548] = 3, + [61130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, - sym_file_descriptor, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, sym__concat, + STATE(1447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115847,6 +128817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -115859,7 +128830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115875,72 +128845,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60601] = 9, - ACTIONS(71), 1, + [61190] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, - anon_sym_DQUOTE, - ACTIONS(4646), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4648), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4650), 1, - anon_sym_BQUOTE, - ACTIONS(4652), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2375), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(4380), 14, - anon_sym_EQ, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, + sym__concat, + STATE(1373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(4378), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [60666] = 3, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [61250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(5670), 1, + sym__special_character, + STATE(1358), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 40, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115968,7 +128940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115981,16 +128952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60719] = 3, + [61308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116001,7 +128973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116030,32 +129001,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60772] = 3, + [61362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 6, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(1383), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5176), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 39, + ACTIONS(5174), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116064,7 +129040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -116080,23 +129055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60825] = 6, + [61422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(5662), 1, + sym__special_character, + STATE(1433), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(5067), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116107,7 +129081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116121,7 +129098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116134,17 +129110,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60884] = 3, + [61480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, sym__concat, + STATE(1447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5178), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116168,7 +129149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116184,18 +129164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60937] = 3, + [61540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 7, - sym_file_descriptor, + ACTIONS(5673), 1, + aux_sym_concatenation_token1, + ACTIONS(5676), 1, sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 38, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116206,6 +129190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -116216,9 +129201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116232,24 +129217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60990] = 6, + [61600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116260,7 +129238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116273,6 +129254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116287,22 +129269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61049] = 6, + [61654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 37, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116313,7 +129289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116326,6 +129305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116340,16 +129320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61108] = 3, + [61708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116360,6 +129340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116372,6 +129353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -116388,19 +129370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61161] = 3, + [61762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5679), 1, sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116425,7 +129411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116440,16 +129425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61214] = 3, + [61822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(5681), 1, + sym__special_character, + STATE(1448), 1, + aux_sym__literal_repeat1, + ACTIONS(5180), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(5178), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116460,6 +129449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116474,9 +129464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116490,16 +129478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61267] = 3, + [61880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5646), 1, sym__concat, + STATE(1420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116510,7 +129503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116525,7 +129517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116539,23 +129530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61320] = 6, + [61940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5640), 1, sym__concat, - STATE(1245), 1, + STATE(1367), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(5391), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 37, + ACTIONS(5389), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116566,6 +129558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -116593,16 +129586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61379] = 3, + [62000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, - sym_file_descriptor, + ACTIONS(5683), 1, + aux_sym_concatenation_token1, + ACTIONS(5686), 1, sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116613,9 +129612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116627,7 +129625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116643,22 +129640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61432] = 6, + [62060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5640), 1, sym__concat, - STATE(1244), 1, + STATE(1421), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 5, + ACTIONS(5395), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 37, + ACTIONS(5393), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116669,6 +129666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -116696,31 +129694,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61491] = 3, + [62120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 5, + ACTIONS(5689), 1, + aux_sym_concatenation_token1, + ACTIONS(5692), 1, + sym__concat, + STATE(1373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 40, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116746,34 +129748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61544] = 6, + [62180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4654), 1, - sym__concat, - STATE(1267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(5652), 1, + sym__special_character, + STATE(1313), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 38, + ACTIONS(4467), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116782,10 +129785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116797,24 +129800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61603] = 6, + [62238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116826,6 +129823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116835,9 +129834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116851,35 +129850,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61662] = 6, + [62292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(1281), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 37, + ACTIONS(1271), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116905,34 +129903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61721] = 6, + [62346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 5, + ACTIONS(5652), 1, + sym__special_character, + STATE(1313), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 37, + ACTIONS(4564), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116945,7 +129944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116958,18 +129956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61780] = 3, + [62404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116981,6 +129978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116990,7 +129989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -117007,31 +130005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61833] = 3, + [62458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(5642), 1, + sym__special_character, + STATE(1358), 1, + aux_sym__literal_repeat1, + ACTIONS(4482), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(4480), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117043,9 +130047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117058,18 +130060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61886] = 3, + [62516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(5662), 1, + sym__special_character, + STATE(1433), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(4564), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117080,7 +130084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117093,7 +130100,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [62574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, aux_sym_concatenation_token1, + ACTIONS(5542), 1, + sym__concat, + STATE(1444), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117108,18 +130167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61939] = 3, + [62634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(5662), 1, + sym__special_character, + STATE(1433), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(5695), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117130,7 +130191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117143,9 +130207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117158,23 +130220,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61992] = 3, + [62692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 5, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5699), 1, + sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 40, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -117182,7 +130249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117191,7 +130257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -117207,19 +130272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62045] = 3, + [62752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 7, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 38, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117230,7 +130294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117258,18 +130325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62098] = 3, + [62806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 7, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117281,6 +130347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117290,7 +130358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -117307,35 +130374,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62151] = 6, + [62860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1241), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4290), 5, + ACTIONS(1281), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 37, + ACTIONS(1271), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117344,6 +130410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -117359,36 +130426,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62210] = 6, + [62914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1242), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4300), 5, + ACTIONS(4554), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 37, + ACTIONS(4552), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117397,6 +130461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -117412,24 +130477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62269] = 6, + [62968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5540), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(5542), 1, sym__concat, - STATE(1244), 1, + STATE(1441), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, + ACTIONS(5395), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 37, + ACTIONS(5393), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117440,7 +130503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117450,7 +130516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -117467,22 +130532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62328] = 6, + [63028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 37, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117494,6 +130554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117503,9 +130565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117519,18 +130581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62387] = 3, + [63082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 6, + ACTIONS(4372), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 39, + ACTIONS(4370), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117543,6 +130605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117570,16 +130634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62440] = 3, + [63136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(5373), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117590,10 +130661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117603,9 +130671,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117620,21 +130688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62493] = 6, + [63196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(5648), 1, aux_sym_concatenation_token1, - ACTIONS(4656), 1, + ACTIONS(5654), 1, sym__concat, - STATE(1197), 1, + STATE(1357), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(5069), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 38, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117646,8 +130716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117657,6 +130725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -117673,31 +130742,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62552] = 3, + [63256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 5, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4374), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117709,6 +130778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117723,31 +130793,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62605] = 3, + [63310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 6, + ACTIONS(5536), 1, + aux_sym_concatenation_token1, + ACTIONS(5538), 1, + sym__concat, + STATE(1457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 39, + ACTIONS(5389), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117773,16 +130847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62658] = 3, + [63370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(4552), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117793,10 +130874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117806,9 +130884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117823,16 +130901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62711] = 3, + [63430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(4564), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117843,10 +130928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117856,9 +130938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117873,17 +130955,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62764] = 3, + [63490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(2072), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117894,7 +130982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -117905,9 +130992,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117921,69 +131008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62817] = 21, + [63550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4664), 1, - anon_sym_DOLLAR, - ACTIONS(4666), 1, - sym__special_character, - ACTIONS(4668), 1, - anon_sym_DQUOTE, - ACTIONS(4670), 1, - aux_sym_number_token1, - ACTIONS(4672), 1, - aux_sym_number_token2, - ACTIONS(4674), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4678), 1, - anon_sym_BQUOTE, - ACTIONS(4680), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4684), 1, + ACTIONS(5634), 1, + aux_sym_concatenation_token1, + ACTIONS(5701), 1, + sym__concat, + STATE(1475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(4686), 1, sym__brace_start, - STATE(2954), 1, - aux_sym__literal_repeat1, - ACTIONS(1943), 2, - sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4660), 2, + ACTIONS(1265), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4682), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1369), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4658), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2729), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 12, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117991,16 +131045,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [62906] = 3, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [63610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 5, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, + sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 40, + ACTIONS(5389), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118011,10 +131090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118041,16 +131117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62959] = 3, + [63670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1314), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118077,6 +131153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118091,17 +131168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63012] = 3, + [63724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 6, + ACTIONS(5642), 1, + sym__special_character, + STATE(1358), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 39, + ACTIONS(4564), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118113,6 +131193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -118128,7 +131209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -118141,84 +131221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63065] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4662), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4664), 1, - anon_sym_DOLLAR, - ACTIONS(4666), 1, - sym__special_character, - ACTIONS(4668), 1, - anon_sym_DQUOTE, - ACTIONS(4670), 1, - aux_sym_number_token1, - ACTIONS(4672), 1, - aux_sym_number_token2, - ACTIONS(4674), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4678), 1, - anon_sym_BQUOTE, - ACTIONS(4680), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4684), 1, - sym_test_operator, - ACTIONS(4686), 1, - sym__brace_start, - STATE(2954), 1, - aux_sym__literal_repeat1, - ACTIONS(1981), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4660), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4682), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1369), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4658), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2729), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1979), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [63154] = 3, + [63782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 5, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118245,6 +131257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118259,31 +131272,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63207] = 3, + [63836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 6, + ACTIONS(1338), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4374), 39, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118295,6 +131308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118309,30 +131323,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63260] = 3, + [63890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1263), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118341,9 +131357,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118357,98 +131373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63313] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4688), 1, - sym_extglob_pattern, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2208), 1, - sym__extglob_blob, - STATE(2439), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63416] = 6, + [63944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(5648), 1, aux_sym_concatenation_token1, - ACTIONS(4690), 1, + ACTIONS(5654), 1, sym__concat, - STATE(1267), 1, + STATE(1357), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(1263), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 38, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118459,7 +131401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -118470,6 +131411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118485,18 +131427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63475] = 3, + [64004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 40, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118520,6 +131461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -118537,16 +131479,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63528] = 3, + [64058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 40, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118558,8 +131507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118569,9 +131516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118585,18 +131532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63581] = 3, + [64118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118607,7 +131554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118620,9 +131566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118636,17 +131582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63634] = 3, + [64172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118657,7 +131605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118670,6 +131617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -118687,17 +131635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63687] = 3, + [64226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118708,8 +131656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118737,46 +131686,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63740] = 7, + [64280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1334), 6, sym_file_descriptor, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4696), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4694), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118791,16 +131737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63801] = 3, + [64334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(5703), 1, + aux_sym_concatenation_token1, + ACTIONS(5706), 1, + sym__concat, + STATE(1412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 40, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118811,7 +131762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118841,35 +131791,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63854] = 7, + [64394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - ACTIONS(4710), 1, - anon_sym_LPAREN, - STATE(1224), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1193), 5, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1183), 36, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118881,6 +131827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118895,17 +131842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63915] = 3, + [64448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 39, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118916,8 +131863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118927,7 +131875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -118944,17 +131891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63968] = 3, + [64502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5709), 1, + sym__concat, + STATE(1412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 40, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118965,7 +131918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118995,17 +131947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64021] = 3, + [64562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 39, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119016,8 +131968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119045,74 +131998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64074] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4717), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, - anon_sym_BQUOTE, - ACTIONS(4725), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2263), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(4380), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(4378), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [64139] = 3, + [64616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119123,7 +132018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119133,7 +132031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119150,19 +132047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64192] = 3, + [64670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 7, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119173,7 +132069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119183,7 +132082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119200,18 +132098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64245] = 3, + [64724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119222,8 +132121,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119233,7 +132133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119250,22 +132149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64298] = 6, + [64778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(5644), 1, aux_sym_concatenation_token1, - ACTIONS(4614), 1, + ACTIONS(5711), 1, sym__concat, - STATE(1402), 1, + STATE(1412), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(1267), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 38, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119303,22 +132203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64357] = 6, + [64838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(4614), 1, + ACTIONS(5713), 1, sym__concat, - STATE(1323), 1, + STATE(1363), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + ACTIONS(1267), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 38, + ACTIONS(1265), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119329,9 +132231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119341,6 +132242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -119357,16 +132259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64416] = 3, + [64898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(1326), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 40, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119392,6 +132294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119407,17 +132310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64469] = 3, + [64952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119428,8 +132330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119439,7 +132343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119456,18 +132359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64522] = 3, + [65006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119478,8 +132382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119507,91 +132412,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64575] = 28, - ACTIONS(71), 1, + [65060] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, + ACTIONS(5614), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + sym_variable_name, + STATE(3393), 1, + sym_string, + ACTIONS(5717), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5715), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 29, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [65124] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + sym_variable_name, + STATE(3393), 1, + sym_string, + ACTIONS(5717), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(381), 1, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - ACTIONS(4729), 1, - sym_extglob_pattern, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2587), 1, - sym__expression, - STATE(2588), 1, - sym__extglob_blob, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, + ACTIONS(5715), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 29, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64678] = 3, + sym_word, + [65188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119614,6 +132557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119630,19 +132574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64731] = 3, + [65242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119653,8 +132596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119682,17 +132626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64784] = 3, + [65296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(5662), 1, + sym__special_character, + STATE(1433), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(5721), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119703,8 +132650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119717,9 +132666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119732,17 +132679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64837] = 3, + [65354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119753,8 +132700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119782,30 +132730,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64890] = 3, + [65408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(5652), 1, + sym__special_character, + STATE(1313), 1, + aux_sym__literal_repeat1, + ACTIONS(4548), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(4546), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119817,9 +132770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119832,16 +132783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64943] = 3, + [65466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 40, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119852,6 +132803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -119882,17 +132834,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64996] = 3, + [65520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(5725), 1, + sym__special_character, + STATE(1433), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119903,8 +132858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119914,11 +132871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119930,19 +132886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65049] = 3, + [65578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119953,8 +132907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119982,16 +132938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65102] = 3, + [65632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120002,6 +132958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120032,67 +132989,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65155] = 21, + [65686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(5642), 1, + sym__special_character, + STATE(1358), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4740), 1, anon_sym_DOLLAR, - ACTIONS(4743), 1, - sym__special_character, - ACTIONS(4746), 1, anon_sym_DQUOTE, - ACTIONS(4749), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4752), 1, aux_sym_number_token2, - ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4758), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4761), 1, anon_sym_BQUOTE, - ACTIONS(4764), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4770), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [65744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4773), 1, sym__brace_start, - STATE(2954), 1, - aux_sym__literal_repeat1, - ACTIONS(1900), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4734), 2, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4767), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1369), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2729), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1898), 12, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120100,16 +133074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [65244] = 3, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [65798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120120,6 +133113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120150,17 +133144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65297] = 3, + [65852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120171,8 +133164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -120200,40 +133195,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65350] = 11, + [65906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - sym_variable_name, - ACTIONS(4778), 1, - aux_sym_heredoc_redirect_token1, - STATE(5393), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4201), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + ACTIONS(1253), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120241,9 +133227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120257,41 +133244,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65419] = 11, + [65960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - sym_variable_name, - ACTIONS(4780), 1, - aux_sym_heredoc_redirect_token1, - STATE(5393), 1, - sym_subscript, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4201), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3588), 3, + ACTIONS(5540), 1, + aux_sym_concatenation_token1, + ACTIONS(5728), 1, + sym__concat, + STATE(1451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120299,7 +133283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -120316,16 +133300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65488] = 3, + [66020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120336,7 +133321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120365,98 +133349,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65541] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4688), 1, - sym_extglob_pattern, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2208), 1, - sym__extglob_blob, - STATE(2520), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65644] = 6, + [66074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(5634), 1, aux_sym_concatenation_token1, - ACTIONS(4583), 1, + ACTIONS(5730), 1, sym__concat, - STATE(1215), 1, + STATE(1475), 1, aux_sym_concatenation_repeat1, - ACTIONS(4352), 5, + ACTIONS(1288), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120494,16 +133405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65703] = 3, + [66134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(5540), 1, + aux_sym_concatenation_token1, + ACTIONS(5732), 1, + sym__concat, + STATE(1451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 40, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120527,7 +133443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -120544,91 +133459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65756] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4688), 1, - sym_extglob_pattern, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2208), 1, - sym__extglob_blob, - STATE(2504), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65859] = 3, + [66194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 40, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120639,10 +133485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -120669,17 +133513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65912] = 3, + [66254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5648), 1, + aux_sym_concatenation_token1, + ACTIONS(5654), 1, sym__concat, + STATE(1333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(2094), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120690,7 +133540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -120704,7 +133553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120719,91 +133567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65965] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4688), 1, - sym_extglob_pattern, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2208), 1, - sym__extglob_blob, - STATE(2723), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [66068] = 3, + [66314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5734), 1, sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1265), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120814,9 +133593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -120828,7 +133606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120844,16 +133621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66121] = 3, + [66374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(5736), 1, + sym__special_character, + STATE(1448), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120879,9 +133660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120893,35 +133672,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66174] = 5, + [66432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4704), 4, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4784), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120929,9 +133706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120946,18 +133725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66231] = 3, + [66486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120968,7 +133745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -120978,7 +133758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -120995,21 +133774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66284] = 5, + [66540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - sym__special_character, - STATE(1199), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 5, + ACTIONS(5739), 1, + aux_sym_concatenation_token1, + ACTIONS(5742), 1, + sym__concat, + STATE(1451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 38, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121020,6 +133801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121032,10 +133814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121048,16 +133830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66341] = 3, + [66600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121081,55 +133863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121148,18 +133881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66447] = 3, + [66654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 7, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 38, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121170,7 +133901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121180,7 +133914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121197,19 +133930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66500] = 3, + [66708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121221,6 +133954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121248,70 +133983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66553] = 3, + [66762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4591), 1, - sym__special_character, - STATE(1210), 1, - aux_sym__literal_repeat1, - ACTIONS(4300), 5, - sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 38, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121322,6 +134003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121336,7 +134018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121350,18 +134034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66663] = 3, + [66816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 7, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121372,7 +134054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121382,7 +134067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121399,21 +134083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66716] = 5, + [66870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - sym__special_character, - STATE(1199), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 5, + ACTIONS(5536), 1, + aux_sym_concatenation_token1, + ACTIONS(5745), 1, + sym__concat, + STATE(1347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 38, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121440,55 +134126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 7, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -121502,17 +134139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66826] = 3, + [66930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 39, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121523,8 +134159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121552,68 +134190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66879] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4790), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4788), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [66936] = 3, + [66984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121624,6 +134210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121654,16 +134241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66989] = 3, + [67038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(5634), 1, + aux_sym_concatenation_token1, + ACTIONS(5636), 1, + sym__concat, + STATE(1398), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 40, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121674,10 +134268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121687,7 +134278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -121703,19 +134293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67042] = 3, + [67098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121726,7 +134315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121754,16 +134346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67095] = 3, + [67152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 40, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121787,6 +134379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121804,21 +134397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67148] = 6, + [67206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, - aux_sym_concatenation_token1, - ACTIONS(4792), 1, - sym__concat, - STATE(1197), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 38, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121829,6 +134417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121841,8 +134430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121857,17 +134448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67207] = 3, + [67260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121878,8 +134468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121889,6 +134481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121905,18 +134498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67260] = 3, + [67314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 40, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121927,7 +134520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121940,6 +134532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121957,17 +134550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67313] = 3, + [67368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121978,8 +134571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121989,6 +134583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122005,97 +134600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [67366] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2578), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [67466] = 6, + [67422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(5664), 1, aux_sym_concatenation_token1, - ACTIONS(4796), 1, + ACTIONS(5666), 1, sym__concat, - STATE(1538), 1, + STATE(1447), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, + ACTIONS(5069), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 36, + ACTIONS(5067), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122106,6 +134627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -122131,23 +134653,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67524] = 6, + [67482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(5536), 1, aux_sym_concatenation_token1, - ACTIONS(4796), 1, + ACTIONS(5538), 1, sym__concat, - STATE(1463), 1, + STATE(1311), 1, aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 36, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122159,6 +134681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122168,6 +134692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122184,16 +134709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67582] = 3, + [67542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122204,8 +134730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122233,84 +134760,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67634] = 22, - ACTIONS(71), 1, + [67596] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, - sym_word, - ACTIONS(4804), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(1383), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, anon_sym_DOLLAR, - ACTIONS(4810), 1, sym__special_character, - ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(4819), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4822), 1, aux_sym_number_token2, - ACTIONS(4825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4828), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4831), 1, anon_sym_BQUOTE, - ACTIONS(4834), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4840), 1, - sym_test_operator, - ACTIONS(4843), 1, - sym__brace_start, - STATE(2974), 1, - aux_sym__literal_repeat1, - ACTIONS(4801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4816), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4837), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1410), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1898), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1900), 8, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - STATE(2906), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [67724] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [67656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 39, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122321,8 +134834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122332,6 +134847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122348,23 +134864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67776] = 5, + [67710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 6, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 36, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122376,6 +134887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122385,10 +134898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122400,17 +134914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67832] = 3, + [67764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 39, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122421,6 +134936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122436,6 +134952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122450,21 +134967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67884] = 5, + [67818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(5662), 1, sym__special_character, - STATE(1444), 1, + STATE(1433), 1, aux_sym__literal_repeat1, - ACTIONS(4086), 6, + ACTIONS(5395), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 36, + ACTIONS(5393), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122475,7 +134991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122501,20 +135020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67940] = 5, + [67876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(5747), 1, + aux_sym_concatenation_token1, + ACTIONS(5750), 1, + sym__concat, + STATE(1475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122525,7 +135047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -122536,10 +135057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122551,20 +135072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67996] = 5, + [67936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - sym__special_character, - STATE(1492), 1, - aux_sym__literal_repeat1, - ACTIONS(4346), 4, + ACTIONS(1334), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 38, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122575,6 +135094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122587,9 +135107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122601,91 +135124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [68052] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - ACTIONS(4853), 1, - sym__regex_no_space, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2514), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68152] = 3, + [67990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 39, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122696,6 +135145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122711,6 +135161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122725,94 +135176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68204] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4853), 1, - sym__regex_no_space, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2455), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68304] = 5, + [68044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 6, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 36, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122823,7 +135196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122833,10 +135209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122848,22 +135225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68360] = 6, + [68098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1494), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4346), 4, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 37, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122874,7 +135247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122886,6 +135262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122901,20 +135278,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68418] = 5, + [68152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, + ACTIONS(5681), 1, sym__special_character, - STATE(1415), 1, + STATE(1448), 1, aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(5069), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(5067), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122925,8 +135302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122936,7 +135315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122951,147 +135329,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68474] = 11, - ACTIONS(71), 1, + [68210] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, - anon_sym_LT_LT, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4857), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 5, + sym_file_descriptor, sym_variable_name, - STATE(5477), 1, - sym_subscript, - STATE(4261), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3586), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5178), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT_DASH, - STATE(4326), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 10, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3588), 21, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [68542] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4853), 1, - sym__regex_no_space, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2629), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68642] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [68269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1346), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123102,7 +135406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -123113,6 +135416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -123129,18 +135433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68694] = 3, + [68322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1342), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123152,8 +135457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123179,17 +135482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68746] = 3, + [68375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123200,9 +135505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123228,17 +135532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68798] = 3, + [68428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123261,6 +135566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -123278,17 +135584,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68850] = 3, + [68481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123327,21 +135634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68902] = 5, + [68534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 6, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 36, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123362,10 +135666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123377,17 +135682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68958] = 3, + [68587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123399,8 +135707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123426,17 +135732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69010] = 3, + [68640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123447,9 +135755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123459,6 +135766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -123476,20 +135784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69062] = 5, + [68693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 5, + ACTIONS(1334), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 37, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123500,7 +135806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -123511,10 +135816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123526,23 +135832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69118] = 6, + [68746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, - aux_sym_concatenation_token1, - ACTIONS(4796), 1, - sym__concat, - STATE(1463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 36, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123565,6 +135868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123578,17 +135882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69176] = 3, + [68799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123628,16 +135934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69228] = 3, + [68852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1253), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 39, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123649,8 +135957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123676,17 +135982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69280] = 3, + [68905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1326), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123698,8 +136007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123725,17 +136032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69332] = 3, + [68958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123746,7 +136056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -123775,89 +136084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69384] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - ACTIONS(4860), 1, - sym__regex_no_space, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2575), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69484] = 3, + [69011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 39, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123882,6 +136118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123897,20 +136134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69536] = 5, + [69064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 5, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 37, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123921,8 +136154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123935,7 +136169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123948,33 +136184,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69592] = 5, + [69117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4704), 4, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4784), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123982,7 +136216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -123998,74 +136232,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69648] = 6, - ACTIONS(71), 1, + [69170] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2974), 1, - aux_sym__literal_repeat1, - STATE(1410), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2906), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1979), 10, + ACTIONS(1338), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1981), 22, + [69223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [69706] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [69276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 6, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124076,7 +136354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124086,10 +136367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124102,21 +136384,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69762] = 5, + [69329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 2, + ACTIONS(1354), 7, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3580), 18, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124130,8 +136432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4788), 21, + [69382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124153,161 +136466,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [69818] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2440), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69918] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4871), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4873), 1, sym__special_character, - ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(4877), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4879), 1, aux_sym_number_token2, - ACTIONS(4881), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4883), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4885), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4891), 1, - sym_test_operator, - ACTIONS(4893), 1, - sym__brace_start, - STATE(4573), 1, - aux_sym__literal_repeat1, - STATE(4703), 1, - sym_concatenation, - ACTIONS(2335), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4867), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4889), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4865), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(4525), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [70006] = 6, + [69435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4897), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124318,8 +136504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124331,6 +136519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124345,33 +136534,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70064] = 6, + [69488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 5, + ACTIONS(1294), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 36, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124383,6 +136569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124397,83 +136584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70122] = 21, + [69541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4871), 1, - anon_sym_DOLLAR, - ACTIONS(4873), 1, - sym__special_character, - ACTIONS(4875), 1, - anon_sym_DQUOTE, - ACTIONS(4877), 1, - aux_sym_number_token1, - ACTIONS(4879), 1, - aux_sym_number_token2, - ACTIONS(4881), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4885), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4893), 1, - sym__brace_start, - ACTIONS(4901), 1, - sym_test_operator, - STATE(4575), 1, - aux_sym__literal_repeat1, - STATE(4702), 1, - sym_concatenation, - ACTIONS(2224), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4867), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4889), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4899), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [70210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124484,8 +136604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124511,23 +136633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70262] = 6, + [69594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4903), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1338), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124538,8 +136654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124551,6 +136669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124565,21 +136684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70320] = 6, + [69647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1497), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4352), 4, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124602,6 +136718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124617,21 +136734,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70378] = 6, + [69700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 1, - aux_sym_concatenation_token1, - ACTIONS(4908), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(5753), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 37, + ACTIONS(4564), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124642,8 +136758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124653,10 +136770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124669,16 +136786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70436] = 3, + [69757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124689,8 +136806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124700,6 +136818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124716,22 +136835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70488] = 5, + [69810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4911), 1, - sym__special_character, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124742,7 +136858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -124753,9 +136868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124767,18 +136885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70544] = 3, + [69863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 39, + ACTIONS(5373), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124790,8 +136913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124801,6 +136922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -124816,35 +136938,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70596] = 6, + [69922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1493), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 5, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 36, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124853,9 +136972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124870,16 +136989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70654] = 3, + [69975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124890,8 +137009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124917,18 +137038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70706] = 3, + [70028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 39, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124939,6 +137059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -124951,9 +137072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124968,21 +137089,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70758] = 7, + [70081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1298), 5, sym_file_descriptor, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4696), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124990,23 +137120,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4694), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125021,16 +137189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70818] = 3, + [70187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 39, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125053,6 +137221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125070,22 +137239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70870] = 6, + [70240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, - aux_sym_concatenation_token1, - ACTIONS(4914), 1, - sym__concat, - STATE(1528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 36, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125106,8 +137271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125122,16 +137289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70928] = 3, + [70293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125142,6 +137309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125171,30 +137339,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70980] = 3, + [70346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(4532), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(4530), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125203,9 +137372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125220,16 +137389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71032] = 3, + [70399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(5755), 1, + sym__special_character, + STATE(1522), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 39, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125240,6 +137412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125254,9 +137427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125268,17 +137439,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71084] = 3, + [70456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 39, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125289,7 +137467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -125300,9 +137477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125316,18 +137493,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71136] = 3, + [70515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, - sym_file_descriptor, + ACTIONS(5758), 1, + aux_sym_concatenation_token1, + ACTIONS(5760), 1, sym__concat, + STATE(1640), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(5393), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125352,7 +137533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125367,68 +137547,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71188] = 6, - ACTIONS(71), 1, + [70574] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2974), 1, - aux_sym__literal_repeat1, - STATE(1410), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2906), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1941), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1943), 22, + ACTIONS(1350), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [71246] = 3, + sym_word, + [70627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(5758), 1, + aux_sym_concatenation_token1, + ACTIONS(5760), 1, + sym__concat, + STATE(1645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 39, + ACTIONS(5389), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125451,7 +137634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -125468,33 +137650,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71298] = 6, + [70686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1493), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 36, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125506,6 +137685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125520,33 +137700,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71356] = 6, + [70739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5762), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5764), 1, sym__concat, - STATE(1498), 1, + STATE(1582), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 36, + ACTIONS(1265), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125555,7 +137736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -125571,34 +137751,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71414] = 6, + [70798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(3909), 1, + ACTIONS(5640), 1, sym__concat, - STATE(1493), 1, + STATE(1661), 1, aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, + ACTIONS(4554), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 36, + ACTIONS(4552), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125624,37 +137806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71472] = 7, + [70857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, - anon_sym_DQUOTE, - STATE(2897), 1, - sym_string, - ACTIONS(4918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4916), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125662,10 +137838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -125677,17 +137856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71532] = 3, + [70910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125698,6 +137877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -125726,16 +137906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71584] = 3, + [70963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125746,8 +137926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -125773,18 +137955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71636] = 3, + [71016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125795,8 +137976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -125822,18 +138005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71688] = 3, + [71069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(2096), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(2094), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125844,8 +138026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -125855,9 +138039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125871,18 +138055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71740] = 3, + [71122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1263), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 39, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125893,6 +138076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125907,7 +138091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125921,18 +138104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71792] = 3, + [71175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, sym__concat, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125955,7 +138144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125971,17 +138159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71844] = 3, + [71234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 38, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126020,16 +138209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71896] = 3, + [71287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1330), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 39, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126040,7 +138231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -126069,93 +138259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71948] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(4920), 1, - sym__regex_no_space, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2605), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72048] = 5, + [71340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(5753), 1, sym__special_character, - STATE(1456), 1, + STATE(1608), 1, aux_sym__literal_repeat1, - ACTIONS(4086), 5, + ACTIONS(4469), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 37, + ACTIONS(4467), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126166,8 +138283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126177,6 +138295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126191,35 +138310,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72104] = 6, + [71397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(1322), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 36, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126228,9 +138343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126244,44 +138359,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72162] = 6, - ACTIONS(71), 1, + [71450] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, - anon_sym_LPAREN, - STATE(1502), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1183), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1193), 25, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -126289,101 +138396,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [72220] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1502), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1183), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1193), 25, + [71503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [72276] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1501), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(231), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(268), 25, + [71556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -126391,24 +138497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [72332] = 3, + sym_word, + [71609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126419,7 +138533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -126430,6 +138543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126446,18 +138560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72384] = 3, + [71662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126469,8 +138584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126480,6 +138593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126497,92 +138611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72436] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2547), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72536] = 5, + [71715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, - sym__special_character, - STATE(1492), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126593,6 +138631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126607,7 +138646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126619,35 +138660,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72592] = 6, + [71768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4929), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1350), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 36, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126656,9 +138693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126672,22 +138709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72650] = 6, + [71821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4931), 1, - sym__concat, - STATE(1267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(1346), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 37, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126710,6 +138745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126725,16 +138761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72708] = 3, + [71874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1358), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126746,8 +138784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126757,9 +138793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126773,22 +138809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72760] = 5, + [71927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym__special_character, - STATE(1530), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 6, + ACTIONS(1306), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 36, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126809,9 +138843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126823,23 +138860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72816] = 6, + [71980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(1267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1263), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 37, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126850,7 +138881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126860,6 +138894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126875,33 +138910,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72874] = 6, + [72033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(4937), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(5462), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 36, + ACTIONS(5460), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -126929,20 +138961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72932] = 5, + [72086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 5, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 37, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126953,7 +138983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -126967,7 +138996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126980,21 +139011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72988] = 6, + [72139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(1494), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(1314), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127015,8 +139043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127030,45 +139060,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73046] = 6, - ACTIONS(71), 1, + [72192] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, - aux_sym_concatenation_token1, - ACTIONS(4939), 1, + ACTIONS(1342), 7, + sym_file_descriptor, sym__concat, - STATE(1557), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 16, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1216), 25, + [72245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -127076,102 +139147,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [73104] = 6, - ACTIONS(71), 1, + sym_word, + [72298] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(5762), 1, aux_sym_concatenation_token1, - ACTIONS(4941), 1, + ACTIONS(5774), 1, sym__concat, - STATE(1557), 1, + STATE(1582), 1, aux_sym_concatenation_repeat1, - ACTIONS(1208), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1210), 25, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [73162] = 5, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [72357] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1501), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, + ACTIONS(5664), 1, aux_sym_concatenation_token1, - ACTIONS(1220), 16, + ACTIONS(5666), 1, + sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1222), 25, + [72416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -127179,25 +139306,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [73218] = 3, + sym_word, + [72475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 38, + ACTIONS(2072), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127218,9 +139356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127234,23 +139372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73270] = 6, + [72534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(1448), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(5768), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 37, + ACTIONS(5766), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127261,8 +139393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127272,6 +139406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127288,29 +139423,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73328] = 3, + [72587] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(4272), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5776), 1, + sym_variable_name, + STATE(6746), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5148), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127318,10 +139463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127335,18 +139479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73380] = 3, + [72654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127386,33 +139530,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [73432] = 6, + [72707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3781), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3779), 36, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127424,6 +139565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127438,33 +139580,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73490] = 6, + [72760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1493), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3777), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3775), 36, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127476,6 +139615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127490,21 +139630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73548] = 6, + [72813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 37, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127526,8 +139662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127542,21 +139680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73606] = 6, + [72866] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(1448), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(5753), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(5393), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127567,8 +139704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127578,10 +139716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127594,16 +139732,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73664] = 3, + [72923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(1326), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 39, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127626,9 +139764,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127642,18 +139780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73716] = 3, + [72976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 38, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127665,6 +139803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127692,17 +139832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [73768] = 3, + [73029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1334), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127723,6 +139864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -127739,22 +139881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73820] = 5, + [73082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 5, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 37, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127776,10 +139914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127791,31 +139930,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73876] = 3, + [73135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(4701), 1, sym__concat, + STATE(1715), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127824,9 +139968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127841,22 +139985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73928] = 3, + [73194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(4554), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 39, + ACTIONS(4552), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -127864,6 +140009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127872,9 +140018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127888,19 +140034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73980] = 3, + [73247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5772), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(5770), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127911,7 +140055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127923,7 +140070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127939,17 +140085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74032] = 3, + [73300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127970,9 +140121,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127986,84 +140137,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74084] = 3, - ACTIONS(3), 1, + [73359] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + ACTIONS(5781), 1, + sym_extglob_pattern, + STATE(2648), 1, + sym__extglob_blob, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3004), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [74136] = 6, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - aux_sym_concatenation_token1, - ACTIONS(3909), 1, - sym__concat, - STATE(1498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 36, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128075,6 +140248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128089,16 +140263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74194] = 3, + [73515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128109,6 +140283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128138,77 +140313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74246] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4857), 1, - sym_variable_name, - ACTIONS(4947), 1, - anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - STATE(5477), 1, - sym_subscript, - ACTIONS(4945), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4261), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3588), 21, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [74316] = 5, + [73568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 1, - sym__special_character, - STATE(1552), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 4, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128234,7 +140348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128247,17 +140363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74372] = 3, + [73621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1318), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128296,17 +140413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74424] = 3, + [73674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128317,7 +140433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128343,39 +140462,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74476] = 7, + [73727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, - anon_sym_DQUOTE, - STATE(2897), 1, - sym_string, - ACTIONS(4918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, + ACTIONS(5783), 1, + aux_sym_concatenation_token1, + ACTIONS(5786), 1, + sym__concat, + STATE(1582), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4916), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 28, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128383,10 +140498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -128397,23 +140514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [74536] = 6, + [73786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, - aux_sym_concatenation_token1, - ACTIONS(4956), 1, - sym__concat, - STATE(1528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 36, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128424,6 +140537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128434,8 +140548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128450,17 +140566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74594] = 3, + [73839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128472,6 +140587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128481,6 +140598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -128497,23 +140615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74646] = 5, + [73892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - sym__special_character, - STATE(1530), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 6, + ACTIONS(1350), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128525,6 +140637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128534,9 +140648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128548,90 +140665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [74702] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4962), 1, - sym__regex_no_space, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2396), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74802] = 3, + [73945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 40, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128642,10 +140687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128655,8 +140698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128670,19 +140715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74854] = 3, + [73998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128693,6 +140737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128703,6 +140748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -128719,18 +140765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74906] = 3, + [74051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128755,6 +140800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128770,16 +140816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74958] = 3, + [74104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128790,9 +140837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128818,73 +140864,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75010] = 9, - ACTIONS(71), 1, + [74157] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(1253), 6, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(5477), 1, - sym_subscript, - STATE(4261), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4326), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3580), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3584), 7, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(3636), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(3588), 15, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [75074] = 3, + sym_word, + [74210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128896,6 +140937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128923,22 +140966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75126] = 6, + [74263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, - aux_sym_concatenation_token1, - ACTIONS(4964), 1, - sym__concat, - STATE(1528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 36, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128950,6 +140987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128959,8 +140998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128975,16 +141016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75184] = 3, + [74316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129007,9 +141048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129023,18 +141064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75236] = 3, + [74369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129046,6 +141087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129055,6 +141098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -129071,23 +141115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75288] = 5, + [74422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 6, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 36, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129098,6 +141137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129108,10 +141148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129123,21 +141164,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75344] = 5, + [74475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - sym__special_character, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(4300), 5, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 37, + ACTIONS(4370), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129148,7 +141192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129159,9 +141202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129173,18 +141218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75400] = 3, + [74534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, + ACTIONS(5762), 1, + aux_sym_concatenation_token1, + ACTIONS(5789), 1, sym__concat, + STATE(1528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 39, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129195,7 +141245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129208,7 +141257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129224,17 +141272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75452] = 3, + [74593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129245,6 +141293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129273,21 +141322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75504] = 5, + [74646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym__special_character, - STATE(1530), 1, - aux_sym__literal_repeat1, - ACTIONS(4300), 6, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 36, + ACTIONS(4467), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129308,9 +141358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129322,18 +141374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75560] = 3, + [74705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(1350), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 39, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129356,9 +141407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129372,22 +141423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75612] = 5, + [74758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - sym__special_character, - STATE(1444), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 6, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 36, + ACTIONS(2094), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129412,6 +141465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129424,16 +141478,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75668] = 3, + [74817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5176), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 39, + ACTIONS(5174), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129445,8 +141505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129473,20 +141531,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75720] = 5, + [74876] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5791), 1, + anon_sym_DQUOTE, + ACTIONS(5793), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5795), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5797), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2865), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5435), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5433), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [74941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, + ACTIONS(5801), 1, sym__special_character, - STATE(1415), 1, + STATE(1604), 1, aux_sym__literal_repeat1, - ACTIONS(4232), 5, + ACTIONS(1364), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 37, + ACTIONS(1362), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129497,8 +141610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129524,89 +141639,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75776] = 27, - ACTIONS(71), 1, + [74998] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1318), 7, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4853), 1, - sym__regex_no_space, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2454), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75876] = 3, + sym_word, + [75051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(5753), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(5721), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129617,8 +141713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129628,11 +141725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129644,21 +141740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75928] = 5, + [75108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, - sym__special_character, - STATE(1552), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(2074), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(2072), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129682,9 +141774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129697,16 +141791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75984] = 3, + [75161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(5804), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1362), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129729,11 +141827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129746,17 +141843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76036] = 3, + [75218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129768,6 +141864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129795,17 +141893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76088] = 3, + [75271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129817,6 +141914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129844,30 +141943,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76140] = 3, + [75324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(4465), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 39, + ACTIONS(4463), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129876,9 +141976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129893,42 +141993,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76192] = 5, - ACTIONS(71), 1, + [75377] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1557), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4969), 2, + ACTIONS(1298), 5, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 16, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1200), 25, + [75430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -129936,24 +142079,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [76248] = 3, + sym_word, + [75483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 38, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129978,6 +142128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129992,86 +142143,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76299] = 8, - ACTIONS(3), 1, + [75536] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, - sym_file_descriptor, - ACTIONS(4972), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, + sym_test_operator, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5811), 1, + sym_extglob_pattern, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2950), 1, + sym__extglob_blob, + STATE(2963), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [76360] = 8, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1318), 5, sym_file_descriptor, - ACTIONS(4975), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130079,11 +142249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130098,17 +142268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76421] = 3, + [75692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130120,6 +142289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130129,6 +142300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130146,33 +142318,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76472] = 8, + [75745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5753), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, - ACTIONS(4978), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130180,13 +142353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130199,81 +142370,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76533] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [76584] = 8, + [75802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1326), 6, sym_file_descriptor, - ACTIONS(4981), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130281,11 +142401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130299,69 +142418,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76645] = 26, + [75855] = 28, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1009), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1021), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(4640), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2096), 1, + ACTIONS(5781), 1, + sym_extglob_pattern, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2382), 1, + STATE(2648), 1, + sym__extglob_blob, + STATE(3051), 1, sym__expression, - ACTIONS(342), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -130371,33 +142495,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [76742] = 8, + [75958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1326), 6, sym_file_descriptor, - ACTIONS(4984), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130405,11 +142526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130424,30 +142545,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76803] = 3, + [76011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(4372), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(4370), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130456,6 +142578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -130472,33 +142595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76854] = 8, + [76064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1253), 6, sym_file_descriptor, - ACTIONS(4987), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130506,11 +142626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130524,69 +142643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76915] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4924), 1, - aux_sym_concatenation_token1, - ACTIONS(4990), 1, - sym__concat, - STATE(1557), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1210), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [76972] = 3, + [76117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130598,6 +142666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130623,34 +142693,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77023] = 8, + [76170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1253), 7, sym_file_descriptor, - ACTIONS(4992), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130658,11 +142726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130677,17 +142745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77084] = 3, + [76223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 6, + ACTIONS(1326), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 37, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130708,6 +142777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130725,294 +142795,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77135] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2326), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77232] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2611), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77329] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2241), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77426] = 5, + [76276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(5776), 1, sym_variable_name, + STATE(6746), 1, + sym_subscript, + ACTIONS(4261), 2, sym_test_operator, sym__brace_start, - ACTIONS(3580), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4788), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [77481] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4995), 1, - sym__special_character, - STATE(1707), 1, - aux_sym__literal_repeat1, - ACTIONS(4346), 5, + ACTIONS(4348), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(5148), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131022,9 +142832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4247), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131036,89 +142850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [77536] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2613), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77633] = 3, + [76341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131140,6 +142883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131157,37 +142901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77684] = 5, + [76394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 3, + ACTIONS(4554), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4790), 3, - sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3580), 18, + ACTIONS(4552), 40, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4788), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131197,7 +142921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131207,17 +142934,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [77739] = 3, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5813), 1, + aux_sym_concatenation_token1, + ACTIONS(5815), 1, sym__concat, + STATE(1638), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(5389), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131238,9 +142987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131255,33 +143004,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77790] = 8, + [76506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5817), 1, + sym__special_character, + STATE(1522), 1, + aux_sym__literal_repeat1, + ACTIONS(5478), 4, sym_file_descriptor, - ACTIONS(4997), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131289,13 +143039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131307,18 +143054,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77851] = 3, + [76563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5813), 1, + aux_sym_concatenation_token1, + ACTIONS(5815), 1, sym__concat, + STATE(1637), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131339,9 +143092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131356,17 +143109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77902] = 3, + [76622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 6, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 37, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131377,6 +143130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -131390,6 +143144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131404,78 +143159,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77953] = 3, - ACTIONS(71), 1, + [76675] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 27, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5821), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [78004] = 8, + sym_word, + [76736] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(5826), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5828), 1, sym_file_descriptor, - ACTIONS(5000), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -131486,9 +143235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, + ACTIONS(5821), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -131505,33 +143267,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78065] = 8, + [76797] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5781), 1, + sym_extglob_pattern, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2648), 1, + sym__extglob_blob, + STATE(3333), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5813), 1, + aux_sym_concatenation_token1, + ACTIONS(5833), 1, + sym__concat, + STATE(1649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, - ACTIONS(5003), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131539,8 +143377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -131558,17 +143395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78126] = 3, + [76959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 6, - sym_file_descriptor, + ACTIONS(5813), 1, + aux_sym_concatenation_token1, + ACTIONS(5835), 1, sym__concat, + STATE(1649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131589,9 +143431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131606,104 +143448,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78177] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2535), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78274] = 8, + [77018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(4372), 5, sym_file_descriptor, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131711,8 +143480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -131730,19 +143498,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78335] = 5, + [77071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, - sym__special_character, - STATE(1591), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(5758), 1, + aux_sym_concatenation_token1, + ACTIONS(5837), 1, + sym__concat, + STATE(1659), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1265), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131753,8 +143523,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131767,6 +143538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131778,35 +143550,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78390] = 8, + [77130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1358), 5, sym_file_descriptor, - ACTIONS(5012), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131814,11 +143583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131833,16 +143601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78451] = 3, + [77183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131853,8 +143621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131881,17 +143651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78502] = 3, + [77236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 6, + ACTIONS(5753), 1, + sym__special_character, + STATE(1608), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(5695), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131903,6 +143676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131912,10 +143687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131927,35 +143702,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78553] = 8, + [77293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1298), 6, sym_file_descriptor, - ACTIONS(5015), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131963,11 +143734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131981,22 +143751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78614] = 6, + [77346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(5758), 1, aux_sym_concatenation_token1, - ACTIONS(5018), 1, + ACTIONS(5839), 1, sym__concat, - STATE(1454), 1, + STATE(1659), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 36, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132008,6 +143779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132033,438 +143806,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78671] = 6, - ACTIONS(71), 1, + [77405] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, - aux_sym_concatenation_token1, - ACTIONS(5020), 1, - sym__concat, - STATE(1557), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1216), 25, + ACTIONS(5841), 1, + sym__special_character, + STATE(1646), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [78728] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2241), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78825] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [77462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5478), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2521), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78922] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2497), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79019] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2608), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79116] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [77521] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, + ACTIONS(5848), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, + ACTIONS(5852), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5854), 1, anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2441), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(5856), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2862), 3, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [79213] = 7, + ACTIONS(5435), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5433), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [77586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5858), 1, + aux_sym_concatenation_token1, + ACTIONS(5861), 1, + sym__concat, + STATE(1649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, sym_file_descriptor, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132472,8 +144002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -132491,87 +144020,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79272] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2471), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79369] = 3, + [77645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(1714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5470), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 38, + ACTIONS(5468), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132593,7 +144056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -132609,18 +144071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79420] = 3, + [77704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132631,6 +144094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -132641,6 +144105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132658,33 +144123,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79471] = 8, + [77757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1302), 6, sym_file_descriptor, - ACTIONS(5022), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132692,11 +144154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132710,34 +144171,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79532] = 8, + [77810] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, + aux_sym_concatenation_token1, ACTIONS(4701), 1, + sym__concat, + STATE(1715), 1, + aux_sym_concatenation_repeat1, + ACTIONS(278), 5, sym_file_descriptor, - ACTIONS(5025), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(241), 37, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132745,8 +144208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -132764,68 +144226,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79593] = 26, - ACTIONS(71), 1, + [77869] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, + ACTIONS(5868), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5870), 1, anon_sym_DOLLAR, - ACTIONS(254), 1, + ACTIONS(5872), 1, + sym__special_character, + ACTIONS(5874), 1, + anon_sym_DQUOTE, + ACTIONS(5876), 1, aux_sym_number_token1, - ACTIONS(256), 1, + ACTIONS(5878), 1, aux_sym_number_token2, - ACTIONS(260), 1, + ACTIONS(5880), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5882), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5890), 1, sym_test_operator, - ACTIONS(274), 1, + ACTIONS(5892), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, + STATE(5674), 1, aux_sym__literal_repeat1, - STATE(2600), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, + STATE(5738), 1, + sym_concatenation, + ACTIONS(2496), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, + ACTIONS(5888), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, + ACTIONS(5864), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5608), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132835,16 +144280,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [79690] = 3, + ACTIONS(2494), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [77958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132855,8 +144314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132882,105 +144342,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79741] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2549), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79838] = 8, + [78011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1263), 5, sym_file_descriptor, - ACTIONS(5028), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132988,8 +144376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -133007,16 +144394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79899] = 3, + [78064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 38, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133027,8 +144414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133040,6 +144428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133055,92 +144444,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79950] = 26, - ACTIONS(71), 1, + [78117] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(5894), 1, + sym__special_character, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2383), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80047] = 6, + sym_word, + [78174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(5896), 1, aux_sym_concatenation_token1, - ACTIONS(4943), 1, + ACTIONS(5899), 1, sym__concat, - STATE(1667), 1, + STATE(1659), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(1253), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 36, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133152,6 +144522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133177,33 +144549,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80104] = 8, + [78233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5902), 1, + sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, - ACTIONS(5031), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133211,8 +144584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -133230,227 +144602,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80165] = 6, - ACTIONS(71), 1, + [78292] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2984), 1, - aux_sym__literal_repeat1, - STATE(2991), 1, - sym_concatenation, - STATE(2877), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2222), 10, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5904), 1, + sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2224), 22, + [78351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [80222] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(5034), 1, - sym_word, - ACTIONS(5038), 1, - sym_test_operator, - STATE(2052), 1, - aux_sym__literal_repeat1, - STATE(2678), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5036), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2376), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80321] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2484), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80418] = 8, + sym_word, + [78410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5906), 1, + sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, - ACTIONS(5040), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133458,9 +144743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -133476,34 +144759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80479] = 8, + [78469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5908), 1, + sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, - ACTIONS(5043), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133511,9 +144796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -133529,153 +144812,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80540] = 3, - ACTIONS(71), 1, + [78528] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 16, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 27, + [78587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [80591] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2526), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80688] = 8, + aux_sym__simple_variable_name_token1, + sym_word, + [78640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5375), 5, sym_file_descriptor, - ACTIONS(5046), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133683,8 +144949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -133702,104 +144967,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80749] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2397), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80846] = 8, + [78693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1330), 6, sym_file_descriptor, - ACTIONS(5049), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133807,11 +144998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133826,33 +145017,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80907] = 8, + [78746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1253), 5, sym_file_descriptor, - ACTIONS(5052), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133860,11 +145048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133879,68 +145067,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80968] = 26, - ACTIONS(71), 1, + [78799] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, + ACTIONS(5868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(5870), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(5872), 1, + sym__special_character, + ACTIONS(5874), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(5876), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(5878), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(5880), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(5882), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, + ACTIONS(5892), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, + ACTIONS(5912), 1, + sym_test_operator, + STATE(5632), 1, aux_sym__literal_repeat1, - STATE(2474), 1, - sym__expression, - ACTIONS(1039), 2, + STATE(5789), 1, + sym_concatenation, + ACTIONS(2500), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, + ACTIONS(5888), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, + ACTIONS(5910), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5553), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133950,19 +145121,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81065] = 5, + ACTIONS(2498), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [78888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - sym__special_character, - STATE(1591), 1, - aux_sym__literal_repeat1, - ACTIONS(4346), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133973,8 +145155,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133986,7 +145169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134000,33 +145185,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [81120] = 8, + [78941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5914), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, sym_file_descriptor, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134034,9 +145220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134052,30 +145236,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81181] = 3, + [79000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 5, + ACTIONS(4465), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 38, + ACTIONS(4463), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134101,388 +145288,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81232] = 27, - ACTIONS(71), 1, + [79053] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(5060), 1, - sym_word, - ACTIONS(5064), 1, - sym_test_operator, - STATE(2118), 1, - aux_sym__literal_repeat1, - STATE(2678), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5062), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2324), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2116), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81331] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + [79106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5813), 1, + aux_sym_concatenation_token1, + ACTIONS(5815), 1, + sym__concat, + STATE(1637), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2563), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81428] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [79165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2614), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81525] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [79218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(381), 1, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2537), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81622] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2536), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81719] = 7, + aux_sym__simple_variable_name_token1, + sym_word, + [79271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 1, + ACTIONS(1326), 5, sym_file_descriptor, - ACTIONS(4699), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134490,11 +145522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134509,68 +145541,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81778] = 26, + [79324] = 28, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1167), 1, sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2096), 1, + ACTIONS(5781), 1, + sym_extglob_pattern, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2396), 1, + STATE(2648), 1, + sym__extglob_blob, + STATE(2972), 1, sym__expression, - ACTIONS(342), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1135), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1137), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134580,84 +145616,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81875] = 6, - ACTIONS(71), 1, + [79427] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2983), 1, - aux_sym__literal_repeat1, - STATE(2996), 1, - sym_concatenation, - STATE(2910), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2335), 22, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81932] = 8, + sym_word, + [79480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5762), 1, + aux_sym_concatenation_token1, + ACTIONS(5789), 1, + sym__concat, + STATE(1557), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5470), 5, sym_file_descriptor, - ACTIONS(5066), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5468), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134665,9 +145701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134683,22 +145717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81993] = 6, + [79539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(1596), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + ACTIONS(1338), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 36, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134719,8 +145751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134735,33 +145769,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82050] = 8, + [79592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1330), 7, sym_file_descriptor, - ACTIONS(5069), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134769,11 +145800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134788,104 +145819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82111] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2334), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82208] = 8, + [79645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1322), 7, sym_file_descriptor, - ACTIONS(5072), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134893,11 +145850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134912,69 +145869,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82269] = 27, + [79698] = 28, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(371), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(391), 1, sym__brace_start, - ACTIONS(1011), 1, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1095), 1, anon_sym_BANG, - ACTIONS(1021), 1, + ACTIONS(1103), 1, anon_sym_TILDE, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(5075), 1, - sym_word, - ACTIONS(5079), 1, + ACTIONS(1113), 1, sym_test_operator, - STATE(2012), 1, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(5918), 1, + sym_extglob_pattern, + STATE(2472), 1, aux_sym__literal_repeat1, - STATE(2678), 1, + STATE(2827), 1, sym__expression, - ACTIONS(342), 2, + STATE(2897), 1, + sym__extglob_blob, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1099), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1101), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(5077), 2, + ACTIONS(1109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2332), 4, + STATE(2863), 6, sym_binary_expression, + sym_ternary_expression, sym_unary_expression, + sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2086), 9, + STATE(2451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134984,16 +145944,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82368] = 3, + [79801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, + ACTIONS(1350), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 38, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135004,7 +145966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135015,8 +145976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135030,35 +145993,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82419] = 8, + [79854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1338), 6, sym_file_descriptor, - ACTIONS(5081), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135066,11 +146025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135085,87 +146044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82480] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2384), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82577] = 3, + [79907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 5, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(1661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 38, + ACTIONS(5389), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135176,7 +146070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135187,6 +146080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -135202,34 +146096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82628] = 5, + [79966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4704), 4, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4784), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135237,9 +146128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135253,34 +146145,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [82683] = 8, + [80019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1358), 7, sym_file_descriptor, - ACTIONS(5084), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135288,11 +146178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135307,88 +146197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82744] = 26, - ACTIONS(71), 1, + [80072] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2387), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4065), 6, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135399,6 +146218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135411,6 +146231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135426,87 +146247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82892] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2562), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82989] = 3, + [80125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 38, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135528,9 +146279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135544,82 +146295,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83040] = 3, - ACTIONS(71), 1, + [80178] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1246), 27, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83091] = 8, + aux_sym__simple_variable_name_token1, + sym_word, + [80231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5922), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, sym_file_descriptor, - ACTIONS(5087), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135627,8 +146382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -135646,15 +146400,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83152] = 3, + [80290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5924), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 39, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135665,9 +146425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135677,6 +146436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -135692,35 +146452,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [83203] = 8, + [80349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5762), 1, + aux_sym_concatenation_token1, + ACTIONS(5789), 1, + sym__concat, + STATE(1528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5478), 5, sym_file_descriptor, - ACTIONS(5090), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135728,9 +146488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -135746,22 +146504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83264] = 6, + [80408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(1667), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 36, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135772,6 +146527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135784,6 +146540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135797,69 +146554,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83321] = 26, + [80461] = 28, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5926), 1, + sym_extglob_pattern, + STATE(2690), 1, aux_sym__literal_repeat1, - STATE(2241), 1, + STATE(3082), 1, sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, + STATE(3138), 1, + sym__extglob_blob, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1115), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2109), 9, + STATE(2500), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135869,376 +146631,328 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83418] = 26, - ACTIONS(71), 1, + [80564] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(5928), 1, + sym__special_character, + STATE(1646), 1, + aux_sym__literal_repeat1, + ACTIONS(5180), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5178), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, + [80621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2327), 1, - sym__expression, - ACTIONS(342), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83515] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [80674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2445), 1, - sym__expression, - ACTIONS(1039), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83612] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, + [80727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2610), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83709] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [80780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5932), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4261), 3, + sym_variable_name, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + ACTIONS(4247), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2604), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83806] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5930), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [80837] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5934), 1, + aux_sym_concatenation_token1, + ACTIONS(5937), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2605), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83903] = 6, + sym_word, + [80896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(5844), 1, aux_sym_concatenation_token1, - ACTIONS(5093), 1, + ACTIONS(5846), 1, sym__concat, - STATE(1454), 1, + STATE(1672), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 36, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136249,6 +146963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -136274,941 +146989,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83960] = 26, - ACTIONS(71), 1, + [80955] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(5776), 1, + sym_variable_name, + ACTIONS(5942), 1, + aux_sym_heredoc_redirect_token1, + STATE(6746), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5148), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2606), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84057] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [81024] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 1, + sym_variable_name, + ACTIONS(5944), 1, + aux_sym_heredoc_redirect_token1, + STATE(6746), 1, + sym_subscript, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5148), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4261), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2607), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84154] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [81093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(1694), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2609), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84251] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [81152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(274), 1, sym__brace_start, - ACTIONS(1131), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2616), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84348] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2618), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84445] = 26, - ACTIONS(71), 1, + [81205] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(1694), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2619), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84542] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2603), 1, - sym__expression, - ACTIONS(1039), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84639] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2621), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84736] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2622), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84833] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2623), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84930] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2624), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85027] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2625), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85124] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2651), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85221] = 3, + [81264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, sym__concat, + STATE(1695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(5389), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137219,6 +147288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -137229,9 +147299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137246,104 +147316,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85272] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85369] = 8, + [81323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5462), 5, sym_file_descriptor, - ACTIONS(5095), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5460), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137351,8 +147348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -137370,230 +147366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85430] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2598), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85527] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2390), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85624] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2241), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85721] = 3, + [81376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 37, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137605,6 +147387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137630,18 +147414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85772] = 3, + [81429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5948), 1, sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137652,6 +147441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -137664,7 +147454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137678,106 +147467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85823] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(5098), 1, - sym_word, - ACTIONS(5102), 1, - sym_test_operator, - STATE(2090), 1, - aux_sym__literal_repeat1, - STATE(2678), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5100), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2343), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2100), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85922] = 5, + [81488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - sym__special_character, - STATE(1690), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(5950), 1, + sym__concat, + STATE(965), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1265), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137786,9 +147505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137801,29 +147522,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85977] = 3, + [81547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(4532), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 37, + ACTIONS(4530), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137832,9 +147555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137849,33 +147572,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86028] = 8, + [81600] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, + aux_sym_concatenation_token1, ACTIONS(4701), 1, + sym__concat, + STATE(1721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 5, sym_file_descriptor, - ACTIONS(5107), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 37, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137883,8 +147607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -137902,88 +147625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86089] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2597), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86186] = 3, + [81659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 6, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 37, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137995,6 +147646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138004,9 +147657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138020,105 +147673,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86237] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2493), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86334] = 8, + [81712] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, + aux_sym_concatenation_token1, ACTIONS(4701), 1, + sym__concat, + ACTIONS(5952), 1, + anon_sym_LPAREN, + STATE(1721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 5, sym_file_descriptor, - ACTIONS(5110), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138126,8 +147711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -138145,32 +147729,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86395] = 5, + [81773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4704), 4, + ACTIONS(5928), 1, + sym__special_character, + STATE(1646), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4784), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138178,11 +147764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138194,30 +147779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86450] = 3, + [81830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 5, - sym_file_descriptor, + ACTIONS(4699), 1, + aux_sym_concatenation_token1, + ACTIONS(5955), 1, sym__concat, + STATE(965), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 38, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138226,9 +147817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138243,196 +147834,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86501] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2276), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86598] = 3, - ACTIONS(71), 1, + [81889] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 27, - sym_file_descriptor, + ACTIONS(5957), 1, + aux_sym_concatenation_token1, + ACTIONS(5960), 1, sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86649] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1242), 27, + [81948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86700] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [82001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 6, + ACTIONS(1263), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 37, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138441,6 +147970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -138456,218 +147986,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86751] = 3, - ACTIONS(71), 1, + [82054] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 27, - sym_file_descriptor, + ACTIONS(5758), 1, + aux_sym_concatenation_token1, + ACTIONS(5760), 1, sym__concat, + STATE(1640), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86802] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1242), 27, + [82113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86853] = 5, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [82165] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, + ACTIONS(5844), 1, aux_sym_concatenation_token1, - ACTIONS(3679), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3681), 25, + ACTIONS(5963), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86908] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1569), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3731), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3733), 25, + [82223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86963] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [82275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - sym__special_character, - STATE(1707), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(5768), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(5766), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138679,6 +148211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138688,9 +148222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138702,70 +148238,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87018] = 26, + [82327] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1009), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1021), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2096), 1, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2391), 1, + STATE(3128), 1, sym__expression, - ACTIONS(342), 2, + STATE(7408), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138775,33 +148312,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [87115] = 8, + [82427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5772), 5, sym_file_descriptor, - ACTIONS(5116), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138809,8 +148343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -138828,17 +148361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87176] = 3, + [82479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 6, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 37, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138849,6 +148381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138875,18 +148408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87227] = 3, + [82531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138897,6 +148430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138923,34 +148457,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87278] = 8, + [82583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1326), 5, sym_file_descriptor, - ACTIONS(5119), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138958,11 +148489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138976,67 +148506,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87339] = 5, - ACTIONS(71), 1, + [82635] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3763), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3765), 25, + ACTIONS(5375), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87394] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [82687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(5965), 1, + sym__special_character, + STATE(1736), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1362), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139061,7 +148595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139075,33 +148608,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87445] = 8, + [82743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1350), 5, sym_file_descriptor, - ACTIONS(5122), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139109,11 +148638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139127,42 +148655,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87506] = 5, - ACTIONS(71), 1, + [82795] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1569), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3767), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3769), 25, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -139170,117 +148695,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87561] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2583), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87658] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1224), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 27, + [82851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -139288,96 +148746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87709] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2381), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87806] = 3, + sym_word, + [82907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 38, + ACTIONS(5695), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139399,11 +148794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139416,17 +148810,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87857] = 3, + [82963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(4564), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139437,6 +148834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139447,11 +148845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139464,16 +148861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87908] = 3, + [83019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139495,11 +148896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139512,105 +148912,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87959] = 27, - ACTIONS(71), 1, + [83075] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(4638), 1, + ACTIONS(5970), 1, sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(5125), 1, - sym_word, - ACTIONS(5129), 1, - sym_test_operator, - STATE(2047), 1, + STATE(1736), 1, aux_sym__literal_repeat1, - STATE(2678), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2302), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2067), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88058] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5180), 5, sym_file_descriptor, - ACTIONS(5131), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5178), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139618,13 +148946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139636,34 +148961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88119] = 8, + [83131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5968), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 5, sym_file_descriptor, - ACTIONS(5134), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139671,13 +148997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139690,29 +149014,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88180] = 3, + [83187] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 6, - sym_file_descriptor, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, + STATE(1822), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 37, + ACTIONS(4552), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139721,9 +149049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139738,67 +149066,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88231] = 5, - ACTIONS(71), 1, + [83245] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3787), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3789), 25, + ACTIONS(1334), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88286] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [83297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 6, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 37, + ACTIONS(5373), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139810,6 +149136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139819,6 +149147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139834,90 +149163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88337] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, - sym_test_operator, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2529), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88434] = 3, + [83349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(5772), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(5770), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139929,6 +149185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139940,7 +149198,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139954,140 +149211,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88485] = 26, + [83401] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(371), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(389), 1, + sym_test_operator, + ACTIONS(391), 1, sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, + ACTIONS(5807), 1, sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(5809), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5972), 1, + sym__regex_no_space, + STATE(2641), 1, aux_sym__literal_repeat1, - STATE(2495), 1, + STATE(2989), 1, sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1099), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88582] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, - sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, - aux_sym__literal_repeat1, - STATE(2372), 1, - sym__expression, - ACTIONS(342), 2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3071), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2521), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140097,33 +149286,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88679] = 8, + [83501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, sym_file_descriptor, - ACTIONS(5137), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140131,8 +149320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -140150,16 +149338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88740] = 3, + [83559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(5974), 1, + sym__special_character, + STATE(1751), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1362), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140181,11 +149373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -140198,254 +149389,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88791] = 26, - ACTIONS(71), 1, + [83615] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1822), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2492), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 36, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88888] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, + [83673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2452), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88985] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2570), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89082] = 5, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [83725] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1569), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, + ACTIONS(1310), 5, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3783), 15, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3785), 25, + [83777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -140453,24 +149573,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89137] = 3, + sym_word, + [83829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 38, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140495,6 +149622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140509,139 +149637,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89188] = 26, + [83881] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(223), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1111), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1117), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1119), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2627), 1, + STATE(3123), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89285] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2514), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1047), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1061), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2117), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140651,29 +149710,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89382] = 3, + [83981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 6, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 37, + ACTIONS(4467), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140699,33 +149762,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89433] = 8, + [84039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5768), 5, sym_file_descriptor, - ACTIONS(5140), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140733,9 +149793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -140751,89 +149809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89494] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2491), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89591] = 3, + [84091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 37, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140845,6 +149832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140871,104 +149860,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89642] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2482), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89739] = 8, + [84143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1306), 5, sym_file_descriptor, - ACTIONS(5143), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140976,11 +149891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140995,16 +149909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89800] = 3, + [84195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 38, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141015,8 +149929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141026,9 +149941,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141043,154 +149958,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89851] = 5, - ACTIONS(71), 1, + [84247] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, + ACTIONS(1354), 5, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 15, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1222), 25, + [84299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89906] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2477), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90003] = 8, + sym_word, + [84351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1342), 5, sym_file_descriptor, - ACTIONS(5146), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141198,11 +150087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141217,33 +150105,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90064] = 8, + [84403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1314), 5, sym_file_descriptor, - ACTIONS(5149), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141251,11 +150135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141270,17 +150154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90125] = 3, + [84455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 6, + ACTIONS(2096), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 37, + ACTIONS(2094), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141292,6 +150175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141318,104 +150203,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90176] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2476), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90273] = 8, + [84507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1338), 5, sym_file_descriptor, - ACTIONS(5152), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141423,11 +150233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141442,16 +150252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90334] = 3, + [84559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141473,6 +150283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -141490,17 +150301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90385] = 3, + [84611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 6, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141512,6 +150322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141521,9 +150333,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141538,16 +150350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90436] = 3, + [84663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141569,6 +150381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -141586,33 +150399,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90487] = 8, + [84715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1322), 5, sym_file_descriptor, - ACTIONS(5155), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141620,11 +150430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141639,16 +150448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90548] = 3, + [84767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 38, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141659,8 +150468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141687,16 +150497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90599] = 3, + [84819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 5, + ACTIONS(1354), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 38, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141721,6 +150531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141735,17 +150546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90650] = 3, + [84871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 6, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 37, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141757,6 +150567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141766,9 +150578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141783,105 +150595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90701] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(5158), 1, - sym_word, - ACTIONS(5162), 1, - sym_test_operator, - STATE(2115), 1, - aux_sym__literal_repeat1, - STATE(2678), 1, - sym__expression, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5160), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2330), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90800] = 8, + [84923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(2074), 5, sym_file_descriptor, - ACTIONS(5164), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141889,8 +150626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -141908,41 +150644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90861] = 5, - ACTIONS(71), 1, + [84975] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1569), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3775), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3777), 25, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -141950,76 +150678,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90916] = 26, + sym_word, + [85027] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(371), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(391), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1091), 1, sym_word, - ACTIONS(1111), 1, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, anon_sym_BANG, - ACTIONS(1117), 1, + ACTIONS(1103), 1, anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, + ACTIONS(1113), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(5809), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(5977), 1, + sym__regex_no_space, + STATE(2472), 1, aux_sym__literal_repeat1, - STATE(2459), 1, + STATE(2835), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, + ACTIONS(1099), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1115), 2, + ACTIONS(1101), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, + ACTIONS(1109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + STATE(2863), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2109), 9, + STATE(2451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142029,41 +150766,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91013] = 5, - ACTIONS(71), 1, + [85127] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4924), 2, - sym__concat, + ACTIONS(5920), 1, aux_sym_concatenation_token1, - ACTIONS(3779), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3781), 25, + ACTIONS(5979), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -142071,98 +150804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91068] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2444), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91165] = 5, + sym_word, + [85185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - sym__special_character, - STATE(1690), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 4, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5981), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142174,8 +150844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142185,9 +150853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142200,228 +150870,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91220] = 26, - ACTIONS(71), 1, + [85243] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2601), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91317] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2450), 1, - sym__expression, - ACTIONS(1039), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91414] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 16, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1262), 27, + [85295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91465] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1238), 27, + [85347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -142430,117 +151003,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91516] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2707), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91613] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 27, - sym_file_descriptor, + [85399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, + STATE(1822), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4465), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4463), 36, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -142548,47 +151055,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91664] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1254), 27, + [85457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -142597,115 +151104,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91715] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2503), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91812] = 7, + sym_word, + [85509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, - anon_sym_DQUOTE, - STATE(2960), 1, - sym_string, - ACTIONS(5173), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 4, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(1779), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5169), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 26, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142713,10 +151152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -142728,33 +151170,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91871] = 8, + [85567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4482), 5, sym_file_descriptor, - ACTIONS(5175), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(4480), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142762,8 +151204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -142781,33 +151222,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91932] = 8, + [85625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1318), 5, sym_file_descriptor, - ACTIONS(5178), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142815,11 +151252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142833,18 +151269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [91993] = 3, + [85677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 6, + ACTIONS(5983), 1, + sym__special_character, + STATE(1789), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 37, + ACTIONS(1362), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142856,6 +151295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142869,7 +151310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142882,38 +151322,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92044] = 3, - ACTIONS(71), 1, + [85733] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 27, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -142922,147 +151357,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92095] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2456), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92192] = 26, + sym_word, + [85785] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(225), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1093), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1095), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1101), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1103), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1107), 1, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2099), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2568), 1, + STATE(3144), 1, sym__expression, - ACTIONS(1039), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1097), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1099), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1105), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2062), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143072,36 +151444,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92289] = 7, + [85885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, - anon_sym_DQUOTE, - STATE(2960), 1, - sym_string, - ACTIONS(5173), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 4, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5169), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 26, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143109,10 +151474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -143123,105 +151491,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92348] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2466), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92445] = 8, + [85937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1330), 5, sym_file_descriptor, - ACTIONS(5181), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143229,11 +151523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143247,101 +151540,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92506] = 26, - ACTIONS(71), 1, + [85989] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1822), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4532), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4530), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2454), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92603] = 3, + sym_word, + [86047] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 6, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4548), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 37, + ACTIONS(4546), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143367,33 +151646,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92654] = 8, + [86105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1342), 5, sym_file_descriptor, - ACTIONS(5184), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143401,11 +151676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143419,105 +151693,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92715] = 26, + [86157] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, + STATE(1897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5986), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(241), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(278), 25, + sym_file_descriptor, sym_test_operator, - ACTIONS(381), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2574), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92812] = 8, + [86213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1354), 5, sym_file_descriptor, - ACTIONS(5187), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143525,11 +151776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143543,153 +151793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92873] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2575), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92970] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1109), 1, - sym_word, - ACTIONS(1111), 1, - anon_sym_BANG, - ACTIONS(1117), 1, - anon_sym_TILDE, - ACTIONS(1119), 1, - sym__special_character, - ACTIONS(1123), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2532), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93067] = 3, + [86265] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 16, + STATE(1901), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5986), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -143706,9 +151820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 27, + ACTIONS(1281), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -143725,7 +151838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -143734,16 +151846,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93118] = 3, + [86321] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 16, + ACTIONS(1371), 1, + anon_sym_LPAREN, + STATE(1901), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5986), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -143754,9 +151872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 27, + ACTIONS(1281), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -143773,7 +151890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -143782,33 +151898,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93169] = 8, + [86379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(5988), 1, + sym__special_character, + STATE(1829), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 6, sym_file_descriptor, - ACTIONS(5190), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143816,13 +151932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143835,16 +151949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93230] = 3, + [86435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143855,8 +151969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143866,9 +151981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143883,139 +151998,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93281] = 26, - ACTIONS(71), 1, + [86487] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, + ACTIONS(5990), 1, + sym__special_character, + STATE(1886), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [86543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(381), 1, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2596), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [86595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93378] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [86647] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(227), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1009), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1021), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(4640), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2096), 1, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(2394), 1, + STATE(3154), 1, sym__expression, - ACTIONS(342), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144025,33 +152220,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93475] = 8, + [86747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1334), 5, sym_file_descriptor, - ACTIONS(5193), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144059,11 +152251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144078,17 +152269,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93536] = 3, + [86799] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, + STATE(3543), 1, + aux_sym__literal_repeat1, + STATE(1868), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3480), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -144096,117 +152297,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1234), 27, + ACTIONS(2096), 22, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93587] = 26, - ACTIONS(71), 1, + [86857] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2576), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93684] = 3, + sym_word, + [86909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144244,18 +152417,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93735] = 3, + [86961] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 16, + ACTIONS(4253), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5998), 1, + sym_variable_name, + STATE(6737), 1, + sym_subscript, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5360), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -144263,63 +152454,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 27, + ACTIONS(4261), 21, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93786] = 8, + sym_word, + [87083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1314), 5, sym_file_descriptor, - ACTIONS(5196), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144327,11 +152556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144345,34 +152573,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93847] = 8, + [87135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(6001), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - ACTIONS(5199), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144380,13 +152609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -144398,176 +152624,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93908] = 26, - ACTIONS(71), 1, + [87191] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(1009), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, - anon_sym_BANG, - ACTIONS(1021), 1, - anon_sym_TILDE, - ACTIONS(1031), 1, - sym_test_operator, - ACTIONS(4638), 1, + [87243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, sym__special_character, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - STATE(2096), 1, + STATE(1873), 1, aux_sym__literal_repeat1, - STATE(2393), 1, - sym__expression, - ACTIONS(342), 2, + ACTIONS(5180), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5178), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1019), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1027), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2425), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94005] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [87299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(381), 1, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2580), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94102] = 8, + sym_word, + [87351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1306), 6, sym_file_descriptor, - ACTIONS(5202), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144575,11 +152805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144594,180 +152824,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94163] = 26, - ACTIONS(71), 1, + [87403] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [87455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(381), 1, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2595), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94260] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, - sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, aux_sym_number_token1, - ACTIONS(256), 1, aux_sym_number_token2, - ACTIONS(260), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [87507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(6006), 1, + sym__concat, + STATE(1065), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(274), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1131), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, - aux_sym__literal_repeat1, - STATE(2462), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2112), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94357] = 3, - ACTIONS(71), 1, + sym_word, + [87565] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 16, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(6008), 1, + sym__concat, + STATE(1065), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1230), 27, - sym_file_descriptor, + [87623] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, sym__concat, + STATE(1821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 36, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -144775,77 +153064,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94408] = 26, + sym_word, + [87681] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1147), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2710), 1, + STATE(3125), 1, sym__expression, - ACTIONS(1039), 2, + STATE(7188), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2156), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144855,17 +153151,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94505] = 3, + [87781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 6, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 37, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144877,6 +153172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144903,371 +153200,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94556] = 26, - ACTIONS(71), 1, + [87833] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, + ACTIONS(5988), 1, + sym__special_character, + STATE(1829), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [87889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2498), 1, - sym__expression, - ACTIONS(1039), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94653] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2747), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94750] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2629), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94847] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2736), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94944] = 26, - ACTIONS(71), 1, + [87941] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + ACTIONS(5988), 1, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, + STATE(1829), 1, aux_sym__literal_repeat1, - STATE(2732), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 5, + ACTIONS(4469), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 38, + ACTIONS(4467), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145278,7 +153325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145289,11 +153335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145306,33 +153351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95092] = 8, + [87997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(6010), 1, + sym__special_character, + STATE(1829), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 6, sym_file_descriptor, - ACTIONS(5205), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145340,13 +153385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145359,68 +153402,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95153] = 26, + [88053] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1147), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2727), 1, + STATE(3141), 1, sym__expression, - ACTIONS(1039), 2, + STATE(6913), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2156), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145430,68 +153475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95250] = 26, + [88153] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, + STATE(3543), 1, aux_sym__literal_repeat1, - STATE(2726), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + STATE(1868), 2, sym_concatenation, - STATE(2156), 9, + aux_sym_for_statement_repeat1, + STATE(3480), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145501,33 +153493,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95347] = 8, + ACTIONS(2072), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2074), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [88211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(1894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - ACTIONS(5208), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145535,9 +153562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -145554,175 +153579,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95408] = 26, - ACTIONS(71), 1, + [88269] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2724), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95505] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2594), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95602] = 8, + sym_word, + [88321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1326), 5, sym_file_descriptor, - ACTIONS(5211), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145730,11 +153659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145749,229 +153677,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95663] = 26, - ACTIONS(71), 1, + [88373] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2499), 1, - sym__expression, - ACTIONS(1039), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95760] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2721), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95857] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2589), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95954] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [88425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146009,17 +153773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [96005] = 3, + [88477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146057,34 +153822,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [96056] = 8, + [88529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1310), 5, sym_file_descriptor, - ACTIONS(5214), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146092,11 +153854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146110,159 +153871,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [96117] = 26, - ACTIONS(71), 1, + [88581] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(1889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2716), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96214] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2451), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96311] = 3, + sym_word, + [88639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146284,6 +153956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146301,210 +153974,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96362] = 26, - ACTIONS(71), 1, + [88691] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + ACTIONS(1314), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2501), 1, - sym__expression, - ACTIONS(1039), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96459] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2713), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96556] = 26, + sym_word, + [88743] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1147), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2712), 1, + STATE(3147), 1, sym__expression, - ACTIONS(1039), 2, + STATE(7121), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2156), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146514,16 +154096,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96653] = 3, + [88843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, sym__concat, + STATE(1894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146547,7 +154134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146562,33 +154148,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96704] = 8, + [88901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1263), 5, sym_file_descriptor, - ACTIONS(5217), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146596,8 +154179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -146615,159 +154197,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96765] = 26, - ACTIONS(71), 1, + [88953] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2502), 1, - sym__expression, - ACTIONS(1039), 2, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6019), 1, + sym__concat, + STATE(1908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96862] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [89011] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6019), 1, + sym__concat, + STATE(1910), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2505), 1, - sym__expression, - ACTIONS(1039), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1075), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96959] = 3, + sym_word, + [89069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146804,211 +154348,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [97010] = 26, - ACTIONS(71), 1, + [89121] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1354), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2453), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97107] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2455), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97204] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [89225] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2099), 1, + ACTIONS(6021), 1, + sym__regex_no_space, + STATE(2690), 1, aux_sym__literal_repeat1, - STATE(2473), 1, + STATE(3095), 1, sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1099), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1105), 2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2062), 9, + STATE(2500), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147018,868 +154521,508 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97301] = 26, - ACTIONS(71), 1, + [89325] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2478), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97398] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2480), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97495] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2481), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97592] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2483), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97689] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2511), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97786] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [89637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2506), 1, - sym__expression, - ACTIONS(1039), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97883] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2539), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97980] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + [89741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98077] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1063), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, + [89793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6023), 1, sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, + STATE(1814), 1, aux_sym__literal_repeat1, - STATE(2546), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98174] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, + ACTIONS(5478), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2551), 1, - sym__expression, - ACTIONS(1039), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98271] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(1093), 1, - sym_word, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1101), 1, - anon_sym_TILDE, - ACTIONS(1103), 1, - sym__special_character, - ACTIONS(1107), 1, - sym_test_operator, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - STATE(2099), 1, - aux_sym__literal_repeat1, - STATE(2559), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1097), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1099), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1105), 2, sym_raw_string, sym_ansi_c_string, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98368] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2507), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98465] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [89849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 38, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147901,6 +155044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -147918,246 +155062,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98516] = 26, - ACTIONS(71), 1, + [89901] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, + ACTIONS(1338), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1079), 1, sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2508), 1, - sym__expression, - ACTIONS(1039), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98613] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2509), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98710] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - STATE(2513), 1, - sym__expression, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1047), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1061), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98807] = 8, + sym_word, + [89953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1326), 6, sym_file_descriptor, - ACTIONS(5220), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148165,11 +155141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148183,17 +155158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [98868] = 3, + [90005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148215,6 +155191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148232,16 +155209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98919] = 3, + [90057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 38, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148252,7 +155230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148263,6 +155240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148280,175 +155258,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98970] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2586), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99067] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, - sym_word, - ACTIONS(349), 1, - anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(4727), 1, - sym__special_character, - STATE(2172), 1, - aux_sym__literal_repeat1, - STATE(2585), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99164] = 8, + [90109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, + ACTIONS(1358), 6, sym_file_descriptor, - ACTIONS(5223), 1, - anon_sym_RPAREN, - ACTIONS(4704), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4694), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 10, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148456,11 +155288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4692), 18, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148475,68 +155307,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99225] = 26, + [90161] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(1009), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1021), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(4638), 1, - sym__special_character, - ACTIONS(4640), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2096), 1, + ACTIONS(5779), 1, + sym__special_character, + ACTIONS(6025), 1, + sym__regex_no_space, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2392), 1, + STATE(2995), 1, sym__expression, - ACTIONS(342), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1019), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1027), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2425), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2110), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148546,68 +155380,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99322] = 26, + [90261] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(227), 1, + ACTIONS(6027), 1, sym_word, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_BANG, - ACTIONS(248), 1, + ACTIONS(6033), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6036), 1, anon_sym_DOLLAR, - ACTIONS(254), 1, + ACTIONS(6039), 1, + sym__special_character, + ACTIONS(6042), 1, + anon_sym_DQUOTE, + ACTIONS(6048), 1, aux_sym_number_token1, - ACTIONS(256), 1, + ACTIONS(6051), 1, aux_sym_number_token2, - ACTIONS(260), 1, + ACTIONS(6054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(272), 1, + ACTIONS(6060), 1, + anon_sym_BQUOTE, + ACTIONS(6063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6069), 1, sym_test_operator, - ACTIONS(274), 1, + ACTIONS(6072), 1, sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1135), 1, - sym__special_character, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(2140), 1, + STATE(3543), 1, aux_sym__literal_repeat1, - STATE(2467), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, + ACTIONS(6030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1139), 2, + ACTIONS(6045), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1145), 2, + ACTIONS(6066), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2582), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + STATE(1868), 2, sym_concatenation, - STATE(2112), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2216), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + STATE(3480), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148617,68 +155448,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99419] = 26, + [90351] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1037), 1, - sym_word, - ACTIONS(1041), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_BANG, - ACTIONS(1049), 1, - anon_sym_TILDE, - ACTIONS(1051), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1059), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1065), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1067), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1077), 1, - sym_test_operator, - ACTIONS(1079), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(2838), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(4782), 1, + ACTIONS(5779), 1, sym__special_character, - STATE(2171), 1, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2515), 1, + STATE(3153), 1, sym__expression, - ACTIONS(1039), 2, + STATE(7318), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1045), 2, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1047), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1061), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2153), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2117), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148688,68 +155521,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99516] = 26, - ACTIONS(71), 1, + [90451] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(340), 1, + ACTIONS(1354), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(349), 1, + [90503] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(351), 1, - anon_sym_BANG, - ACTIONS(353), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(367), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(379), 1, - sym_test_operator, - ACTIONS(381), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(4640), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(4727), 1, + ACTIONS(5779), 1, sym__special_character, - STATE(2172), 1, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(2581), 1, + STATE(3156), 1, sym__expression, - ACTIONS(183), 2, + STATE(7444), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(363), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2449), 6, + STATE(2594), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2053), 9, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148759,30 +155643,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99613] = 6, + [90603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1905), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(4372), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 34, + ACTIONS(4370), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148792,6 +155675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -148807,32 +155691,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [99669] = 6, + [90655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1905), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(6075), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 34, + ACTIONS(1362), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148845,7 +155730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148859,77 +155743,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [99725] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [99775] = 6, + [90711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1905), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4300), 5, + ACTIONS(1338), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 34, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148941,6 +155776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148956,30 +155792,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [99831] = 6, + [90763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1922), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 5, + ACTIONS(1330), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 34, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148989,9 +155823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149005,80 +155839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [99887] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1880), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5226), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99941] = 6, + [90815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 5, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 34, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149088,9 +155872,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149104,16 +155888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [99997] = 3, + [90867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149125,8 +155912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149136,8 +155921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149152,30 +155939,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100047] = 6, + [90919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 5, + ACTIONS(1350), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 34, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149185,9 +155970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149201,31 +155986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [100103] = 6, + [90971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(6078), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(6081), 1, sym__concat, - STATE(1922), 1, + STATE(1879), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 5, + ACTIONS(1253), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 34, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149235,7 +156024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -149252,77 +156040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100159] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [100209] = 6, + [91029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1898), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1346), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 34, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149334,6 +156073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149349,16 +156089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [100265] = 3, + [91081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149381,6 +156122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149396,80 +156138,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [100315] = 6, - ACTIONS(3), 1, + [91133] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1922), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 5, - sym_file_descriptor, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4270), 1, + anon_sym_LT_LT, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5998), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 34, - anon_sym_LPAREN_LPAREN, + STATE(6737), 1, + sym_subscript, + STATE(5360), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4272), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + anon_sym_LT_LT_DASH, + STATE(5436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4261), 21, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [100371] = 6, + [91201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(4500), 1, - sym__concat, - STATE(1898), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4290), 5, + ACTIONS(4554), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4288), 34, + ACTIONS(4552), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149479,6 +156227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -149494,68 +156243,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [100427] = 7, - ACTIONS(3), 1, + [91253] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4701), 1, - sym_file_descriptor, - ACTIONS(4704), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(4694), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4696), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(4692), 17, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3087), 1, + sym__expression, + STATE(7159), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [100485] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 38, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149566,8 +156336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149577,6 +156349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -149592,165 +156365,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [100535] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [100585] = 5, - ACTIONS(71), 1, + [91405] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4230), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(6084), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4232), 25, + STATE(1886), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100639] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [100689] = 5, + sym_word, + [91461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5970), 1, sym__special_character, - STATE(1895), 1, + STATE(1736), 1, aux_sym__literal_repeat1, - ACTIONS(1294), 5, + ACTIONS(5069), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 35, + ACTIONS(5067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149761,6 +156441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149785,42 +156466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [100743] = 5, - ACTIONS(71), 1, + [91517] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4236), 25, + ACTIONS(1330), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -149828,37 +156502,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100797] = 6, + sym_word, + [91569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(4513), 1, + ACTIONS(6087), 1, sym__concat, - STATE(1925), 1, + STATE(1879), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 5, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 34, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149868,7 +156553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -149885,30 +156569,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100853] = 6, + [91627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(5234), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 34, + ACTIONS(1261), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149935,30 +156618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [100909] = 6, + [91679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1922), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 5, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 34, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149971,6 +156652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149985,127 +156667,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100965] = 5, + [91731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 2, - sym_file_descriptor, + ACTIONS(5826), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3580), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4788), 20, + ACTIONS(5821), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [101019] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1230), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101069] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1922), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150113,8 +156701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -150131,125 +156720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101125] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101175] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101225] = 6, + [91791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - aux_sym_concatenation_token1, - ACTIONS(5236), 1, - sym__concat, - STATE(1125), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 11, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150257,7 +156754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -150273,213 +156772,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [101281] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101331] = 6, - ACTIONS(71), 1, + [91851] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(5238), 1, + ACTIONS(6089), 1, sym__concat, - STATE(1880), 1, + STATE(1879), 1, aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1210), 25, + ACTIONS(1267), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101387] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101437] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101487] = 5, + sym_word, + [91909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, + ACTIONS(5988), 1, sym__special_character, - STATE(1895), 1, + STATE(1829), 1, aux_sym__literal_repeat1, - ACTIONS(4232), 5, + ACTIONS(5697), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 35, + ACTIONS(5695), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150500,6 +156860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -150515,234 +156876,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101541] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101591] = 6, - ACTIONS(71), 1, + [91965] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, - aux_sym_concatenation_token1, - ACTIONS(5242), 1, - sym__concat, - STATE(1880), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1216), 25, + ACTIONS(1318), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101647] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5244), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [101701] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [101751] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1941), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1943), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -150750,70 +156910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101805] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(3679), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_DOLLAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3681), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101859] = 5, + sym_word, + [92017] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5247), 1, - sym__special_character, - STATE(1917), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 15, + ACTIONS(5986), 1, + aux_sym_concatenation_token1, + ACTIONS(6091), 1, + sym__concat, + STATE(1904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -150828,8 +156949,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, + ACTIONS(1267), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -150847,38 +156969,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101913] = 6, + [92075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 5, + ACTIONS(5988), 1, + sym__special_character, + STATE(1829), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 34, + ACTIONS(4564), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150892,7 +157016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150905,30 +157028,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101969] = 6, + [92131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 5, + ACTIONS(6093), 1, + sym__special_character, + STATE(1789), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 34, + ACTIONS(5393), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150942,7 +157067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150955,30 +157079,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102025] = 6, + [92187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(4513), 1, - sym__concat, - STATE(1922), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 5, + ACTIONS(5988), 1, + sym__special_character, + STATE(1829), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 34, + ACTIONS(5067), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150992,7 +157118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151005,40 +157130,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102081] = 5, + [92243] = 6, ACTIONS(71), 1, sym_comment, - STATE(1907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, + ACTIONS(5986), 1, aux_sym_concatenation_token1, - ACTIONS(3731), 14, + ACTIONS(6095), 1, + sym__concat, + STATE(1904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3733), 25, + ACTIONS(1288), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -151047,6 +157174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151054,30 +157182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102135] = 6, + [92301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5844), 1, aux_sym_concatenation_token1, - ACTIONS(5250), 1, + ACTIONS(5846), 1, sym__concat, - STATE(1102), 1, + STATE(1727), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 5, + ACTIONS(5470), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 34, + ACTIONS(5468), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151087,7 +157217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -151103,20 +157232,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [102191] = 5, + [92359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - sym__special_character, - STATE(1929), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 4, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(1914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5478), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 36, + ACTIONS(5476), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151127,7 +157259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151141,6 +157272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151152,41 +157284,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [102245] = 5, + [92417] = 5, ACTIONS(71), 1, sym_comment, - STATE(1907), 1, + STATE(1904), 1, aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, + ACTIONS(6097), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3767), 14, + ACTIONS(1251), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3769), 25, + ACTIONS(1253), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -151195,6 +157329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151202,183 +157337,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102299] = 6, - ACTIONS(3), 1, + [92473] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_concatenation_token1, - ACTIONS(5254), 1, - sym__concat, - STATE(1102), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102355] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3763), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(3765), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3040), 1, + sym__expression, + STATE(6920), 1, + sym__test_command_binary_expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102409] = 5, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92573] = 27, ACTIONS(71), 1, sym_comment, - STATE(1907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1979), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1981), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(6025), 1, + sym__regex_no_space, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3314), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102463] = 5, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92673] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1917), 1, - aux_sym__literal_repeat1, - ACTIONS(231), 15, + ACTIONS(5998), 1, + sym_variable_name, + STATE(6737), 1, + sym_subscript, + STATE(5360), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4247), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4253), 7, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(268), 25, + ACTIONS(4348), 10, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -151388,9 +157522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4261), 15, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151399,19 +157538,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102517] = 5, + [92737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, - sym__special_character, - STATE(1929), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6100), 1, + sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(1265), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151422,7 +157564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151436,6 +157577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151448,214 +157590,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102571] = 5, - ACTIONS(71), 1, + [92795] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5229), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1222), 25, + ACTIONS(5932), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4261), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102625] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 1, - sym_test_operator, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5263), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5261), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_word, + ACTIONS(5930), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [102680] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 1, - sym_test_operator, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5267), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5265), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [102735] = 5, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [92851] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, + ACTIONS(6017), 1, aux_sym_concatenation_token1, - ACTIONS(3763), 13, + ACTIONS(6102), 1, + sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3765), 25, + [92909] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6104), 1, + aux_sym_concatenation_token1, + ACTIONS(6107), 1, + sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102788] = 5, + sym_word, + [92967] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1917), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 14, + STATE(1897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5986), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -151664,8 +157768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3781), 25, + ACTIONS(1263), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -151683,74 +157788,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102841] = 26, - ACTIONS(3), 1, + [93023] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(233), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5279), 1, - anon_sym_esac, - ACTIONS(5281), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5283), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - STATE(5126), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(5852), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(3073), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2725), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(5275), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151760,297 +157869,189 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102936] = 5, - ACTIONS(71), 1, + [93123] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1023), 2, - sym__concat, + ACTIONS(5844), 1, aux_sym_concatenation_token1, - ACTIONS(1220), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 23, + ACTIONS(6110), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [102989] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103038] = 6, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [93181] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 1, + ACTIONS(5844), 1, aux_sym_concatenation_token1, - ACTIONS(5311), 1, + ACTIONS(5846), 1, sym__concat, - STATE(1997), 1, + STATE(1914), 1, aux_sym_concatenation_repeat1, - ACTIONS(1208), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1210), 25, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103093] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(5315), 1, - anon_sym_esac, - ACTIONS(5317), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5750), 1, - sym_last_case_item, - ACTIONS(5273), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2849), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5313), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103188] = 5, - ACTIONS(71), 1, + [93239] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, + ACTIONS(6017), 1, aux_sym_concatenation_token1, - ACTIONS(1220), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1222), 25, + ACTIONS(6019), 1, + sym__concat, + STATE(1908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103241] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1258), 27, + [93297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152059,44 +158060,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103290] = 3, - ACTIONS(71), 1, + sym_word, + [93349] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 14, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(1780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1230), 27, + [93407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152105,22 +158161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103339] = 3, + sym_word, + [93459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152131,7 +158196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152142,8 +158206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152158,105 +158224,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103388] = 26, + [93511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(1253), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(5321), 1, - anon_sym_esac, - ACTIONS(5323), 1, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5751), 1, - sym_last_case_item, - ACTIONS(5273), 2, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2757), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5319), 3, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103483] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1183), 15, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1193), 26, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152264,48 +158258,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103532] = 5, - ACTIONS(71), 1, + sym_word, + [93563] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, + ACTIONS(5920), 1, aux_sym_concatenation_token1, - ACTIONS(3731), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3733), 25, + ACTIONS(5946), 1, + sym__concat, + STATE(1779), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152313,47 +158311,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103585] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3679), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3681), 25, + [93621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152361,45 +158359,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103638] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1290), 27, + [93673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152408,73 +158409,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103687] = 26, - ACTIONS(3), 1, + sym_word, + [93725] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5327), 1, - anon_sym_esac, - ACTIONS(5329), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(6025), 1, + sym__regex_no_space, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(5752), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(3067), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2851), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(5325), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152484,136 +158496,179 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103782] = 6, + [93825] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5269), 1, - aux_sym_concatenation_token1, - ACTIONS(5331), 1, - sym__concat, - STATE(1997), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1216), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + ACTIONS(6112), 1, + sym__regex_no_space, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(2995), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103837] = 5, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93925] = 27, ACTIONS(71), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3767), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3769), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(6025), 1, + sym__regex_no_space, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2979), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103890] = 5, - ACTIONS(71), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94025] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4236), 25, + ACTIONS(1298), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152621,180 +158676,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103943] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4230), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4232), 25, + [94077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [103996] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 27, + [94133] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6114), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104045] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1917), 1, - aux_sym__literal_repeat1, - ACTIONS(3787), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3789), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104098] = 6, + sym_word, + [94194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(2006), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4346), 4, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6117), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4344), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -152802,7 +158829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -152818,162 +158847,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [104153] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - STATE(2032), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1220), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [104206] = 3, + [94255] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1226), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [104255] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5277), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, + ACTIONS(1147), 1, sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(1167), 1, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5335), 1, - anon_sym_esac, - ACTIONS(5337), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(6035), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2979), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2695), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5333), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152983,161 +158919,210 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104350] = 3, + [94352] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [104399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(2007), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4352), 4, - sym_file_descriptor, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4350), 34, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2978), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94449] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2977), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [104454] = 26, - ACTIONS(3), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94546] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, + ACTIONS(1147), 1, sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(1167), 1, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5341), 1, - anon_sym_esac, - ACTIONS(5343), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(5787), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2976), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2871), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5339), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153147,206 +159132,334 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104549] = 3, + [94643] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2975), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104598] = 3, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94740] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2974), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104647] = 5, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94837] = 26, ACTIONS(71), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1979), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1981), 25, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2973), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94934] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6120), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104700] = 26, - ACTIONS(3), 1, + sym_word, + [94995] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, + ACTIONS(1147), 1, sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(1167), 1, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5347), 1, - anon_sym_esac, - ACTIONS(5349), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(5779), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2971), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2867), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5345), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153356,300 +159469,210 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104795] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [104844] = 5, + [95092] = 26, ACTIONS(71), 1, sym_comment, - STATE(1968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5351), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1200), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2970), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104897] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2038), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [104950] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [104999] = 3, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95189] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1222), 26, - sym_file_descriptor, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2969), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105048] = 26, - ACTIONS(3), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95286] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, + ACTIONS(1147), 1, sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(1167), 1, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5356), 1, - anon_sym_esac, - ACTIONS(5358), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(5856), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2968), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2719), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5354), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153659,417 +159682,509 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105143] = 5, + [95383] = 26, ACTIONS(71), 1, sym_comment, - STATE(1986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5360), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4288), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4290), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2967), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105196] = 3, - ACTIONS(71), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95480] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 27, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105245] = 5, - ACTIONS(71), 1, + sym_word, + [95531] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2056), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1133), 2, + ACTIONS(1318), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 24, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [105298] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5360), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1222), 24, + [95582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5375), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105351] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [95633] = 26, ACTIONS(71), 1, sym_comment, - STATE(1950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4084), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4086), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3096), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105404] = 5, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95730] = 26, ACTIONS(71), 1, sym_comment, - STATE(2111), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 24, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, sym__special_character, - [105457] = 5, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2924), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95827] = 26, ACTIONS(71), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4063), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(4065), 25, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2925), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105510] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1246), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [105559] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1224), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1226), 27, + [95975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -154077,45 +160192,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105608] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1282), 27, + [96026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -154123,44 +160240,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105657] = 3, + sym_word, + [96077] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1312), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 27, + ACTIONS(1314), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -154170,6 +160294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154177,36 +160302,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105706] = 3, + [96128] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1336), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 27, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -154216,6 +160342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154223,19 +160350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105755] = 5, + [96179] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1917), 1, - aux_sym__literal_repeat1, - ACTIONS(3763), 14, + ACTIONS(1344), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -154244,9 +160368,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3765), 25, + ACTIONS(1346), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -154263,140 +160389,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105808] = 6, - ACTIONS(71), 1, + [96230] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, - aux_sym_concatenation_token1, - ACTIONS(5362), 1, - sym__concat, - STATE(1968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1210), 24, + ACTIONS(2074), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105863] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [105912] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1242), 27, + [96281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -154404,24 +160480,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105961] = 3, + sym_word, + [96332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(5375), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 36, + ACTIONS(5373), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154432,6 +160514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -154442,6 +160525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -154458,36 +160542,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106010] = 3, + [96383] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1356), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 27, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -154497,6 +160582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154504,84 +160590,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106059] = 5, - ACTIONS(71), 1, + [96434] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5269), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1941), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1943), 25, + ACTIONS(5772), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106112] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [96485] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 14, + ACTIONS(1352), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1246), 27, + ACTIONS(1354), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -154591,6 +160678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154598,207 +160686,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106161] = 5, + [96536] = 26, ACTIONS(71), 1, sym_comment, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5360), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4298), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(4300), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2813), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106214] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [106263] = 3, - ACTIONS(71), 1, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96633] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(6123), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 27, + STATE(1964), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [106312] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5360), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4084), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4086), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106365] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [96688] = 3, ACTIONS(71), 1, sym_comment, - STATE(1997), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5364), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 13, + ACTIONS(1340), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -154808,10 +160827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1200), 25, + ACTIONS(1342), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -154826,6 +160846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -154834,114 +160855,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106418] = 5, - ACTIONS(71), 1, + [96739] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, + ACTIONS(6126), 1, sym__special_character, - STATE(1917), 1, + STATE(1964), 1, aux_sym__literal_repeat1, - ACTIONS(3679), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3681), 25, + ACTIONS(5478), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106471] = 26, - ACTIONS(3), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [96794] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(371), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(391), 1, sym__brace_start, - ACTIONS(5369), 1, - anon_sym_esac, - ACTIONS(5371), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, aux_sym__literal_repeat1, - STATE(6037), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2738), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2693), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(5367), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154951,114 +160976,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106566] = 5, - ACTIONS(71), 1, + [96891] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5360), 2, - sym__concat, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(4063), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4065), 24, + ACTIONS(6015), 1, + sym__concat, + STATE(2068), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106619] = 26, - ACTIONS(3), 1, + sym_word, + [96948] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_esac, - ACTIONS(5377), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(6053), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(3048), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2676), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(5373), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155068,66 +161098,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106714] = 26, - ACTIONS(3), 1, + [97045] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(1169), 1, sym__brace_start, - ACTIONS(5381), 1, - anon_sym_esac, - ACTIONS(5383), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2621), 1, + sym__expression, + STATE(2717), 1, aux_sym__literal_repeat1, - STATE(6051), 1, - sym_last_case_item, - ACTIONS(5273), 2, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2679), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(5379), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155137,36 +161169,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106809] = 3, + [97142] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1198), 14, + ACTIONS(1328), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1200), 27, + ACTIONS(1330), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -155176,6 +161209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -155183,85 +161217,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106858] = 6, - ACTIONS(71), 1, + [97193] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(5385), 1, + ACTIONS(6015), 1, sym__concat, - STATE(1968), 1, + STATE(2067), 1, aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1216), 24, + ACTIONS(5395), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106913] = 3, + sym_word, + [97250] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1320), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 27, + ACTIONS(1322), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -155271,6 +161308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -155278,38 +161316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106962] = 6, + [97301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(5387), 1, - sym__concat, - STATE(1267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(5932), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4261), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 34, + ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -155325,31 +161344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [107017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(5389), 1, - sym__concat, - STATE(1267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(5930), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155359,83 +161366,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [107072] = 26, - ACTIONS(3), 1, + [97356] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5285), 1, + ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, - sym__special_character, - ACTIONS(5289), 1, + ACTIONS(371), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, + ACTIONS(389), 1, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + ACTIONS(391), 1, sym__brace_start, - ACTIONS(5393), 1, - anon_sym_esac, - ACTIONS(5395), 1, - aux_sym_heredoc_redirect_token1, - STATE(5126), 1, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, aux_sym__literal_repeat1, - STATE(5761), 1, - sym_last_case_item, - ACTIONS(5273), 2, + STATE(2962), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2754), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(5271), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5391), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5034), 9, + STATE(2521), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155445,133 +161437,108 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107167] = 6, - ACTIONS(3), 1, + [97453] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_concatenation_token1, - ACTIONS(4610), 1, - sym__concat, - STATE(2006), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, + sym_test_operator, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2989), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [107222] = 5, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97550] = 3, ACTIONS(71), 1, sym_comment, - STATE(2120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 15, - anon_sym_EQ, + ACTIONS(1316), 16, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [107275] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1238), 27, + ACTIONS(1318), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -155581,6 +161548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -155588,588 +161556,573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107324] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, - sym__special_character, - ACTIONS(5399), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [107380] = 3, + [97601] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2988), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107428] = 3, - ACTIONS(71), 1, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97698] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 26, + ACTIONS(1294), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [107476] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5401), 1, - anon_sym_RBRACK, - ACTIONS(5403), 1, - sym__concat, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [107532] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1246), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107580] = 3, + sym_word, + [97749] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1234), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2986), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107628] = 5, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97846] = 26, ACTIONS(71), 1, sym_comment, - STATE(2020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5405), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4230), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, sym_word, - ACTIONS(4232), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [107680] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2070), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5407), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4350), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4352), 23, - sym_file_descriptor, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2985), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107732] = 6, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97943] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5405), 1, - aux_sym_concatenation_token1, - ACTIONS(5409), 1, - sym__concat, - STATE(2045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1216), 23, - sym_file_descriptor, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2955), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107786] = 5, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98040] = 26, ACTIONS(71), 1, sym_comment, - STATE(2068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5407), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4344), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4346), 23, - sym_file_descriptor, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2981), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107838] = 3, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98137] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1266), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2966), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107886] = 5, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98234] = 26, ACTIONS(71), 1, sym_comment, - STATE(2036), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5405), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4236), 23, - sym_file_descriptor, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2964), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107938] = 6, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(5411), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 33, + ACTIONS(1332), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156181,6 +162134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -156195,292 +162149,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107992] = 3, + [98382] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2961), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108040] = 5, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98479] = 26, ACTIONS(71), 1, sym_comment, - STATE(2020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5405), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1222), 23, - sym_file_descriptor, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2960), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108092] = 3, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98576] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3733), 26, - sym_file_descriptor, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2959), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108140] = 6, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98673] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(2049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [108194] = 3, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2958), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98770] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1198), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2957), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108242] = 6, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98867] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5415), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, + ACTIONS(1308), 16, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [108296] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -156489,13 +162523,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1230), 26, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -156507,6 +162540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -156518,157 +162552,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108344] = 6, - ACTIONS(71), 1, + [98918] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5417), 1, + ACTIONS(1302), 6, + sym_file_descriptor, sym__concat, - STATE(2049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [108398] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5407), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1222), 23, + [98969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108450] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5419), 1, - sym__special_character, - STATE(2034), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 24, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [108502] = 3, + sym_word, + [99020] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3767), 14, + ACTIONS(1292), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -156677,9 +162666,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3769), 26, + ACTIONS(1294), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -156696,258 +162687,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108550] = 6, - ACTIONS(71), 1, + [99071] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, - aux_sym_concatenation_token1, - ACTIONS(5422), 1, + ACTIONS(1310), 5, + sym_file_descriptor, sym__concat, - STATE(2045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1210), 23, + [99122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108604] = 3, + sym_word, + [99173] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3305), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99270] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3314), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108652] = 6, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99367] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5424), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [108706] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3319), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99464] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 26, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [108754] = 3, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(3011), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99561] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(1332), 16, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [108802] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5426), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 12, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -156955,18 +163094,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(1334), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -156975,44 +163115,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108854] = 3, + [99612] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1278), 26, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3054), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -157020,92 +163229,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108902] = 6, - ACTIONS(71), 1, + sym_word, + [99760] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5429), 1, + ACTIONS(1326), 6, + sym_file_descriptor, sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [108956] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1200), 26, + [99811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -157113,464 +163325,886 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109004] = 5, + sym_word, + [99862] = 26, ACTIONS(71), 1, sym_comment, - STATE(2045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5431), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(1200), 23, - sym_file_descriptor, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2837), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99959] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3323), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100056] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3327), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109056] = 3, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100153] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3330), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100250] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1282), 27, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3332), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109104] = 7, + sym_word, + [100398] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1125), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, sym__special_character, - ACTIONS(5434), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [109160] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3335), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100495] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(1226), 27, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2835), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 6, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109208] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [100643] = 26, ACTIONS(71), 1, sym_comment, - STATE(2049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5436), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 23, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [109260] = 3, - ACTIONS(71), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3345), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100740] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3785), 26, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 10, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109308] = 5, + sym_word, + [100799] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5439), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(3763), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(3765), 26, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3347), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100896] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 10, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109360] = 7, - ACTIONS(71), 1, + sym_word, + [100955] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, - sym__special_character, - ACTIONS(5441), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, + ACTIONS(5772), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [109416] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1023), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [109468] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1238), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -157578,185 +164212,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109516] = 5, + sym_word, + [101006] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5439), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(4515), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(4517), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2831), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, sym_raw_string, sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101103] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2802), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109568] = 6, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101200] = 26, ACTIONS(71), 1, sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, ACTIONS(1133), 1, - aux_sym_concatenation_token1, - ACTIONS(5443), 1, - sym__concat, - STATE(2092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [109622] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1246), 26, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3022), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6128), 1, + sym__special_character, + STATE(2026), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [109670] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1274), 26, + [101352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -157764,37 +164523,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109718] = 6, + sym_word, + [101403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(2113), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(6130), 1, + sym__special_character, + STATE(2026), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 33, + ACTIONS(1362), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157804,10 +164571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -157820,241 +164587,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109772] = 3, + [101458] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(1250), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2830), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, sym_raw_string, sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101555] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3023), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109820] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101652] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1278), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3030), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101749] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2829), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109868] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2043), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [109920] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [109968] = 3, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101846] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, sym_word, - ACTIONS(1254), 27, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2828), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110016] = 3, + sym_word, + [101994] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -158063,13 +165013,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 26, + ACTIONS(1263), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -158081,9 +165029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -158092,156 +165040,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110064] = 3, + [102049] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1254), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2816), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102146] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2942), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110112] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5445), 1, - anon_sym_RBRACK, - ACTIONS(5447), 1, - sym__concat, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110168] = 6, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102243] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5407), 1, - aux_sym_concatenation_token1, - ACTIONS(5449), 1, - sym__concat, - STATE(2074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1216), 23, - sym_file_descriptor, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3100), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110222] = 3, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102340] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1308), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -158250,13 +165272,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1250), 26, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -158268,6 +165289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -158279,247 +165301,585 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110270] = 6, + [102391] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5407), 1, - aux_sym_concatenation_token1, - ACTIONS(5451), 1, - sym__concat, - STATE(2074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1210), 23, - sym_file_descriptor, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2987), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102488] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3039), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110324] = 6, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102585] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1133), 1, - aux_sym_concatenation_token1, - ACTIONS(5453), 1, - sym__concat, - STATE(2092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110378] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3046), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102682] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3091), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110426] = 3, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102779] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(4374), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(4376), 26, - sym_file_descriptor, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2943), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102876] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3059), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110474] = 5, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102973] = 26, ACTIONS(71), 1, sym_comment, - STATE(2074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5455), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1200), 23, - sym_file_descriptor, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3061), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103070] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3062), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110526] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1300), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -158528,13 +165888,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 26, + ACTIONS(1302), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -158546,6 +165905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -158557,712 +165917,708 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110574] = 6, + [103218] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5458), 1, - sym__concat, - STATE(2049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110628] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3063), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103315] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1266), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3064), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103412] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3102), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110676] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5460), 1, - sym__concat, - STATE(2049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110730] = 5, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103509] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5462), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, sym__special_character, - STATE(2079), 1, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, aux_sym__literal_repeat1, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110782] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5465), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [110836] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [110884] = 5, + STATE(3351), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103606] = 26, ACTIONS(71), 1, sym_comment, - STATE(2183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, sym__special_character, - [110936] = 3, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3067), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103703] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(3775), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(3777), 26, - sym_file_descriptor, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3356), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103800] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3068), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110984] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103897] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 26, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [111032] = 3, - ACTIONS(71), 1, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2814), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103994] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 26, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(5826), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [111080] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5467), 1, - anon_sym_RBRACK, - ACTIONS(5469), 1, - sym__concat, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111136] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [111184] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111232] = 5, + sym_word, + [104053] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5439), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(3679), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3681), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2621), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111284] = 7, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104150] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, - sym__special_character, - ACTIONS(5471), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, + ACTIONS(1296), 16, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111340] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -159271,13 +166627,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1238), 26, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -159289,6 +166644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -159300,306 +166656,488 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111388] = 5, - ACTIONS(71), 1, + [104201] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2092), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5473), 2, + ACTIONS(1314), 5, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 23, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111440] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5439), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(4509), 12, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4511), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111492] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5480), 1, - sym_extglob_pattern, - ACTIONS(5478), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5476), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [111542] = 3, + sym_word, + [104252] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3037), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111590] = 5, - ACTIONS(71), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104349] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - sym__special_character, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 24, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6135), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111642] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1258), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111690] = 3, + sym_word, + [104410] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1226), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6138), 1, + sym_word, + ACTIONS(6142), 1, + sym_test_operator, + STATE(2561), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6140), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2874), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2563), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104509] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2812), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104606] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2810), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104703] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + STATE(2472), 1, + aux_sym__literal_repeat1, + STATE(2832), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104800] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -159611,6 +167149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -159622,125 +167161,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111738] = 5, + [104851] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5482), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, sym__special_character, - STATE(2034), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 24, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [111790] = 7, - ACTIONS(71), 1, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3358), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104948] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(5484), 1, - anon_sym_RBRACK, - ACTIONS(5486), 1, + ACTIONS(6144), 1, sym__concat, - STATE(2028), 1, + STATE(1879), 1, aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, + ACTIONS(1267), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111846] = 6, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(6013), 1, aux_sym_concatenation_token1, - ACTIONS(4943), 1, + ACTIONS(6146), 1, sym__concat, - STATE(2024), 1, + STATE(1879), 1, aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 33, + ACTIONS(1286), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159766,155 +167334,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111900] = 7, + [105062] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5488), 1, - anon_sym_RBRACK, - ACTIONS(5490), 1, - sym__concat, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3193), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105159] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6148), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [111956] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1242), 26, + [105220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112004] = 5, + sym_word, + [105271] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5439), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, - STATE(2041), 1, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, aux_sym__literal_repeat1, - ACTIONS(4230), 12, + STATE(3094), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4232), 26, + [105419] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(2067), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112056] = 3, + sym_word, + [105476] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1251), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -159923,13 +167695,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 26, + ACTIONS(1253), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -159941,6 +167712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -159952,59 +167724,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112104] = 3, - ACTIONS(71), 1, + [105527] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1242), 26, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6151), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112152] = 3, + sym_word, + [105588] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1324), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -160014,11 +167797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 27, + ACTIONS(1326), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -160042,264 +167825,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112200] = 3, - ACTIONS(71), 1, + [105639] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6154), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1230), 27, + [105700] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6157), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112248] = 5, - ACTIONS(71), 1, + sym_word, + [105761] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, + ACTIONS(1354), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 23, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112300] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112352] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1053), 1, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(5492), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 5, + sym_file_descriptor, sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112406] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112458] = 6, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105863] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(5494), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6160), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 33, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -160307,7 +168061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -160324,374 +168080,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112512] = 6, - ACTIONS(71), 1, + [105924] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6163), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - STATE(2071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5263), 14, - anon_sym_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5261), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112566] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1015), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(5496), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112622] = 7, - ACTIONS(71), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105985] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_concatenation_token1, - ACTIONS(5498), 1, - anon_sym_RBRACK, - ACTIONS(5500), 1, - sym__concat, - STATE(2028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6166), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112678] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2080), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112730] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1085), 1, - anon_sym_RBRACK, - ACTIONS(5397), 1, - sym__special_character, - ACTIONS(5502), 1, - sym__concat, - STATE(2079), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112786] = 6, - ACTIONS(71), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [106046] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6169), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - STATE(2071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5267), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5265), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112840] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5504), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [112894] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1262), 26, + [106107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -160699,112 +168273,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112942] = 3, + sym_word, + [106158] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 27, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3130), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106255] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6172), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112990] = 3, + sym_word, + [106316] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3107), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106413] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6175), 1, sym_word, - ACTIONS(1270), 27, + ACTIONS(6179), 1, + sym_test_operator, + STATE(2445), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6177), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2834), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2461), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [106563] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, + sym_test_operator, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(2951), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113038] = 3, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106660] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, + ACTIONS(1348), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -160814,11 +168693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1242), 27, + ACTIONS(1350), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -160842,29 +168721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113086] = 6, + [106711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_concatenation_token1, - ACTIONS(4943), 1, - sym__concat, - STATE(2113), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 33, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160874,6 +168752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -160890,35 +168769,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113140] = 3, - ACTIONS(71), 1, + [106762] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1238), 25, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -160926,355 +168803,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113187] = 3, - ACTIONS(71), 1, + sym_word, + [106813] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1230), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6181), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [113234] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5506), 1, - sym__special_character, - STATE(2128), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 24, + [106874] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6184), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113285] = 4, - ACTIONS(71), 1, + sym_word, + [106935] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, - sym__concat, - ACTIONS(5511), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5509), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6187), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [113334] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1290), 25, + [106996] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6190), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113381] = 4, - ACTIONS(71), 1, + sym_word, + [107057] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(1338), 6, + sym_file_descriptor, sym__concat, - ACTIONS(5517), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5515), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [113430] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1246), 25, + [107108] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6193), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113477] = 3, - ACTIONS(71), 1, + sym_word, + [107169] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6196), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 25, - sym__concat, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [107230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5375), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [113524] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [107281] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6199), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1200), 25, + [107342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -161282,87 +169318,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113571] = 3, - ACTIONS(71), 1, + sym_word, + [107393] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(5772), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1278), 25, + [107444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113618] = 3, - ACTIONS(71), 1, + sym_word, + [107495] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1266), 25, + [107546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -161370,229 +169510,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113665] = 7, - ACTIONS(71), 1, + sym_word, + [107597] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6202), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_LT, - ACTIONS(4696), 5, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4699), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 6, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4701), 6, + [107658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4704), 15, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113720] = 5, - ACTIONS(71), 1, + sym_word, + [107709] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(4786), 5, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6205), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, - ACTIONS(4692), 11, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4704), 21, - sym_file_descriptor, + [107770] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6210), 1, + anon_sym_DQUOTE, + ACTIONS(6214), 1, sym_variable_name, + STATE(3525), 1, + sym_string, + ACTIONS(6212), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ACTIONS(6208), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 26, anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113771] = 5, - ACTIONS(71), 1, + sym_word, + [107831] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, - sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(4515), 12, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4517), 25, - sym_file_descriptor, + [107882] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6210), 1, + anon_sym_DQUOTE, + ACTIONS(6214), 1, sym_variable_name, + STATE(3525), 1, + sym_string, + ACTIONS(6212), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ACTIONS(6208), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 26, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113822] = 5, - ACTIONS(71), 1, + sym_word, + [107943] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - sym__special_character, - STATE(2243), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 23, + ACTIONS(1318), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [113873] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1220), 13, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1222), 26, + [107994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2074), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -161600,118 +169914,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113920] = 5, - ACTIONS(71), 1, + sym_word, + [108045] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, + ACTIONS(6216), 1, sym__special_character, - STATE(2142), 1, + STATE(2118), 1, aux_sym__literal_repeat1, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(1364), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [113971] = 5, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [108100] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5528), 1, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1091), 1, + sym_word, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(1113), 1, + sym_test_operator, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, sym__special_character, - STATE(2128), 1, + STATE(2472), 1, aux_sym__literal_repeat1, - ACTIONS(4298), 13, + STATE(2868), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1109), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2863), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2451), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108197] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6219), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4300), 24, + [108258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114022] = 5, - ACTIONS(71), 1, + sym_word, + [108309] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, + ACTIONS(4261), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5932), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4247), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(4509), 12, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5930), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [108364] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(3541), 1, + aux_sym__literal_repeat1, + STATE(3573), 1, + sym_concatenation, + STATE(3481), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2498), 10, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -161720,17 +170228,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4511), 25, + ACTIONS(2500), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [108421] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6222), 1, + sym__special_character, + STATE(2124), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -161738,22 +170288,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114073] = 3, + sym_word, + [108476] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 14, + STATE(2135), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -161762,12 +170324,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1226), 25, + ACTIONS(4554), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -161779,9 +170340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -161790,196 +170351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114120] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5534), 1, - sym__concat, - ACTIONS(5532), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5530), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [114169] = 4, + [108531] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5540), 1, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, sym__concat, - ACTIONS(5538), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5536), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [114218] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(4564), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114265] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114312] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5521), 1, - sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(4084), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -161987,11 +170373,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4086), 25, + ACTIONS(4566), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -162006,516 +170393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114363] = 4, + [108586] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5542), 1, - anon_sym_LBRACK, - ACTIONS(5263), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5261), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [114412] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114459] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [114506] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5544), 1, - sym__special_character, - STATE(2154), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114557] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [114604] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2184), 1, + STATE(2127), 1, aux_sym_concatenation_repeat1, - ACTIONS(1053), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114655] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114702] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [114749] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 25, + ACTIONS(6225), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [114796] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, + ACTIONS(1251), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [114843] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [114890] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2168), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5547), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -162525,9 +170425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 23, + ACTIONS(1253), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -162539,6 +170440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -162549,198 +170451,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114941] = 3, - ACTIONS(71), 1, + [108641] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 25, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6228), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114988] = 3, + sym_word, + [108702] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, sym_test_operator, + ACTIONS(391), 1, sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(3009), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108799] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(350), 1, + sym_word, + ACTIONS(359), 1, + anon_sym_LPAREN, + ACTIONS(361), 1, + anon_sym_BANG, + ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(389), 1, + sym_test_operator, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5807), 1, + sym__special_character, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + STATE(2641), 1, + aux_sym__literal_repeat1, + STATE(3006), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(373), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3071), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108896] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2621), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115035] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108993] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1242), 25, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3101), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6231), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115082] = 5, + sym_word, + [109151] = 26, ACTIONS(71), 1, sym_comment, - STATE(2166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5549), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 23, - sym_file_descriptor, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3151), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115133] = 6, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109248] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(6133), 1, aux_sym_concatenation_token1, - ACTIONS(5552), 1, + ACTIONS(6234), 1, sym__concat, - STATE(2166), 1, + STATE(2127), 1, aux_sym_concatenation_repeat1, - ACTIONS(1208), 13, + ACTIONS(1286), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -162750,9 +170937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 23, + ACTIONS(1288), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -162764,6 +170952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -162774,622 +170963,947 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115186] = 6, - ACTIONS(71), 1, + [109305] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, - aux_sym_concatenation_token1, - ACTIONS(5554), 1, - sym__concat, - STATE(2166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1216), 23, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6236), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115239] = 3, + sym_word, + [109366] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 25, - sym__concat, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [115286] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3108), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109463] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, + STATE(3545), 1, + aux_sym__literal_repeat1, + STATE(3556), 1, + sym_concatenation, + STATE(3471), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2494), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(2496), 22, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115333] = 5, + [109520] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5556), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, - STATE(2142), 1, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 23, + STATE(3111), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109617] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6239), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [115384] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5558), 1, - sym__special_character, - STATE(2154), 1, - aux_sym__literal_repeat1, - ACTIONS(233), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(344), 23, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [109678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6242), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [115435] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1266), 25, + [109739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6245), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115482] = 3, - ACTIONS(71), 1, + sym_word, + [109800] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6248), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1943), 26, + [109861] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6251), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115529] = 3, + sym_word, + [109922] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3050), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [110019] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6254), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1278), 25, + [110080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6257), 1, + sym__special_character, + STATE(2118), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115576] = 3, - ACTIONS(71), 1, + sym_word, + [110135] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6259), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [115623] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1200), 25, + [110196] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6262), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115670] = 3, - ACTIONS(71), 1, + sym_word, + [110257] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 13, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6265), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3733), 26, + [110318] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6268), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115717] = 3, + sym_word, + [110379] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(6133), 1, aux_sym_concatenation_token1, - [115764] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 25, + ACTIONS(6271), 1, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [115811] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 14, + STATE(2127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1246), 25, + ACTIONS(1267), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -163397,401 +171911,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115858] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5562), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5560), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [115905] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5564), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1216), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [115958] = 6, - ACTIONS(71), 1, + [110436] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - aux_sym_concatenation_token1, - ACTIONS(5566), 1, - sym__concat, - STATE(1913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1210), 22, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6273), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116011] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116058] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116105] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [110497] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 25, + STATE(2135), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [116152] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, + ACTIONS(4370), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116199] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116246] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1238), 25, + ACTIONS(4372), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -163799,87 +172014,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116293] = 3, + [110552] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1246), 25, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [116340] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, + ACTIONS(4467), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 25, + ACTIONS(4469), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -163887,476 +172064,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116387] = 3, - ACTIONS(71), 1, + [110607] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 25, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5826), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116434] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1979), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1981), 26, + [110666] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6276), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116481] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3767), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3769), 26, + [110727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116528] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [110778] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6279), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1290), 25, + [110839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116575] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116622] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116669] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116716] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116763] = 3, - ACTIONS(71), 1, + sym_word, + [110890] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 25, - sym__concat, + ACTIONS(6282), 1, + sym__special_character, + STATE(2124), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116810] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116857] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1286), 25, + [110945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -164364,1795 +172402,2057 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116904] = 3, - ACTIONS(71), 1, + sym_word, + [110996] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6284), 1, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116951] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 25, - sym__concat, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [116998] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5570), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5568), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117045] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5521), 1, - sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(4230), 12, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4232), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117096] = 3, - ACTIONS(71), 1, + sym_word, + [111057] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 25, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6287), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117143] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1282), 25, + [111118] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6290), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117190] = 3, + sym_word, + [111179] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6293), 1, sym_word, - ACTIONS(1274), 25, + ACTIONS(6297), 1, + sym_test_operator, + STATE(2501), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6295), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2833), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2497), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6299), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117237] = 3, - ACTIONS(71), 1, + sym_word, + [111339] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1230), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6302), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [117284] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5576), 1, - sym_extglob_pattern, - ACTIONS(5478), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5476), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117333] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1234), 25, + [111400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6305), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117380] = 5, - ACTIONS(71), 1, + sym_word, + [111461] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, - sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(3679), 12, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6308), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3681), 25, + [111522] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6311), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117431] = 3, - ACTIONS(71), 1, + sym_word, + [111583] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6314), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1258), 25, + [111644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117478] = 3, + sym_word, + [111695] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 25, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117525] = 3, - ACTIONS(71), 1, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3097), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111792] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6317), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [117572] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1230), 25, + [111853] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6320), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [117619] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1230), 25, + [111914] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6323), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117666] = 3, - ACTIONS(71), 1, + sym_word, + [111975] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6326), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1242), 25, + [112036] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117713] = 3, - ACTIONS(71), 1, + sym_word, + [112097] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6332), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1270), 25, + [112158] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6335), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117760] = 3, - ACTIONS(71), 1, + sym_word, + [112219] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 24, - sym__concat, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117807] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [117854] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 25, + [112270] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6338), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117901] = 3, + sym_word, + [112331] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1234), 25, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(2621), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112428] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6341), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117948] = 3, - ACTIONS(71), 1, + sym_word, + [112489] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6344), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [117995] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118042] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118089] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2167), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5547), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4236), 23, + [112550] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6347), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118140] = 5, + sym_word, + [112611] = 26, ACTIONS(71), 1, sym_comment, - STATE(2168), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5547), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4230), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(4232), 23, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3183), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112708] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6350), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118191] = 5, - ACTIONS(71), 1, + sym_word, + [112769] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, + ACTIONS(6353), 1, sym__special_character, STATE(2254), 1, aux_sym__literal_repeat1, - ACTIONS(3763), 12, + ACTIONS(5478), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3765), 25, + [112824] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6355), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118242] = 3, + sym_word, + [112885] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(2995), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112982] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6358), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118289] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1224), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1226), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118336] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118383] = 3, - ACTIONS(71), 1, + sym_word, + [113043] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6361), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118430] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118477] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1200), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118524] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1242), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118571] = 3, - ACTIONS(71), 1, + sym_word, + [113104] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6364), 1, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118618] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 25, - sym__concat, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118665] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5580), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5578), 23, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [118714] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1286), 25, + [113165] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6367), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118761] = 5, + sym_word, + [113226] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5584), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, sym__special_character, - STATE(2243), 1, + STATE(2717), 1, aux_sym__literal_repeat1, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 23, + STATE(3003), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113323] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [118812] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113420] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + STATE(2135), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4463), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -166161,12 +174461,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 25, + ACTIONS(4465), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -166178,9 +174477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -166189,263 +174488,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118859] = 3, - ACTIONS(71), 1, + [113475] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 25, - sym__concat, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6370), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118906] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [118953] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1250), 25, + [113536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119000] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1246), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [119047] = 3, + sym_word, + [113587] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1262), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3126), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119094] = 3, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113684] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 14, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4546), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 25, + ACTIONS(4548), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -166453,62 +174710,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119141] = 3, + [113739] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1226), 25, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [119188] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5528), 1, - sym__special_character, - STATE(2128), 1, - aux_sym__literal_repeat1, - ACTIONS(4084), 13, + ACTIONS(4480), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -166516,12 +174732,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(4086), 24, + ACTIONS(4482), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -166533,558 +174749,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119239] = 3, + [113794] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 25, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3080), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113891] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6373), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119286] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5587), 1, - sym__special_character, - STATE(2254), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1294), 25, + [113952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6376), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119337] = 3, + sym_word, + [114013] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [119384] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5592), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5590), 25, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [119431] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5594), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - STATE(5340), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [119513] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5632), 1, - anon_sym_RPAREN_RPAREN, - STATE(5296), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [119595] = 3, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3090), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114110] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 24, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [119641] = 3, - ACTIONS(71), 1, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3088), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114207] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [119687] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [119733] = 21, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [114258] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + STATE(2135), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4530), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5634), 1, - anon_sym_RPAREN_RPAREN, - STATE(5287), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [119815] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5636), 1, - sym_extglob_pattern, - ACTIONS(5478), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5476), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [119863] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4063), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -167092,12 +175149,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(4065), 25, + ACTIONS(4532), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -167109,6 +175166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -167116,167 +175174,357 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119909] = 3, - ACTIONS(71), 1, + [114313] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6379), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [114374] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1222), 26, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3060), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119955] = 3, - ACTIONS(71), 1, + sym_word, + [114522] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(1263), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1222), 25, + [114573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120001] = 3, - ACTIONS(71), 1, + sym_word, + [114624] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6382), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [120047] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1250), 25, + [114685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -167284,146 +175532,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120093] = 3, - ACTIONS(71), 1, + sym_word, + [114736] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6385), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1254), 25, + [114797] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6388), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120139] = 21, - ACTIONS(71), 1, + sym_word, + [114858] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6391), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5638), 1, - anon_sym_RPAREN_RPAREN, - STATE(5267), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [120221] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1234), 25, + [114919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -167431,380 +175739,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120267] = 3, - ACTIONS(71), 1, + sym_word, + [114970] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 14, - anon_sym_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6394), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5640), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [115031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120313] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5646), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5644), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120359] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5511), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5509), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120405] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_RPAREN_RPAREN, - STATE(5232), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [120487] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5650), 1, - anon_sym_EQ, - ACTIONS(5656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5658), 1, - anon_sym_AMP_AMP, - ACTIONS(5660), 1, - anon_sym_PIPE, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5654), 15, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [120561] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5684), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5682), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120617] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5517), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5515), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120663] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1230), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -167812,619 +175840,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120709] = 3, + sym_word, + [115082] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1222), 24, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, sym__special_character, - [120755] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5686), 1, - anon_sym_RPAREN_RPAREN, - STATE(5334), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [120837] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5690), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5688), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [120883] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5692), 1, - anon_sym_RPAREN_RPAREN, - STATE(5372), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [120965] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [121011] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5684), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5682), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121059] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121109] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [121155] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5694), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121207] = 3, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3014), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115179] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 24, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [121253] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5684), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5682), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121309] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5698), 1, - anon_sym_RPAREN_RPAREN, - STATE(5223), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121391] = 7, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3013), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - anon_sym_DQUOTE, - STATE(3623), 1, - sym_string, - ACTIONS(1171), 2, + ACTIONS(4372), 6, sym_file_descriptor, sym_variable_name, - ACTIONS(5704), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5700), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 23, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168434,10 +176017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168447,2412 +176027,2879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [121445] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5706), 1, - anon_sym_RPAREN_RPAREN, - STATE(5235), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121527] = 7, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [115327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - anon_sym_DQUOTE, - STATE(3623), 1, - sym_string, - ACTIONS(1175), 2, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, sym_file_descriptor, + ACTIONS(6397), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, sym_variable_name, - ACTIONS(5704), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5700), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 23, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [121581] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1979), 12, - anon_sym_PIPE, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1981), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121627] = 3, + sym_word, + [115388] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1230), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121673] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5708), 1, - anon_sym_RPAREN_RPAREN, - STATE(5311), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121755] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3580), 5, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(4788), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4790), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - ACTIONS(3588), 16, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3010), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115485] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3086), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121805] = 3, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115582] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 23, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [121851] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5710), 1, - anon_sym_RPAREN_RPAREN, - STATE(5364), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121933] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5694), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121987] = 5, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3084), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115679] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_RBRACK, - ACTIONS(5712), 1, - sym__concat, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122037] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5714), 1, - anon_sym_RPAREN_RPAREN, - STATE(5295), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122119] = 3, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3008), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115776] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1941), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(1943), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3007), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115873] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, sym__special_character, + ACTIONS(1149), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3129), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122165] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5694), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122221] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5716), 1, - anon_sym_RPAREN_RPAREN, - STATE(5218), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122303] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, - anon_sym_RPAREN_RPAREN, - STATE(5288), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122385] = 5, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115970] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(2430), 1, - aux_sym__literal_repeat1, - ACTIONS(4344), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, aux_sym_number_token1, + ACTIONS(1155), 1, aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4346), 23, - sym_file_descriptor, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, + ACTIONS(1169), 1, sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3148), 1, + sym__expression, + ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122435] = 3, - ACTIONS(71), 1, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116067] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5722), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6400), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122481] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 4, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - ACTIONS(5694), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122541] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5694), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122603] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5726), 1, - sym__special_character, - STATE(2313), 1, - aux_sym__literal_repeat1, - ACTIONS(4230), 12, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4232), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122653] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5728), 1, - sym__special_character, - STATE(2313), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1294), 24, + [116128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122703] = 21, + sym_word, + [116179] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5731), 1, - anon_sym_RPAREN_RPAREN, - STATE(5251), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122785] = 21, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3002), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116276] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5733), 1, - anon_sym_RPAREN_RPAREN, - STATE(5356), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122867] = 3, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3001), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116373] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 24, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122913] = 21, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3083), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116470] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5735), 1, - anon_sym_RPAREN_RPAREN, - STATE(5213), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122995] = 21, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6403), 1, + sym_word, + ACTIONS(6407), 1, + sym_test_operator, + STATE(2547), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6405), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2815), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2546), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116569] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5737), 1, - anon_sym_RPAREN_RPAREN, - STATE(5262), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [123077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5741), 1, - anon_sym_EQ, - ACTIONS(5743), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5739), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [123125] = 12, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3081), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116666] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5694), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [123189] = 3, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3142), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116763] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(3767), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, aux_sym_number_token1, + ACTIONS(377), 1, aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6409), 1, sym_word, - ACTIONS(3769), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6413), 1, sym_test_operator, - sym__brace_start, + STATE(2552), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6411), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2808), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116862] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, sym__special_character, + ACTIONS(1081), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3079), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123235] = 3, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116959] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(4063), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4065), 26, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3078), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5770), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123281] = 9, + aux_sym__simple_variable_name_token1, + sym_word, + [117107] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 21, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123339] = 5, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3000), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117204] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, - sym__concat, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123389] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5747), 1, - anon_sym_RPAREN_RPAREN, - STATE(5308), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [123471] = 8, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3077), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117301] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 22, - sym__concat, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123527] = 4, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(3034), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117398] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5580), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5578), 22, - sym__concat, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_BANG, + ACTIONS(1103), 1, + anon_sym_TILDE, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(5916), 1, + sym__special_character, + ACTIONS(6415), 1, + sym_word, + ACTIONS(6419), 1, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123575] = 21, + STATE(2463), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1101), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6417), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2851), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2455), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117497] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(2996), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5766), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5749), 1, - anon_sym_RPAREN_RPAREN, - STATE(5217), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [123657] = 21, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [117645] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(6421), 1, + sym__special_character, + STATE(2254), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5751), 1, - anon_sym_RPAREN_RPAREN, - STATE(5274), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [123739] = 5, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [117700] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_RBRACK, - ACTIONS(5753), 1, - sym__concat, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6424), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123789] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5696), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [123855] = 5, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [117761] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5467), 1, - anon_sym_RBRACK, - ACTIONS(5755), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3095), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 6, + sym_file_descriptor, sym__concat, - ACTIONS(1185), 14, - anon_sym_EQ, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123905] = 21, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [117909] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(5779), 1, + sym__special_character, + STATE(2717), 1, + aux_sym__literal_repeat1, + STATE(2994), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118006] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6427), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5757), 1, - anon_sym_RPAREN_RPAREN, - STATE(5210), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [123987] = 8, - ACTIONS(71), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118067] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 22, + ACTIONS(1294), 5, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124043] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5759), 1, - anon_sym_RPAREN_RPAREN, - STATE(5337), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [124125] = 3, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118118] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5763), 14, - anon_sym_EQ, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1079), 1, + sym__special_character, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(3042), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1083), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3053), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2500), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118215] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6430), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5761), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124171] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5696), 1, - anon_sym_EQ, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118327] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6433), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124239] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5767), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118388] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(6436), 1, + anon_sym_RPAREN, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5765), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5819), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118449] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3143), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118546] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + sym__special_character, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + STATE(2484), 1, + aux_sym__literal_repeat1, + STATE(3104), 1, + sym__expression, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1137), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1151), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118643] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [118693] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 15, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124285] = 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [118743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6439), 1, + sym__special_character, + STATE(2311), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118797] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + STATE(2293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [118851] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5769), 1, - anon_sym_RPAREN_RPAREN, - STATE(5313), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 12, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(5819), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118909] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5828), 1, + sym_file_descriptor, + ACTIONS(5831), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5821), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5823), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [124367] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(5819), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [118967] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -170867,7 +178914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5771), 24, + ACTIONS(1322), 28, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -170889,13 +178938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [124413] = 3, + aux_sym_concatenation_token1, + [119017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -170910,7 +178961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5771), 24, + ACTIONS(1354), 28, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -170932,13 +178985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [124459] = 3, + aux_sym_concatenation_token1, + [119067] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 15, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -170953,9 +179008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1222), 23, + ACTIONS(1330), 28, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -170975,17 +179032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124505] = 5, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119117] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5484), 1, - anon_sym_RBRACK, - ACTIONS(5775), 1, - sym__concat, - ACTIONS(1185), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -171000,8 +179055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1308), 22, + ACTIONS(1338), 28, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -171021,12 +179079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124555] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119167] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 13, + STATE(2293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -171035,14 +179101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 25, + ACTIONS(4554), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171050,15 +179117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -171066,182 +179133,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124601] = 3, - ACTIONS(71), 1, + [119221] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 12, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4715), 26, + [119277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124647] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [119327] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, + ACTIONS(6443), 1, + sym__special_character, + STATE(2316), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2290), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124693] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124739] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124785] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119493] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + STATE(2285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -171250,14 +179396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 25, + ACTIONS(4566), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171265,15 +179412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -171281,699 +179428,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124831] = 3, + [119547] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, + ACTIONS(6441), 1, + aux_sym_concatenation_token1, + ACTIONS(6445), 1, + sym__concat, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124877] = 15, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [119603] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5606), 1, + ACTIONS(5932), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4261), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4247), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5930), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5696), 1, - anon_sym_EQ, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124947] = 7, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [119657] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(1308), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(4699), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 5, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4696), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4701), 6, + ACTIONS(1310), 27, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4704), 16, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125001] = 21, - ACTIONS(71), 1, + [119707] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2290), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5777), 1, - anon_sym_RPAREN_RPAREN, - STATE(5312), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125083] = 18, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119763] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1292), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 14, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_COLON, - [125159] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125205] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5562), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5560), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 27, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125251] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5779), 1, - anon_sym_RPAREN_RPAREN, - STATE(5299), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125333] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [119813] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 24, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(6447), 1, sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125379] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5781), 1, - anon_sym_RPAREN_RPAREN, - STATE(5322), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125461] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5783), 1, - anon_sym_RPAREN_RPAREN, - STATE(5325), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125543] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5604), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5787), 1, - anon_sym_EQ, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5785), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [125615] = 17, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119869] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 1, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5696), 1, - anon_sym_EQ, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [125689] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 14, + ACTIONS(1316), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -171988,7 +179789,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1238), 24, + ACTIONS(1318), 28, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -172010,78 +179813,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [125735] = 21, + aux_sym_concatenation_token1, + [119975] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(6441), 1, + aux_sym_concatenation_token1, + ACTIONS(6449), 1, + sym__concat, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_RPAREN_RPAREN, - STATE(5366), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125817] = 3, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120031] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1300), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -172091,10 +179887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 25, + ACTIONS(1302), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -172106,6 +179903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -172117,75 +179915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125863] = 21, + [120081] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1304), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5791), 1, - anon_sym_RPAREN_RPAREN, - STATE(5302), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125945] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1244), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -172195,10 +179934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1246), 25, + ACTIONS(1306), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -172210,6 +179950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -172221,53 +179962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125991] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126037] = 3, + [120131] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4706), 12, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6451), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -172276,11 +179979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4708), 26, + ACTIONS(1253), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -172290,6 +179995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -172298,164 +180004,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126083] = 3, - ACTIONS(71), 1, + [120185] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5570), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5568), 24, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(6454), 1, sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126129] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [126175] = 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [120241] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5658), 1, - anon_sym_AMP_AMP, - ACTIONS(5660), 1, - anon_sym_PIPE, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5793), 1, - anon_sym_EQ, - ACTIONS(5795), 1, - anon_sym_EQ_TILDE, - ACTIONS(5797), 1, - anon_sym_QMARK, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 13, + STATE(2285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [126253] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3731), 12, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -172464,11 +180078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3733), 26, + ACTIONS(1263), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -172478,6 +180094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -172486,23 +180103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126299] = 3, + [120295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1308), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -172512,10 +180129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 25, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -172527,6 +180145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -172538,103 +180157,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126345] = 4, + [120345] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5799), 1, - sym_extglob_pattern, - ACTIONS(5478), 14, - anon_sym_EQ, + STATE(2293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2072), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5476), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2074), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126393] = 5, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120399] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5401), 1, - anon_sym_RBRACK, - ACTIONS(5801), 1, - sym__concat, - ACTIONS(1185), 14, - anon_sym_EQ, + ACTIONS(1296), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126443] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -172644,10 +180225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1200), 25, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -172659,6 +180241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -172670,10 +180253,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126489] = 3, + [120449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2290), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [120505] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + STATE(2293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -172682,14 +180320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(2096), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172697,15 +180336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -172713,137 +180352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126535] = 21, + [120559] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5803), 1, - anon_sym_RPAREN_RPAREN, - STATE(5350), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [126617] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_RPAREN_RPAREN, - STATE(5237), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [126699] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -172857,100 +180369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 22, - sym__concat, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126749] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5678), 1, anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 22, + ACTIONS(1346), 28, sym__concat, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126799] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5572), 22, - sym__concat, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172968,482 +180394,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [126851] = 7, - ACTIONS(71), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120609] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5572), 22, - sym__concat, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [126905] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5807), 1, - anon_sym_RPAREN_RPAREN, - STATE(5348), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [126987] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5809), 1, - anon_sym_RPAREN_RPAREN, - STATE(5269), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [127069] = 9, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [120659] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5572), 21, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127127] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5811), 1, - anon_sym_RPAREN_RPAREN, - STATE(5303), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [127209] = 11, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [120709] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5572), 19, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127271] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 17, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127335] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 17, + ACTIONS(1358), 28, sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127401] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, sym_test_operator, - ACTIONS(5574), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5652), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 17, - sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173457,273 +180531,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127469] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5660), 1, - anon_sym_PIPE, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 17, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127539] = 16, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120759] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5658), 1, - anon_sym_AMP_AMP, - ACTIONS(5660), 1, - anon_sym_PIPE, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, + STATE(2285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127611] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(4467), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4469), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127657] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5656), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5658), 1, anon_sym_AMP_AMP, - ACTIONS(5660), 1, - anon_sym_PIPE, - ACTIONS(5662), 1, - anon_sym_CARET, - ACTIONS(5664), 1, - anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5797), 1, - anon_sym_QMARK, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 14, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [127733] = 8, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120813] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5652), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5672), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5676), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5572), 22, + STATE(2285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [127789] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 13, + aux_sym_concatenation_token1, + ACTIONS(5393), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -173732,14 +180606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1242), 25, + ACTIONS(5395), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173747,15 +180622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -173763,57 +180638,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127835] = 3, - ACTIONS(71), 1, + [120867] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 25, + [120917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6456), 1, + sym__special_character, + STATE(2311), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127881] = 3, + sym_word, + [120971] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6459), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1253), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [121025] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, + ACTIONS(1312), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -173823,10 +180802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1242), 25, + ACTIONS(1314), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -173838,6 +180818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -173849,10 +180830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127927] = 3, + [121075] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + STATE(2293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6441), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -173861,14 +180847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(4372), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173876,15 +180863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -173892,10 +180879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127973] = 3, + [121129] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173910,9 +180897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1242), 24, + ACTIONS(1310), 28, + sym__concat, sym_test_operator, - sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -173932,56 +180921,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128019] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121179] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, + ACTIONS(6462), 1, + sym__special_character, + STATE(2316), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128065] = 3, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [121233] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173996,9 +180993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1242), 24, + ACTIONS(1306), 28, + sym__concat, sym_test_operator, - sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -174018,17 +181017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128111] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121283] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1336), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -174038,10 +181041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -174053,6 +181057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -174064,14 +181069,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128157] = 3, + [121333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121383] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -174081,10 +181135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 25, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -174096,6 +181151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -174107,10 +181163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128203] = 3, + [121433] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5592), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -174125,9 +181181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5590), 24, + ACTIONS(1314), 28, sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -174147,59 +181205,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128249] = 21, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121483] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, + ACTIONS(1340), 14, anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5813), 1, - anon_sym_RPAREN_RPAREN, - STATE(5321), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5602), 11, + anon_sym_STAR_STAR, + ACTIONS(1342), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -174211,100 +181246,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [128331] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121533] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 13, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(2329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4708), 25, + [121589] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(2336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128377] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [121645] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128423] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [121701] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 13, + ACTIONS(1356), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -174314,10 +181426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1238), 25, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -174329,6 +181442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -174340,799 +181454,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128469] = 3, - ACTIONS(71), 1, + [121751] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2290), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1258), 25, - sym_file_descriptor, + [121807] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128515] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5815), 1, - anon_sym_RPAREN_RPAREN, - STATE(5245), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [128597] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5817), 1, - anon_sym_RPAREN_RPAREN, - STATE(5264), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [128679] = 21, - ACTIONS(71), 1, + sym_word, + [121863] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(6465), 1, + sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5819), 1, - anon_sym_RPAREN_RPAREN, - STATE(5343), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [128761] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4713), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4715), 25, + [121919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(2336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5176), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5174), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128807] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128853] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128899] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128945] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128991] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [129037] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5694), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [129085] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5821), 1, - anon_sym_RPAREN_RPAREN, - STATE(5297), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129167] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5823), 1, - anon_sym_RPAREN_RPAREN, - STATE(5239), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129249] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [121975] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1308), 24, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, sym__concat, + STATE(2329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5178), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129295] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129341] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [122031] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, + ACTIONS(6467), 1, + sym__special_character, + STATE(2345), 1, + aux_sym__literal_repeat1, + ACTIONS(241), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129387] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4784), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(4786), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4692), 10, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175141,21 +181727,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4704), 22, + ACTIONS(278), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -175164,79 +181753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129437] = 21, + [122085] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1328), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5825), 1, - anon_sym_RPAREN_RPAREN, - STATE(5306), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129519] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5827), 1, - sym__special_character, - STATE(2430), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175244,11 +181770,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 23, + ACTIONS(1330), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -175260,710 +181788,657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129569] = 21, + [122135] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1348), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5830), 1, - anon_sym_RPAREN_RPAREN, - STATE(5328), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129651] = 21, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122185] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1352), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5832), 1, - anon_sym_RPAREN_RPAREN, - STATE(5242), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129733] = 21, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122235] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(6469), 1, + sym__concat, + STATE(1371), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5834), 1, - anon_sym_RPAREN_RPAREN, - STATE(5301), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129815] = 21, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [122291] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5836), 1, - anon_sym_RPAREN_RPAREN, - STATE(5368), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129897] = 21, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [122347] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5838), 1, - anon_sym_RPAREN_RPAREN, - STATE(5246), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [129979] = 21, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [122397] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(1340), 15, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5840), 1, - anon_sym_RPAREN_RPAREN, - STATE(5342), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [130061] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5638), 1, + aux_sym_concatenation_token1, + ACTIONS(5640), 1, + sym__concat, + STATE(2290), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5842), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5393), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [122503] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 15, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [130106] = 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, + ACTIONS(5664), 1, + aux_sym_concatenation_token1, + ACTIONS(5666), 1, + sym__concat, + STATE(2329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1261), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [130161] = 11, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [122609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, + ACTIONS(1320), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130222] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5874), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5876), 1, - anon_sym_EQ, - ACTIONS(5880), 1, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, anon_sym_AMP_AMP, - ACTIONS(5884), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122659] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 15, anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_EQ_TILDE, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5878), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [130301] = 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122709] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, + ACTIONS(6471), 1, + sym__special_character, + STATE(2345), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 25, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130356] = 9, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122763] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, + ACTIONS(1312), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130413] = 4, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122812] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5910), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5908), 34, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + STATE(2466), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -175972,43 +182447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [130460] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, + sym__special_character, + ACTIONS(1263), 23, sym_test_operator, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5582), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5860), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -176022,157 +182465,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130525] = 20, + [122865] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5874), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5912), 1, - anon_sym_EQ, - ACTIONS(5916), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, + ACTIONS(1336), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5940), 1, - anon_sym_EQ_TILDE, - ACTIONS(5942), 1, - anon_sym_QMARK, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5914), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [130604] = 3, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122914] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6482), 1, + anon_sym_esac, + ACTIONS(6484), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 36, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7044), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3236), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6478), 3, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123009] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6514), 1, + aux_sym_concatenation_token1, + ACTIONS(6516), 1, + sym__concat, + STATE(2359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123064] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [130649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1263), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123113] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6518), 1, + sym__special_character, + STATE(2366), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4566), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [130694] = 4, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123166] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6522), 1, + anon_sym_esac, + ACTIONS(6524), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7056), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6520), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123261] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5946), 1, - anon_sym_LBRACK, - ACTIONS(5263), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -176187,7 +182817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5261), 22, + ACTIONS(1302), 27, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -176207,13 +182840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130741] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [123310] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1185), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -176228,8 +182863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1308), 23, + ACTIONS(1334), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -176249,385 +182886,586 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130786] = 14, + anon_sym_COLON, + aux_sym_concatenation_token1, + [123359] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5574), 2, - anon_sym_EQ, + STATE(2424), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6526), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_PIPE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130853] = 6, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123412] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, - anon_sym_EQ, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5572), 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2096), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130904] = 15, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123465] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(5884), 1, - anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6530), 1, + anon_sym_esac, + ACTIONS(6532), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7005), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3385), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6528), 3, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123560] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6534), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130973] = 8, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123613] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6539), 1, + anon_sym_esac, + ACTIONS(6541), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7275), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3452), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6537), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123708] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6545), 1, + anon_sym_esac, + ACTIONS(6547), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7134), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3451), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6543), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123803] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, + ACTIONS(1344), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131028] = 18, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123852] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, - anon_sym_AMP_AMP, - ACTIONS(5884), 1, + ACTIONS(1356), 14, anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 13, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - [131103] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [131178] = 16, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123901] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6551), 1, + anon_sym_esac, + ACTIONS(6553), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7007), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3386), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6549), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(2385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5478), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5476), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5884), 1, anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131249] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [124051] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(6555), 1, + sym__special_character, + STATE(2366), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -176635,11 +183473,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1222), 24, + ACTIONS(1364), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -176651,9 +183489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -176662,281 +183500,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131294] = 3, - ACTIONS(71), 1, + [124104] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5560), 23, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(2403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5470), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5468), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131339] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [124159] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1281), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131402] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124208] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131447] = 20, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124261] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5874), 1, - anon_sym_RBRACK, - ACTIONS(5976), 1, - anon_sym_EQ, - ACTIONS(5982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, - anon_sym_AMP_AMP, - ACTIONS(5986), 1, + ACTIONS(6518), 1, + sym__special_character, + STATE(2366), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 14, anon_sym_PIPE, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6006), 1, - anon_sym_EQ_TILDE, - ACTIONS(6008), 1, - anon_sym_QMARK, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4469), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5980), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [131526] = 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124314] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, + STATE(2429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131581] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124367] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6560), 1, + anon_sym_esac, + ACTIONS(6562), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 36, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6851), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3377), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6558), 3, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124462] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6564), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1263), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124515] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1261), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -176945,14 +183878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [131626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 36, - anon_sym_SEMI, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1263), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -176967,115 +183896,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124568] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [131671] = 3, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124617] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6568), 1, + anon_sym_esac, + ACTIONS(6570), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 36, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6997), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3383), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6566), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124712] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6574), 1, + anon_sym_esac, + ACTIONS(6576), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7603), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3440), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6572), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124807] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6580), 1, + anon_sym_esac, + ACTIONS(6582), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6824), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3378), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6578), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124902] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6586), 1, + anon_sym_esac, + ACTIONS(6588), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6991), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3382), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6584), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124997] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [131716] = 19, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [125095] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5876), 1, + STATE(2555), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 15, anon_sym_EQ, - ACTIONS(5880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, - anon_sym_AMP_AMP, - ACTIONS(5884), 1, anon_sym_PIPE, - ACTIONS(5886), 1, anon_sym_CARET, - ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_EQ_TILDE, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5866), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 12, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1263), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -177087,13 +184357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [131793] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [125148] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5580), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177108,8 +184384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5578), 21, + ACTIONS(1298), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -177127,85 +184407,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131840] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [125197] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(6590), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1265), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [131885] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [125301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(5846), 1, + sym__concat, + STATE(2385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1261), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [125356] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1369), 1, + sym_test_operator, + STATE(2575), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6594), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -177214,13 +184581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [131930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 36, - anon_sym_SEMI, + ACTIONS(6592), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -177236,245 +184598,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [131975] = 20, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [125411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5912), 1, - anon_sym_EQ, - ACTIONS(5916), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, + ACTIONS(1296), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5940), 1, - anon_sym_EQ_TILDE, - ACTIONS(5942), 1, - anon_sym_QMARK, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(6012), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5914), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [132054] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5572), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132099] = 19, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125460] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(2404), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_COLON, - [132176] = 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [125515] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5650), 1, - anon_sym_EQ, - ACTIONS(5916), 1, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125564] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, + aux_sym_concatenation_token1, + ACTIONS(6596), 1, + sym__concat, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5654), 14, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132249] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [125619] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(1251), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177489,8 +184813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5568), 23, + ACTIONS(1253), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -177510,84 +184836,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132294] = 9, + anon_sym_COLON, + aux_sym_concatenation_token1, + [125668] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5864), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132351] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5866), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1326), 27, + sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -177605,242 +184882,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132404] = 16, + anon_sym_COLON, + aux_sym_concatenation_token1, + [125717] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5958), 1, - anon_sym_AMP_AMP, - ACTIONS(5960), 1, + ACTIONS(6518), 1, + sym__special_character, + STATE(2366), 1, + aux_sym__literal_repeat1, + ACTIONS(4480), 14, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132475] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5976), 1, - anon_sym_EQ, - ACTIONS(5982), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4482), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, anon_sym_AMP_AMP, - ACTIONS(5986), 1, - anon_sym_PIPE, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6006), 1, - anon_sym_EQ_TILDE, - ACTIONS(6008), 1, - anon_sym_QMARK, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5980), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [132554] = 15, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125770] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5960), 1, + STATE(2407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6564), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5178), 14, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5180), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132623] = 14, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125823] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5574), 2, - anon_sym_EQ, + STATE(2429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 13, anon_sym_PIPE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132690] = 6, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125876] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, + ACTIONS(1369), 1, + sym_test_operator, + STATE(2575), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6600), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177851,9 +185052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5572), 21, - sym_test_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6598), 23, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -177873,652 +185080,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132741] = 13, + [125931] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, + ACTIONS(1292), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132806] = 20, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125980] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6018), 1, - anon_sym_EQ, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, + ACTIONS(1328), 14, anon_sym_PIPE, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(6038), 1, - anon_sym_RPAREN, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6020), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [132885] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6046), 1, - anon_sym_esac, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5719), 1, - sym_last_case_item, - ACTIONS(6044), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2845), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132974] = 25, + [126029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1320), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6064), 1, - anon_sym_esac, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5721), 1, - sym_last_case_item, - ACTIONS(6044), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133063] = 25, + [126078] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(5315), 1, - anon_sym_esac, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5750), 1, - sym_last_case_item, - ACTIONS(6044), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2849), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133152] = 25, + [126127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(5327), 1, - anon_sym_esac, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5752), 1, - sym_last_case_item, - ACTIONS(6044), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2851), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133241] = 4, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [126231] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(6604), 1, sym__concat, - ACTIONS(5511), 14, - anon_sym_EQ, + STATE(1704), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5509), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133288] = 4, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [126286] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6068), 1, + STATE(2407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6564), 2, sym__concat, - ACTIONS(5517), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(5067), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5515), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5069), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133335] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126339] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, - anon_sym_EQ, + STATE(2426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6564), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5373), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5375), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133384] = 17, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126392] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5650), 1, - anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, + ACTIONS(6564), 1, + aux_sym_concatenation_token1, + ACTIONS(6606), 1, + sym__concat, + STATE(2435), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_PIPE, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5654), 14, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133457] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1267), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6072), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [133536] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126447] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + STATE(2495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -178527,54 +185576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [133581] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, - anon_sym_AMP_AMP, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, + ACTIONS(1263), 24, sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6074), 1, - anon_sym_COLON, - ACTIONS(5582), 2, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -178586,132 +185592,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [133660] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, - anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5618), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6076), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [133737] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, - anon_sym_AMP_AMP, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, anon_sym_EQ_TILDE, - ACTIONS(6078), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [133816] = 5, + anon_sym_QMARK, + sym__special_character, + [126500] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178725,8 +185623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1263), 24, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -178744,597 +185645,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133865] = 5, + anon_sym_COLON, + sym__special_character, + [126553] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6610), 1, + anon_sym_esac, + ACTIONS(6612), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7451), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3420), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6608), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126648] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6616), 1, + anon_sym_esac, + ACTIONS(6618), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7440), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6614), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126743] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, - anon_sym_EQ, + ACTIONS(1348), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133914] = 4, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126792] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6080), 1, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, sym__concat, - ACTIONS(5511), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(4552), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5509), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4554), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133961] = 7, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126845] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6622), 1, + anon_sym_esac, + ACTIONS(6624), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7413), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3416), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6620), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126940] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, + STATE(2429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5572), 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4566), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134014] = 9, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126993] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, + sym__special_character, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, + anon_sym_BQUOTE, + ACTIONS(6504), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6628), 1, + anon_sym_esac, + ACTIONS(6630), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7402), 1, + sym_last_case_item, + ACTIONS(6476), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6506), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6626), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127088] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6518), 1, + sym__special_character, + STATE(2366), 1, + aux_sym__literal_repeat1, + ACTIONS(4546), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4548), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134071] = 17, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127141] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, - anon_sym_EQ, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(5880), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, anon_sym_AMP_AMP, - ACTIONS(5884), 1, anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5654), 14, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134144] = 11, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [127190] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5928), 2, + STATE(2426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6564), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5174), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5176), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134205] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134268] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134333] = 14, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127243] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5574), 2, - anon_sym_EQ, + ACTIONS(1316), 14, anon_sym_PIPE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134400] = 15, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5920), 1, + ACTIONS(1308), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134469] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134540] = 7, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - anon_sym_DQUOTE, - STATE(3623), 1, - sym_string, - ACTIONS(1175), 2, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(2391), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, sym_file_descriptor, - sym_variable_name, - ACTIONS(5704), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5700), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 22, - anon_sym_SEMI, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -179344,317 +186333,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [134593] = 12, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [127396] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [134656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6082), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1304), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [134701] = 19, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127445] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5912), 1, - anon_sym_EQ, - ACTIONS(5916), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, + ACTIONS(6526), 1, + aux_sym_concatenation_token1, + ACTIONS(6632), 1, + sym__concat, + STATE(2425), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5940), 1, - anon_sym_EQ_TILDE, - ACTIONS(5942), 1, - anon_sym_QMARK, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - [134778] = 18, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127500] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5916), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, + STATE(2425), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6634), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5942), 1, - anon_sym_QMARK, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [134853] = 8, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127553] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, + ACTIONS(6564), 1, + aux_sym_concatenation_token1, + ACTIONS(6637), 1, + sym__concat, + STATE(2435), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1288), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134908] = 25, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127608] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2072), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2074), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127661] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6490), 1, sym__special_character, - ACTIONS(6052), 1, + ACTIONS(6492), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6502), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, + ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6086), 1, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6641), 1, anon_sym_esac, - STATE(5126), 1, + ACTIONS(6643), 1, + aux_sym_heredoc_redirect_token1, + STATE(6426), 1, aux_sym__literal_repeat1, - STATE(5663), 1, + STATE(7528), 1, sym_last_case_item, - ACTIONS(6044), 2, + ACTIONS(6476), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, + ACTIONS(6506), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2780), 2, + STATE(3310), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(5281), 2, + STATE(6695), 2, sym_concatenation, sym__extglob_blob, - STATE(5034), 9, + ACTIONS(6474), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6639), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -179664,235 +186659,225 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [134997] = 25, + [127756] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(6514), 1, + aux_sym_concatenation_token1, + ACTIONS(6645), 1, + sym__concat, + STATE(2359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6088), 1, - anon_sym_esac, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5679), 1, - sym_last_case_item, - ACTIONS(6044), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127811] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2779), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [135086] = 5, + [127860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, + ACTIONS(5920), 1, + aux_sym_concatenation_token1, + ACTIONS(5946), 1, + sym__concat, + STATE(2404), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 33, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5393), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [135135] = 5, - ACTIONS(3), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [127915] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 33, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + STATE(2429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4469), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [135184] = 11, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127968] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, + STATE(2491), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1077), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5572), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [135245] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5950), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5952), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_STAR_STAR, + ACTIONS(1263), 24, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -179910,231 +186895,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [135300] = 4, + sym__special_character, + [128021] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6090), 1, + STATE(2429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, sym__concat, - ACTIONS(5532), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(5067), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5530), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5069), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135347] = 25, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128074] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + STATE(2435), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6647), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1253), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6092), 1, - anon_sym_esac, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6011), 1, - sym_last_case_item, - ACTIONS(6044), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128127] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4372), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2708), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [135436] = 4, + [128180] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6094), 1, + STATE(2424), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6526), 2, sym__concat, - ACTIONS(5538), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(5393), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5536), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135483] = 6, - ACTIONS(3), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128233] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + STATE(2441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6526), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - [135534] = 8, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128286] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, + ACTIONS(1292), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5950), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5952), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_STAR_STAR, + ACTIONS(1294), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180152,206 +187180,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [135589] = 25, + aux_sym_concatenation_token1, + [128335] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + STATE(2350), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6514), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5373), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5375), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6096), 1, - anon_sym_esac, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6012), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2696), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [135678] = 7, - ACTIONS(3), 1, + [128388] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6526), 1, + aux_sym_concatenation_token1, + ACTIONS(6650), 1, + sym__concat, + STATE(2425), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - [135731] = 20, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6018), 1, + ACTIONS(1348), 14, anon_sym_EQ, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(6098), 1, - anon_sym_RPAREN, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6020), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [135810] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, anon_sym_STAR_STAR, - ACTIONS(5974), 1, + ACTIONS(1350), 27, + sym__concat, sym_test_operator, - ACTIONS(5582), 2, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180369,15 +187323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [135867] = 4, + aux_sym_concatenation_token1, + [128492] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6100), 1, + ACTIONS(1312), 14, anon_sym_EQ, - ACTIONS(5739), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -180391,8 +187346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5743), 23, - anon_sym_COMMA, + ACTIONS(1314), 26, + sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -180407,42 +187364,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [135914] = 8, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [128540] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5864), 2, + ACTIONS(1328), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1330), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128588] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6654), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(354), 22, sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180462,14 +187467,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135969] = 5, + [128644] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6102), 1, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, sym__special_character, - STATE(2533), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 12, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128692] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -180478,12 +187524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 23, + ACTIONS(1350), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -180491,49 +187540,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128740] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136018] = 9, + [128788] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5998), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128836] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128884] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180554,33 +187739,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136075] = 8, + [128936] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5998), 2, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1342), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128984] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2564), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6656), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1263), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129036] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129084] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6658), 1, + anon_sym_RBRACK, + ACTIONS(6660), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180598,16 +187923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136130] = 4, + [129140] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5580), 14, + STATE(2575), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180622,8 +187948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5578), 21, + ACTIONS(1369), 23, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180641,36 +187970,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136177] = 8, + [129192] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5998), 2, + ACTIONS(6662), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5395), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129244] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2550), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129296] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6666), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1267), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180688,187 +188111,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136232] = 9, - ACTIONS(3), 1, + anon_sym_COLON, + [129350] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, + STATE(2494), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6668), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [136289] = 9, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129402] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6670), 1, + anon_sym_RBRACK, + ACTIONS(6672), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [136346] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5852), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6105), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [136405] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(5848), 2, + ACTIONS(1369), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 19, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180881,148 +188203,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - [136466] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_CARET, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5846), 18, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - [136529] = 13, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129458] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_CARET, - ACTIONS(6113), 1, + ACTIONS(1296), 14, anon_sym_PIPE, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [136594] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129506] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1207), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6674), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -181031,32 +188281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [136639] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, + ACTIONS(354), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5572), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181076,20 +188304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [136692] = 6, + [129562] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, + STATE(2464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6676), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181100,8 +188323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5572), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1253), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181119,72 +188348,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [136743] = 20, + [129614] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5876), 1, - anon_sym_EQ, - ACTIONS(5880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, - anon_sym_AMP_AMP, - ACTIONS(5884), 1, + ACTIONS(1352), 14, anon_sym_PIPE, - ACTIONS(5886), 1, - anon_sym_CARET, - ACTIONS(5888), 1, - anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_EQ_TILDE, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(6012), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1354), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5878), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [136822] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129662] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5592), 14, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6679), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181199,7 +188420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5590), 23, + ACTIONS(1267), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -181220,175 +188441,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136867] = 20, + [129716] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5912), 1, - anon_sym_EQ, - ACTIONS(5916), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5918), 1, - anon_sym_AMP_AMP, - ACTIONS(5920), 1, + ACTIONS(1356), 14, anon_sym_PIPE, - ACTIONS(5922), 1, - anon_sym_CARET, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5940), 1, - anon_sym_EQ_TILDE, - ACTIONS(5942), 1, - anon_sym_QMARK, - ACTIONS(5944), 1, - sym_test_operator, - ACTIONS(6115), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5926), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5930), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5932), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1358), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5914), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [136946] = 20, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129764] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_EQ, - ACTIONS(5982), 1, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1346), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, anon_sym_AMP_AMP, - ACTIONS(5986), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129812] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, anon_sym_PIPE, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6006), 1, - anon_sym_EQ_TILDE, - ACTIONS(6008), 1, - anon_sym_QMARK, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(6115), 1, - anon_sym_RBRACK, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5980), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [137025] = 5, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129860] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, - anon_sym_EQ, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6681), 1, + sym__concat, + STATE(1879), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [129914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6683), 1, + sym__concat, + STATE(1879), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 33, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [137074] = 3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [129968] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5592), 14, + ACTIONS(6652), 1, + sym__special_character, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181403,7 +188697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5590), 23, + ACTIONS(354), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -181424,96 +188719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137119] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_CARET, - ACTIONS(6113), 1, - anon_sym_PIPE, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6117), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [137186] = 3, - ACTIONS(3), 1, + [130020] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6685), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -181522,132 +188746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [137231] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(5858), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_CARET, - ACTIONS(6113), 1, - anon_sym_PIPE, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6117), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6119), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5846), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [137300] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + ACTIONS(1288), 23, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(5335), 1, - anon_sym_esac, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6035), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2695), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [137389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6123), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6121), 36, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -181662,32 +188762,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [137434] = 4, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130074] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6125), 1, + ACTIONS(6687), 1, + sym__special_character, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, anon_sym_EQ, - ACTIONS(5739), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -181701,9 +188792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5743), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1364), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -181718,22 +188809,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [137481] = 5, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130126] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1077), 1, + aux_sym_concatenation_token1, + ACTIONS(6690), 1, + sym__concat, + STATE(2464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181747,8 +188840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181766,81 +188862,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [137530] = 25, + [130180] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(6662), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(5723), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(5369), 1, - anon_sym_esac, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6037), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2693), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [137619] = 5, + [130232] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6127), 1, - sym__special_character, - STATE(2533), 1, - aux_sym__literal_repeat1, - ACTIONS(4230), 12, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181852,9 +188927,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4232), 23, + ACTIONS(1338), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -181869,263 +188948,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137668] = 20, + [130280] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, - anon_sym_AMP_AMP, - ACTIONS(5960), 1, + ACTIONS(1300), 14, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6129), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [137747] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6018), 1, - anon_sym_EQ, - ACTIONS(6022), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, anon_sym_AMP_AMP, - ACTIONS(6026), 1, - anon_sym_PIPE, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(6131), 1, - anon_sym_RPAREN, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130328] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6020), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [137826] = 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1261), 33, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [137871] = 16, - ACTIONS(3), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [130430] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 1, - anon_sym_STAR_STAR, - ACTIONS(6109), 1, - anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_CARET, - ACTIONS(6113), 1, + ACTIONS(1332), 13, anon_sym_PIPE, - ACTIONS(6137), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5848), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5850), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5852), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6117), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6119), 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(6133), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5854), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6105), 4, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130478] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6135), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [137942] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130526] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6141), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6139), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6692), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130578] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6695), 1, + sym__special_character, + STATE(2557), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -182134,14 +189254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [137987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6143), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(354), 24, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182156,68 +189271,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [138032] = 17, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130630] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(1320), 14, anon_sym_EQ, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, - anon_sym_AMP_AMP, - ACTIONS(5960), 1, anon_sym_PIPE, - ACTIONS(5962), 1, anon_sym_CARET, - ACTIONS(5964), 1, anon_sym_AMP, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5950), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5654), 14, + anon_sym_STAR_STAR, + ACTIONS(1322), 26, + sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182229,13 +189314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [138105] = 3, + [130678] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 13, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6697), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182248,8 +189345,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 24, + ACTIONS(1253), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -182270,73 +189368,208 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138150] = 20, + [130730] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, + STATE(2543), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130782] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6668), 1, + aux_sym_concatenation_token1, + ACTIONS(6700), 1, + sym__concat, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6147), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130836] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2488), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6668), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130888] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2494), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6668), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [138229] = 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130940] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5562), 14, + ACTIONS(1077), 1, + aux_sym_concatenation_token1, + ACTIONS(6702), 1, + sym__concat, + STATE(2464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182351,7 +189584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5560), 23, + ACTIONS(1267), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182372,91 +189605,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138274] = 3, - ACTIONS(3), 1, + [130994] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6141), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6139), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1261), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [138319] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6162), 1, - anon_sym_LT_LT_LT, - ACTIONS(6165), 1, - sym_file_descriptor, - ACTIONS(6168), 1, - sym_variable_name, - STATE(5442), 1, - sym_subscript, - ACTIONS(6159), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(2573), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3000), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(6156), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(6149), 5, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(6153), 5, + ACTIONS(1263), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131042] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2550), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(6151), 14, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 24, + sym_file_descriptor, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -182464,101 +189697,86 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138382] = 8, + [131094] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5998), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, + ACTIONS(6668), 1, + aux_sym_concatenation_token1, + ACTIONS(6704), 1, + sym__concat, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 23, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [138437] = 18, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131148] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6706), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, - ACTIONS(5982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, - anon_sym_AMP_AMP, - ACTIONS(5986), 1, anon_sym_PIPE, - ACTIONS(5988), 1, anon_sym_CARET, - ACTIONS(5990), 1, anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6008), 1, - anon_sym_QMARK, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6002), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 13, + anon_sym_STAR_STAR, + ACTIONS(1267), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182570,218 +189788,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [138512] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5976), 1, - anon_sym_EQ, - ACTIONS(5982), 1, anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, anon_sym_AMP_AMP, - ACTIONS(5986), 1, - anon_sym_PIPE, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6006), 1, - anon_sym_EQ_TILDE, - ACTIONS(6008), 1, - anon_sym_QMARK, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5994), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5996), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5998), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [138589] = 25, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131202] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(5321), 1, - anon_sym_esac, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5751), 1, - sym_last_case_item, - ACTIONS(6044), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2757), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [138678] = 20, + [131250] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5872), 1, - sym_test_operator, - ACTIONS(5876), 1, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6708), 1, + anon_sym_RBRACK, + ACTIONS(6710), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, - ACTIONS(5880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5882), 1, - anon_sym_AMP_AMP, - ACTIONS(5884), 1, anon_sym_PIPE, - ACTIONS(5886), 1, anon_sym_CARET, - ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_EQ_TILDE, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5862), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5866), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5890), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5868), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5878), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [138757] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5870), 1, anon_sym_STAR_STAR, - ACTIONS(5872), 1, + ACTIONS(1369), 22, sym_test_operator, - ACTIONS(5582), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5864), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 20, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182801,99 +189890,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138814] = 16, + [131306] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5984), 1, - anon_sym_AMP_AMP, - ACTIONS(5986), 1, + ACTIONS(1300), 13, anon_sym_PIPE, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [138885] = 15, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131354] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131402] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1077), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, - ACTIONS(5986), 1, anon_sym_PIPE, - ACTIONS(5988), 1, anon_sym_CARET, - ACTIONS(5990), 1, anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6002), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 16, + anon_sym_STAR_STAR, + ACTIONS(1369), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182907,13 +190020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138954] = 3, + [131454] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1185), 14, + ACTIONS(1203), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6712), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182928,7 +190053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1308), 23, + ACTIONS(354), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182949,68 +190074,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138999] = 14, + [131510] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5988), 1, - anon_sym_CARET, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5574), 2, - anon_sym_EQ, + ACTIONS(1296), 13, anon_sym_PIPE, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139066] = 4, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131558] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6171), 1, - anon_sym_LBRACK, - ACTIONS(5263), 14, + STATE(2473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183025,7 +190144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5261), 22, + ACTIONS(1369), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183045,144 +190165,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139113] = 13, + [131610] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, + ACTIONS(1292), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139178] = 12, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131658] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139241] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6002), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 18, + anon_sym_STAR_STAR, + ACTIONS(1338), 26, + sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183198,13 +190252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139302] = 3, + anon_sym_COLON, + [131706] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 14, + ACTIONS(1369), 1, + sym_test_operator, + STATE(2475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1077), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6600), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183219,8 +190283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5572), 23, - sym_test_operator, + ACTIONS(6598), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183240,85 +190303,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139347] = 9, + [131760] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5998), 2, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131808] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139404] = 9, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131856] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5944), 1, + ACTIONS(1369), 1, sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + STATE(2475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1077), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6594), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5934), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5936), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 20, + anon_sym_STAR_STAR, + ACTIONS(6592), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183336,15 +190441,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139461] = 4, + [131910] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131958] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6173), 1, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6714), 2, sym__concat, - ACTIONS(5538), 14, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183359,7 +190512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5536), 22, + ACTIONS(1253), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183379,117 +190533,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139508] = 7, - ACTIONS(3), 1, + [132010] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(2940), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - sym_string, - ACTIONS(6177), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6175), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 23, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132058] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132106] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [139561] = 7, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132154] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1171), 1, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 27, sym_file_descriptor, - ACTIONS(2940), 1, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - STATE(3669), 1, - sym_string, - ACTIONS(6177), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6175), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132202] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 23, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132250] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132298] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [139614] = 7, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132346] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183498,8 +190863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5572), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183517,22 +190892,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139667] = 6, + anon_sym_COLON, + [132394] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132442] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183543,8 +190960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5572), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183565,15 +190988,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139718] = 5, + [132494] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(4552), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4554), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132542] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132590] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183587,8 +191095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1354), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183606,133 +191119,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139767] = 20, + anon_sym_COLON, + [132638] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6018), 1, - anon_sym_EQ, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, + ACTIONS(1348), 13, anon_sym_PIPE, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(6179), 1, - anon_sym_RPAREN, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6020), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [139846] = 20, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132686] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132734] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6181), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1306), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5968), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132782] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(5970), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [139925] = 4, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132830] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6183), 1, - sym__concat, - ACTIONS(5532), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183747,7 +191321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5530), 22, + ACTIONS(1310), 26, + sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183767,57 +191344,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139972] = 20, + anon_sym_COLON, + [132878] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6018), 1, + ACTIONS(1304), 14, anon_sym_EQ, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(6185), 1, - anon_sym_RPAREN, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6020), 11, + anon_sym_STAR_STAR, + ACTIONS(1306), 26, + sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183829,15 +191383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140051] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [132926] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183851,8 +191410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1310), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183870,13 +191434,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140100] = 3, + anon_sym_COLON, + [132974] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6662), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4469), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133026] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 14, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6717), 1, + sym__concat, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183891,7 +191509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5572), 23, + ACTIONS(1288), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183915,34 +191533,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140145] = 8, + [133080] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5864), 2, + ACTIONS(4370), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4372), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133128] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133176] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133224] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1263), 23, sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183962,33 +191714,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140200] = 8, + sym__special_character, + [133276] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + STATE(2564), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6656), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5476), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5478), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133328] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6656), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5468), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5470), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133380] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6719), 1, + sym__concat, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1267), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184006,53 +191854,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140255] = 18, + [133434] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, + ACTIONS(6662), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5697), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133486] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133534] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6664), 1, + aux_sym_concatenation_token1, + ACTIONS(6721), 1, + sym__concat, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133588] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133636] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1334), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6022), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, anon_sym_AMP_AMP, - ACTIONS(6026), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133684] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6723), 1, + anon_sym_RBRACK, + ACTIONS(6725), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 13, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184064,54 +192128,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, - [140330] = 19, + anon_sym_QMARK, + [133740] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6018), 1, + ACTIONS(1123), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6727), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, - ACTIONS(6022), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6024), 1, - anon_sym_AMP_AMP, - ACTIONS(6026), 1, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(6040), 1, - anon_sym_EQ_TILDE, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 12, + anon_sym_STAR_STAR, + ACTIONS(354), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184123,47 +192177,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [140407] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133796] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6729), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1253), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6024), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6026), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133848] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6732), 1, + anon_sym_RBRACK, + ACTIONS(6734), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 15, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184176,36 +192274,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140478] = 8, + [133904] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(6664), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5936), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133958] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6738), 1, + sym__concat, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184223,47 +192374,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140533] = 15, + [134012] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(1119), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6740), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6026), 1, anon_sym_PIPE, - ACTIONS(6028), 1, anon_sym_CARET, - ACTIONS(6030), 1, anon_sym_AMP, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 16, + anon_sym_STAR_STAR, + ACTIONS(354), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184277,83 +192420,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [140602] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134068] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5864), 2, + ACTIONS(6656), 1, + aux_sym_concatenation_token1, + ACTIONS(6742), 1, + sym__concat, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1288), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5866), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134122] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [140657] = 8, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134170] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5938), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5932), 2, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6744), 1, + sym__concat, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5934), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5936), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5580), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5578), 21, + anon_sym_STAR_STAR, + ACTIONS(1267), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184371,97 +192564,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140712] = 7, - ACTIONS(3), 1, + [134224] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5702), 1, - anon_sym_DQUOTE, - STATE(3623), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5704), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5700), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4463), 14, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4465), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [140765] = 17, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134272] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(6746), 1, + sym__special_character, + STATE(2557), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, anon_sym_EQ, - ACTIONS(5982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5984), 1, - anon_sym_AMP_AMP, - ACTIONS(5986), 1, anon_sym_PIPE, - ACTIONS(5988), 1, anon_sym_CARET, - ACTIONS(5990), 1, anon_sym_AMP, - ACTIONS(6004), 1, - anon_sym_STAR_STAR, - ACTIONS(6010), 1, - sym_test_operator, - ACTIONS(5978), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5992), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5994), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5996), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5998), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6002), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5654), 14, + anon_sym_STAR_STAR, + ACTIONS(1364), 24, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184473,169 +192650,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [140838] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5954), 1, - anon_sym_STAR_STAR, - ACTIONS(5956), 1, anon_sym_PIPE_PIPE, - ACTIONS(5958), 1, anon_sym_AMP_AMP, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(5962), 1, - anon_sym_CARET, - ACTIONS(5964), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_QMARK, - ACTIONS(5974), 1, - sym_test_operator, - ACTIONS(6014), 1, - anon_sym_EQ, - ACTIONS(6016), 1, - anon_sym_EQ_TILDE, - ACTIONS(6187), 1, - anon_sym_COLON, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5948), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5950), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5966), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5970), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5952), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6070), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [140917] = 25, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [134324] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(4530), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(4532), 26, + sym_file_descriptor, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(5393), 1, - anon_sym_esac, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5761), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2754), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [141006] = 14, + [134372] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(5574), 2, + ACTIONS(6753), 1, + sym_extglob_pattern, + ACTIONS(6751), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 16, + anon_sym_STAR_STAR, + ACTIONS(6749), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184649,13 +192742,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141073] = 3, + anon_sym_COLON, + [134422] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134470] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(1097), 1, + anon_sym_RBRACK, + ACTIONS(6652), 1, + sym__special_character, + ACTIONS(6755), 1, + sym__concat, + STATE(2474), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184670,7 +192821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5568), 23, + ACTIONS(354), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -184691,45 +192842,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141118] = 13, + [134526] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(6030), 1, - anon_sym_AMP, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, + ACTIONS(5460), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5574), 3, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5462), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134574] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(6757), 1, + anon_sym_RBRACK, + ACTIONS(6759), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5902), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 16, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184743,217 +192932,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141183] = 12, + [134630] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + ACTIONS(6656), 1, + aux_sym_concatenation_token1, + ACTIONS(6761), 1, + sym__concat, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1267), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6032), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6034), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134684] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141246] = 11, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + ACTIONS(1348), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1350), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6034), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134780] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6036), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141307] = 9, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134828] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5906), 1, + ACTIONS(6763), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5898), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134880] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6662), 1, + sym__special_character, + STATE(2568), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4566), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134932] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5572), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141364] = 7, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134980] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5900), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, + ACTIONS(1320), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5572), 21, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(2471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 33, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141417] = 6, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [135082] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5902), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, + STATE(2582), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184964,8 +193372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5572), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184983,18 +193397,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141468] = 5, + anon_sym_COLON, + [135134] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1296), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1298), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135182] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6766), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185008,8 +193468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185027,18 +193491,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141517] = 5, + [135236] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5904), 1, - anon_sym_STAR_STAR, - ACTIONS(5896), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1328), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135284] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 1, + aux_sym_concatenation_token1, + ACTIONS(6015), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [135386] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135434] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1253), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135482] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135530] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6768), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185052,8 +193789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185071,15 +193811,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141566] = 4, + anon_sym_COLON, + [135584] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6189), 1, + ACTIONS(1328), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 26, + sym_file_descriptor, sym__concat, - ACTIONS(5517), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135631] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185094,7 +193876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5515), 22, + sym__special_character, + ACTIONS(1263), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185114,18 +193899,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141613] = 5, + [135678] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1348), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135725] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185139,9 +193963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 21, + anon_sym_STAR_STAR, + ACTIONS(1330), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185159,109 +193986,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141662] = 19, + aux_sym_concatenation_token1, + [135772] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5710), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(1324), 14, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [141738] = 18, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135819] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + STATE(2720), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1143), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 14, anon_sym_EQ, - ACTIONS(6225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6227), 1, - anon_sym_AMP_AMP, - ACTIONS(6229), 1, anon_sym_PIPE, - ACTIONS(6231), 1, anon_sym_CARET, - ACTIONS(6233), 1, anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6249), 1, - anon_sym_QMARK, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 12, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185273,20 +194072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, - [141812] = 6, + anon_sym_QMARK, + [135870] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 10, + ACTIONS(6770), 1, + anon_sym_LBRACK, + ACTIONS(6600), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185297,7 +194096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5694), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6598), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185315,18 +194122,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141862] = 5, + anon_sym_COLON, + [135919] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 13, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135966] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136013] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136060] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185340,7 +194274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 20, + anon_sym_STAR_STAR, + ACTIONS(1342), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185361,13 +194300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141910] = 4, + aux_sym_concatenation_token1, + [136107] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 14, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185382,7 +194319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5694), 20, + ACTIONS(1369), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185400,70 +194341,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141956] = 19, + anon_sym_COLON, + [136154] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP_AMP, - ACTIONS(5608), 1, + ACTIONS(6772), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(6259), 1, - anon_sym_COLON, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(5622), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5624), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [142032] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136205] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5517), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185478,7 +194409,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5515), 22, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185501,10 +194434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142076] = 3, + aux_sym_concatenation_token1, + [136252] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5511), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185519,7 +194453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5509), 22, + ACTIONS(1306), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185542,10 +194478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142120] = 3, + aux_sym_concatenation_token1, + [136299] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6121), 13, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -185559,9 +194497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6123), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185576,70 +194514,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142164] = 15, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [136346] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6267), 1, + ACTIONS(1332), 14, anon_sym_PIPE, - ACTIONS(6269), 1, - anon_sym_CARET, - ACTIONS(6271), 1, - anon_sym_AMP, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6263), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(6265), 2, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6275), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136393] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5858), 13, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [142232] = 3, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136440] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(6775), 1, + sym_extglob_pattern, + ACTIONS(6751), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -185653,9 +194631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1230), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6749), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185670,96 +194648,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142276] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136489] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(6777), 1, + sym__special_character, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136540] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(6287), 1, - anon_sym_COLON, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5602), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [142352] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6257), 1, anon_sym_STAR_STAR, - ACTIONS(6253), 2, + ACTIONS(1354), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5694), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185780,192 +194745,791 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142406] = 13, + aux_sym_concatenation_token1, + [136587] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6267), 1, + ACTIONS(1316), 14, anon_sym_PIPE, - ACTIONS(6269), 1, - anon_sym_CARET, - ACTIONS(6271), 1, - anon_sym_AMP, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [142470] = 13, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136634] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5846), 1, + ACTIONS(1320), 14, anon_sym_PIPE, - ACTIONS(6269), 1, - anon_sym_CARET, - ACTIONS(6271), 1, - anon_sym_AMP, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136681] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [142534] = 12, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136728] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6271), 1, - anon_sym_AMP, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(5846), 2, + ACTIONS(1340), 14, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136775] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [142596] = 11, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136822] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136869] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136916] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136963] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2618), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6780), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137014] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6780), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137065] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137112] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137159] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137206] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137253] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6780), 1, + aux_sym_concatenation_token1, + ACTIONS(6782), 1, + sym__concat, + STATE(2620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137306] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6780), 1, + aux_sym_concatenation_token1, + ACTIONS(6784), 1, + sym__concat, + STATE(2620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137359] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6786), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137410] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6793), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6275), 2, + ACTIONS(6791), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6281), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5846), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6283), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 17, + anon_sym_STAR_STAR, + ACTIONS(6789), 23, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185978,39 +195542,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [142656] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [137459] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + ACTIONS(2072), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2074), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137506] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4552), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 4, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4554), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137553] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5694), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186026,40 +195677,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142714] = 10, + aux_sym_concatenation_token1, + [137600] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6281), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5846), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6283), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 19, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1346), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186072,15 +195718,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [142772] = 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [137647] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1310), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137694] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 13, + ACTIONS(6797), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -186094,9 +195789,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1234), 23, + ACTIONS(6795), 25, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186111,40 +195806,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142816] = 8, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [137741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6241), 2, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137788] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1310), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137835] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 25, + sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186162,54 +195943,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142870] = 19, + aux_sym_concatenation_token1, + [137882] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6297), 1, + ACTIONS(1316), 14, anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, anon_sym_PIPE, - ACTIONS(6307), 1, anon_sym_CARET, - ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6313), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, - anon_sym_EQ_TILDE, - ACTIONS(6317), 1, - anon_sym_QMARK, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6299), 11, + anon_sym_STAR_STAR, + ACTIONS(1318), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186221,82 +195981,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [142946] = 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [137929] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, + STATE(2618), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6780), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 4, - anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137980] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5694), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [143006] = 8, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138027] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6241), 2, + ACTIONS(1251), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138074] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4370), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4372), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138121] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6801), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6799), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186314,42 +196209,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143060] = 12, + anon_sym_COLON, + [138168] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + ACTIONS(2094), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2096), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138215] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5696), 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138262] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138309] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138356] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6803), 1, + sym__special_character, + STATE(2727), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6255), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + anon_sym_STAR_STAR, + ACTIONS(354), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186363,37 +196428,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143122] = 9, + [138407] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6241), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138454] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138501] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5580), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138548] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138595] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138642] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5578), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186411,43 +196695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143178] = 13, + aux_sym_concatenation_token1, + [138689] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6307), 1, - anon_sym_CARET, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(5696), 2, + ACTIONS(6807), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + anon_sym_STAR_STAR, + ACTIONS(6805), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186461,71 +196735,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143242] = 8, + anon_sym_COLON, + [138736] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138783] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5858), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143296] = 7, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138830] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 7, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138877] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1342), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138924] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138971] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -186533,9 +196975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5858), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186548,26 +196998,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143348] = 6, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139018] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 9, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139065] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -186577,9 +197065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5858), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186592,49 +197087,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143398] = 14, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139112] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, anon_sym_PIPE, - ACTIONS(6307), 1, anon_sym_CARET, - ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + anon_sym_STAR_STAR, + ACTIONS(1338), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186648,47 +197132,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143464] = 15, + [139159] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(1340), 14, anon_sym_EQ, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, anon_sym_PIPE, - ACTIONS(6307), 1, anon_sym_CARET, - ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 15, + anon_sym_STAR_STAR, + ACTIONS(1342), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186701,18 +197175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143532] = 5, + [139206] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 12, + ACTIONS(6807), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -186725,9 +197200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 21, + anon_sym_STAR_STAR, + ACTIONS(6805), 25, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186740,22 +197218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143580] = 5, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [139253] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 12, + ACTIONS(1312), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -186768,9 +197244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1314), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186783,73 +197263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143628] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6297), 1, - anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, - anon_sym_PIPE, - ACTIONS(6307), 1, - anon_sym_CARET, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(6315), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6317), 1, anon_sym_QMARK, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [143702] = 3, + [139300] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5642), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186864,7 +197289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5640), 22, + ACTIONS(1338), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186887,10 +197314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143746] = 3, + aux_sym_concatenation_token1, + [139347] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5646), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186905,7 +197333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5644), 22, + ACTIONS(1354), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186928,65 +197359,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143790] = 17, + [139394] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, - anon_sym_EQ, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, + ACTIONS(1328), 14, anon_sym_PIPE, - ACTIONS(6307), 1, - anon_sym_CARET, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(6317), 1, - anon_sym_QMARK, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5694), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [143862] = 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1330), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5690), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187001,7 +197421,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5688), 22, + ACTIONS(1346), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187021,13 +197443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143906] = 3, + aux_sym_concatenation_token1, + [139488] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5842), 13, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -187041,9 +197465,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5844), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1358), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187058,116 +197482,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143950] = 4, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139535] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5908), 13, + ACTIONS(1320), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5910), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143996] = 19, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139582] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5813), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(1316), 14, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144072] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139629] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6082), 13, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -187181,9 +197597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6084), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187198,59 +197615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144116] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139676] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5706), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1304), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187262,109 +197658,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144192] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5759), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, - anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144268] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139723] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5803), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1308), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187376,223 +197702,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144344] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6267), 1, - anon_sym_PIPE, - ACTIONS(6269), 1, - anon_sym_CARET, - ACTIONS(6271), 1, - anon_sym_AMP, - ACTIONS(6285), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6265), 2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6275), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6277), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6279), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6283), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5858), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [144410] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139770] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6297), 1, - anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, anon_sym_PIPE, - ACTIONS(6307), 1, - anon_sym_CARET, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(6315), 1, - anon_sym_EQ_TILDE, - ACTIONS(6317), 1, - anon_sym_QMARK, - ACTIONS(6319), 1, - anon_sym_RPAREN, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6299), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144486] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(5395), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6037), 1, - sym_last_case_item, - ACTIONS(6044), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139821] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [144572] = 19, + [139868] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1352), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1354), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187604,52 +197835,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144648] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139915] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5656), 1, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5658), 1, anon_sym_AMP_AMP, - ACTIONS(5660), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139962] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5662), 1, anon_sym_CARET, - ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5678), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - sym_test_operator, - ACTIONS(5793), 1, - anon_sym_EQ, - ACTIONS(5795), 1, - anon_sym_EQ_TILDE, - ACTIONS(6249), 1, - anon_sym_QMARK, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5670), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6321), 11, + anon_sym_STAR_STAR, + ACTIONS(1294), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187661,129 +197923,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144724] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140009] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6035), 1, - sym_last_case_item, - ACTIONS(6044), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140056] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [144810] = 19, + [140103] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5809), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(5067), 12, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5069), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144886] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140154] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(1316), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -187797,9 +198085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1254), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1318), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187814,17 +198102,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144930] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1340), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -187838,9 +198129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1342), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187855,116 +198146,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144974] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6297), 1, - anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, - anon_sym_PIPE, - ACTIONS(6307), 1, - anon_sym_CARET, - ACTIONS(6309), 1, - anon_sym_AMP, - ACTIONS(6315), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6317), 1, anon_sym_QMARK, - ACTIONS(6323), 1, - anon_sym_RPAREN, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6299), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145050] = 19, + aux_sym_concatenation_token1, + [140248] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5632), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1332), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1334), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187976,370 +198189,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145126] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5840), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, - anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145202] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5836), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(1352), 13, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145278] = 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140342] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(1292), 14, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - sym_file_descriptor, - ACTIONS(2940), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - sym_string, - ACTIONS(6177), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6175), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 22, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140389] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [145406] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(2940), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - STATE(3669), 1, - sym_string, - ACTIONS(6177), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6175), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140436] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 22, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1334), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140483] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140530] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [145458] = 19, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140577] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5832), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6811), 1, + sym__special_character, + STATE(2692), 1, + aux_sym__literal_repeat1, + ACTIONS(5178), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5180), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140628] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 12, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4566), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145534] = 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140679] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5830), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6813), 1, + sym__special_character, + STATE(2695), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(354), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188351,129 +198592,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145610] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5825), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, - anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145686] = 24, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140730] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5821), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5823), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5826), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 6, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(5828), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5831), 14, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6012), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [145772] = 3, + [140785] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(6815), 1, + sym__special_character, + STATE(2692), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188485,9 +198668,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1222), 24, + ACTIONS(1364), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188502,7 +198687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188511,176 +198695,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [145816] = 24, + [140836] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5821), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5823), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5826), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 6, anon_sym_DOLLAR, - ACTIONS(5291), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(5828), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5831), 14, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6011), 1, - sym_last_case_item, - ACTIONS(6044), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [145902] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6005), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [145988] = 19, + [140891] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6822), 1, + sym__concat, + ACTIONS(6820), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(6818), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188692,10 +198779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146064] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140940] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(6824), 1, + sym__special_character, + STATE(2695), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -188709,9 +198810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1364), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188726,59 +198826,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [146108] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140991] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5815), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6831), 1, + sym__concat, + ACTIONS(6829), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(6827), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188790,46 +198870,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146184] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [141040] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5787), 1, + ACTIONS(1328), 14, anon_sym_EQ, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6303), 1, - anon_sym_AMP_AMP, - ACTIONS(6305), 1, anon_sym_PIPE, - ACTIONS(6307), 1, anon_sym_CARET, - ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6295), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5785), 14, + anon_sym_STAR_STAR, + ACTIONS(1330), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188841,55 +198913,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146254] = 19, + aux_sym_concatenation_token1, + [141087] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5819), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1320), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1322), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188901,52 +198957,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146330] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [141134] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5714), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6833), 1, + sym__special_character, + STATE(2699), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1364), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188958,54 +199004,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146406] = 6, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [141185] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6325), 1, - aux_sym_concatenation_token1, - ACTIONS(6327), 1, - sym__concat, - STATE(2773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1302), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 29, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141232] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1298), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [146456] = 3, + [141279] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 13, + ACTIONS(6840), 1, + sym__concat, + ACTIONS(6838), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -189019,7 +199121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1238), 23, + ACTIONS(6836), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -189036,17 +199138,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [146500] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [141328] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4469), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141379] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5724), 14, + ACTIONS(6846), 1, + sym__concat, + ACTIONS(6844), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189061,7 +199212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5722), 22, + ACTIONS(6842), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189081,55 +199234,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146544] = 19, + anon_sym_COLON, + [141428] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(2867), 1, + anon_sym_DQUOTE, + ACTIONS(6852), 1, + sym_variable_name, + STATE(4263), 1, + sym_string, + ACTIONS(6850), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6848), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [141485] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(2867), 1, + anon_sym_DQUOTE, + ACTIONS(6852), 1, + sym_variable_name, + STATE(4263), 1, + sym_string, + ACTIONS(6850), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6848), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [141542] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_EQ, - ACTIONS(5604), 1, + ACTIONS(1251), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1253), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, anon_sym_AMP_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141589] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5612), 1, anon_sym_AMP, - ACTIONS(5626), 1, - anon_sym_STAR_STAR, - ACTIONS(5628), 1, - anon_sym_EQ_TILDE, - ACTIONS(5630), 1, - anon_sym_QMARK, - ACTIONS(6329), 1, - anon_sym_COLON, - ACTIONS(5600), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5616), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5618), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5602), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189141,48 +199413,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146620] = 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [141636] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(1304), 14, anon_sym_EQ, - ACTIONS(6225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6227), 1, - anon_sym_AMP_AMP, - ACTIONS(6229), 1, anon_sym_PIPE, - ACTIONS(6231), 1, anon_sym_CARET, - ACTIONS(6233), 1, anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5654), 13, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189194,96 +199457,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146692] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(6004), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [146778] = 8, + aux_sym_concatenation_token1, + [141683] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6255), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5684), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5682), 20, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189304,100 +199510,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146832] = 5, + aux_sym_concatenation_token1, + [141730] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, - anon_sym_EQ, + ACTIONS(1324), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5572), 20, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [146880] = 4, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141777] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5684), 14, - anon_sym_EQ, + ACTIONS(1348), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5682), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1350), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [146926] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141824] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5574), 13, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189411,8 +199616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 20, + anon_sym_STAR_STAR, + ACTIONS(1263), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189432,100 +199641,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146974] = 6, + anon_sym_COLON, + sym__special_character, + [141871] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 10, - anon_sym_EQ, + ACTIONS(6811), 1, + sym__special_character, + STATE(2692), 1, + aux_sym__literal_repeat1, + ACTIONS(5067), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5572), 20, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5069), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147024] = 8, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141922] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6289), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5684), 6, - anon_sym_EQ, + ACTIONS(6854), 1, + sym__special_character, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5682), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5395), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147078] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141973] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1348), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -189539,56 +199753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [147122] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(5582), 2, + ACTIONS(1350), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5572), 20, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189606,12 +199775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147174] = 3, + aux_sym_concatenation_token1, + [142020] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(6856), 1, + sym__special_character, + STATE(2699), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -189625,9 +199801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1262), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(354), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189642,136 +199817,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147218] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142071] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 12, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [147294] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(5723), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5761), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [147380] = 3, + [142122] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6139), 13, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -189785,9 +199889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6141), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1302), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189802,41 +199906,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147424] = 9, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142169] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6241), 2, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6858), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5572), 19, + anon_sym_STAR_STAR, + ACTIONS(1288), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189856,10 +199962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147480] = 3, + [142222] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -189873,9 +199980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6145), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1294), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189890,45 +199997,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147524] = 11, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142269] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6237), 2, + ACTIONS(1296), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5572), 17, + anon_sym_STAR_STAR, + ACTIONS(1298), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189944,156 +200044,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147584] = 12, + aux_sym_concatenation_token1, + [142316] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5574), 4, + ACTIONS(1143), 1, + aux_sym_concatenation_token1, + ACTIONS(6860), 1, + sym__concat, + STATE(2312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5572), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147646] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5751), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [147732] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6233), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5574), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 15, + anon_sym_STAR_STAR, + ACTIONS(1267), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190107,45 +200091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147796] = 14, + [142369] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6231), 1, - anon_sym_CARET, - ACTIONS(6233), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5574), 2, + ACTIONS(6864), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 15, + anon_sym_STAR_STAR, + ACTIONS(6862), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190159,157 +200133,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147862] = 19, + anon_sym_COLON, + [142416] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5731), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(1261), 13, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [147938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6325), 1, - aux_sym_concatenation_token1, - ACTIONS(6327), 1, - sym__concat, - STATE(2771), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 4, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1263), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 29, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [147988] = 6, - ACTIONS(3), 1, + [142463] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6325), 1, - aux_sym_concatenation_token1, - ACTIONS(6327), 1, - sym__concat, - STATE(2773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 4, + ACTIONS(6809), 1, + sym__special_character, + STATE(2595), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5697), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 29, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [148038] = 3, + [142514] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6139), 13, + ACTIONS(6866), 1, + sym__special_character, + STATE(2727), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -190323,9 +200253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6141), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1364), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190340,51 +200269,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [148082] = 15, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142565] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(1320), 14, anon_sym_EQ, - ACTIONS(6229), 1, anon_sym_PIPE, - ACTIONS(6231), 1, anon_sym_CARET, - ACTIONS(6233), 1, anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 15, + anon_sym_STAR_STAR, + ACTIONS(1322), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190398,12 +200313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148150] = 3, + aux_sym_concatenation_token1, + [142612] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190418,7 +200339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1286), 22, + ACTIONS(1326), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190441,10 +200364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148194] = 3, + aux_sym_concatenation_token1, + [142659] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1251), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -190458,9 +200383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1286), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1253), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190475,59 +200400,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [148238] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142706] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5686), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1296), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1298), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190539,46 +200443,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148314] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142753] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(1251), 14, anon_sym_EQ, - ACTIONS(6227), 1, - anon_sym_AMP_AMP, - ACTIONS(6229), 1, anon_sym_PIPE, - ACTIONS(6231), 1, anon_sym_CARET, - ACTIONS(6233), 1, anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 14, + anon_sym_STAR_STAR, + ACTIONS(1253), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190591,12 +200488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148384] = 3, + aux_sym_concatenation_token1, + [142800] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190611,7 +200515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1230), 22, + ACTIONS(1326), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190634,52 +200540,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148428] = 19, + aux_sym_concatenation_token1, + [142847] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6227), 1, - anon_sym_AMP_AMP, - ACTIONS(6229), 1, + ACTIONS(1348), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6231), 1, anon_sym_CARET, - ACTIONS(6233), 1, anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_STAR_STAR, - ACTIONS(6249), 1, - anon_sym_QMARK, - ACTIONS(6251), 1, - sym_test_operator, - ACTIONS(6331), 1, - anon_sym_EQ, - ACTIONS(6333), 1, - anon_sym_EQ_TILDE, - ACTIONS(5582), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6235), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6239), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5572), 11, + anon_sym_STAR_STAR, + ACTIONS(1350), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190691,10 +200575,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148504] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142894] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190709,7 +200603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1242), 22, + ACTIONS(1302), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190732,10 +200628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148548] = 3, + aux_sym_concatenation_token1, + [142941] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190750,7 +200647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1270), 22, + ACTIONS(1334), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190773,10 +200672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148592] = 3, + aux_sym_concatenation_token1, + [142988] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190791,7 +200691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1242), 22, + ACTIONS(1338), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190811,30 +200713,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148636] = 3, + [143034] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190852,52 +200761,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148680] = 16, + [143090] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6267), 1, + ACTIONS(6879), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6269), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6271), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6285), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6137), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6261), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + STATE(6721), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6263), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(6265), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6273), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6275), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6277), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6279), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6281), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6283), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6335), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190909,27 +200825,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148750] = 3, + [143172] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6917), 1, + anon_sym_RPAREN_RPAREN, + STATE(6687), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190941,36 +200886,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148794] = 3, + [143254] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6919), 1, + anon_sym_RPAREN_RPAREN, + STATE(6625), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190982,61 +200947,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148838] = 19, + [143336] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6921), 1, + anon_sym_RPAREN_RPAREN, + STATE(6602), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191048,33 +201008,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148914] = 8, + [143418] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6247), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(5582), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6923), 1, + anon_sym_RPAREN_RPAREN, + STATE(6630), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6241), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6243), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6245), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5574), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5572), 20, - sym_test_operator, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191086,60 +201069,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148968] = 19, + [143500] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6925), 1, + anon_sym_RPAREN_RPAREN, + STATE(6720), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191151,52 +201130,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149044] = 19, + [143582] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5781), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6927), 1, + anon_sym_RPAREN_RPAREN, + STATE(6682), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191208,52 +201191,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149120] = 19, + [143664] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5779), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6929), 1, + anon_sym_RPAREN_RPAREN, + STATE(6655), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191265,42 +201252,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149196] = 14, + [143746] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6201), 1, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6931), 1, + anon_sym_RPAREN_RPAREN, + STATE(6623), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191312,77 +201313,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149262] = 7, + [143828] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 8, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5694), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149314] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6933), 1, + anon_sym_RPAREN_RPAREN, + STATE(6608), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191394,123 +201374,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149358] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5679), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [149444] = 19, + [143910] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5777), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6935), 1, + anon_sym_RPAREN_RPAREN, + STATE(6592), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191522,130 +201435,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149520] = 3, + [143992] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(1274), 22, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6937), 1, + anon_sym_RPAREN_RPAREN, + STATE(6577), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149564] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5663), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [149650] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191657,77 +201496,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149694] = 3, + [144074] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(1242), 23, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6939), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + STATE(6559), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [149738] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1234), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191739,77 +201557,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149782] = 3, + [144156] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(1270), 23, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6941), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + STATE(6712), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [149826] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191821,36 +201618,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149870] = 3, + [144238] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6943), 1, + anon_sym_RPAREN_RPAREN, + STATE(6606), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191862,121 +201679,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149914] = 6, - ACTIONS(3), 1, + [144320] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(6337), 1, - aux_sym_concatenation_token1, - ACTIONS(6340), 1, - sym__concat, - STATE(2764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 29, - anon_sym_LPAREN_LPAREN, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [149964] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(1242), 23, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6945), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + STATE(6697), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150008] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191988,36 +201740,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150052] = 3, + [144402] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6947), 1, + anon_sym_RPAREN_RPAREN, + STATE(6653), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192029,36 +201801,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150096] = 3, + [144484] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, + anon_sym_RPAREN_RPAREN, + STATE(6612), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192070,36 +201862,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150140] = 3, + [144566] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6951), 1, + anon_sym_RPAREN_RPAREN, + STATE(6715), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192111,36 +201923,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150184] = 3, + [144648] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6953), 1, + anon_sym_RPAREN_RPAREN, + STATE(6639), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1230), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192152,103 +201984,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6325), 1, - aux_sym_concatenation_token1, - ACTIONS(6343), 1, - sym__concat, - STATE(2764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [150278] = 18, + [144730] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6955), 1, + anon_sym_RPAREN_RPAREN, + STATE(6600), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 12, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192260,72 +202045,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [150352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6325), 1, - aux_sym_concatenation_token1, - ACTIONS(6345), 1, - sym__concat, - STATE(2764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [150402] = 3, + [144812] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_RPAREN_RPAREN, + STATE(6562), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192337,61 +202106,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150446] = 19, + [144894] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5769), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6959), 1, + anon_sym_RPAREN_RPAREN, + STATE(6607), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192403,52 +202167,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150522] = 19, + [144976] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5807), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6961), 1, + anon_sym_RPAREN_RPAREN, + STATE(6701), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192460,52 +202228,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150598] = 19, + [145058] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5757), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6963), 1, + anon_sym_RPAREN_RPAREN, + STATE(6633), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192517,27 +202289,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150674] = 3, + [145140] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_RPAREN_RPAREN, + STATE(6660), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5771), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192549,160 +202350,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150718] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5553), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [150804] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5551), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [150890] = 3, + [145222] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6967), 1, + anon_sym_RPAREN_RPAREN, + STATE(6693), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5771), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192714,61 +202411,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150934] = 19, + [145304] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5838), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6969), 1, + anon_sym_RPAREN_RPAREN, + STATE(6586), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192780,27 +202472,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151010] = 3, + [145386] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6971), 1, + anon_sym_RPAREN_RPAREN, + STATE(6565), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5765), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192812,36 +202533,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151054] = 3, + [145468] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6973), 1, + anon_sym_RPAREN_RPAREN, + STATE(6579), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192853,36 +202594,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151098] = 3, + [145550] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5763), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6975), 1, + anon_sym_RPAREN_RPAREN, + STATE(6601), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5761), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192894,55 +202655,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151142] = 16, + [145632] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5787), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6977), 1, + anon_sym_RPAREN_RPAREN, + STATE(6683), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5785), 14, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192954,100 +202716,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151212] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [151264] = 19, + [145714] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5749), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6979), 1, + anon_sym_RPAREN_RPAREN, + STATE(6723), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193059,97 +202777,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151340] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1175), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [151392] = 19, + [145796] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5751), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6981), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193161,27 +202838,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151468] = 3, + [145878] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6082), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6983), 1, + anon_sym_RPAREN_RPAREN, + STATE(6708), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6084), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193193,61 +202899,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [151512] = 19, + [145960] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5747), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6985), 1, + anon_sym_RPAREN_RPAREN, + STATE(6669), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193259,29 +202960,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151588] = 5, + [146042] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 12, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6987), 1, + anon_sym_RPAREN_RPAREN, + STATE(6647), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 21, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193293,38 +203021,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [146124] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6989), 1, + sym__special_character, + STATE(2806), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5395), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [151636] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146174] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5846), 12, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6991), 1, + anon_sym_RPAREN_RPAREN, + STATE(6624), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 21, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193336,61 +203127,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [151684] = 19, + [146256] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5737), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6993), 1, + anon_sym_RPAREN_RPAREN, + STATE(6576), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193402,30 +203188,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151760] = 6, + [146338] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6357), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5846), 9, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6995), 1, + anon_sym_RPAREN_RPAREN, + STATE(6621), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5858), 21, - anon_sym_COMMA, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193437,61 +203249,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [146420] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5821), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5826), 4, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [151810] = 19, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5823), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5828), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5831), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146474] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5733), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6997), 1, + anon_sym_RPAREN_RPAREN, + STATE(6685), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193503,31 +203357,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151886] = 7, + [146556] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6353), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6999), 1, + anon_sym_RPAREN_RPAREN, + STATE(6684), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6357), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5846), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5858), 21, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193539,41 +203418,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [146638] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_RPAREN_RPAREN, + STATE(6644), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [151938] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6357), 3, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5846), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5858), 21, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193585,45 +203479,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [151992] = 10, + [146720] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6353), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7003), 1, + anon_sym_RPAREN_RPAREN, + STATE(6552), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5846), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 19, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193635,46 +203540,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, - [152050] = 11, + [146802] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6353), 2, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7005), 1, + anon_sym_RPAREN_RPAREN, + STATE(6680), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5846), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193686,32 +203601,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [152110] = 3, + [146884] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7007), 1, + anon_sym_RPAREN_RPAREN, + STATE(6593), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193723,36 +203662,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [152154] = 3, + [146966] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7009), 1, + anon_sym_RPAREN_RPAREN, + STATE(6617), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193764,36 +203723,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [152198] = 3, + [147048] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7011), 1, + anon_sym_RPAREN_RPAREN, + STATE(6691), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193805,49 +203784,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [152242] = 12, + [147130] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(5846), 2, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7013), 1, + anon_sym_RPAREN_RPAREN, + STATE(6622), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193859,46 +203845,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [152304] = 13, + [147212] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5846), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6353), 2, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7015), 1, + anon_sym_RPAREN_RPAREN, + STATE(6629), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193910,57 +203906,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [152368] = 19, + [147294] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5718), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7017), 1, + anon_sym_RPAREN_RPAREN, + STATE(6588), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193972,41 +203967,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152444] = 13, + [147376] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6353), 2, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7019), 1, + anon_sym_RPAREN_RPAREN, + STATE(6688), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 17, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194018,57 +204028,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [152508] = 19, + [147458] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5648), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7021), 1, + anon_sym_RPAREN_RPAREN, + STATE(6548), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194080,44 +204089,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152584] = 14, + [147540] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6353), 2, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7023), 1, + anon_sym_RPAREN_RPAREN, + STATE(6580), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6375), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 15, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194129,30 +204150,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_RPAREN, - [152650] = 3, + [147622] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5763), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7025), 1, + anon_sym_RPAREN_RPAREN, + STATE(6656), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5761), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194164,19 +204211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152694] = 3, + [147704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 14, + ACTIONS(1261), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194191,7 +204229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5765), 22, + sym__special_character, + ACTIONS(1263), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194214,47 +204254,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152738] = 15, + [147750] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6353), 2, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7027), 1, + anon_sym_RPAREN_RPAREN, + STATE(6650), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6375), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6377), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(6357), 3, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5858), 13, - anon_sym_COMMA, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194266,28 +204315,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [152806] = 3, + [147832] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1263), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147878] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7029), 1, + anon_sym_RPAREN_RPAREN, + STATE(6657), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1242), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194299,36 +204419,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152850] = 3, + [147960] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7031), 1, + anon_sym_RPAREN_RPAREN, + STATE(6643), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194340,19 +204480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152894] = 3, + [148042] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 14, + ACTIONS(7035), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194367,7 +204498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1242), 22, + ACTIONS(7033), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194387,55 +204520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152938] = 19, + anon_sym_COLON, + [148088] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(5692), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6807), 1, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6805), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194447,10 +204573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153014] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148158] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(7053), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194465,7 +204596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5771), 22, + ACTIONS(7051), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194485,30 +204618,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153058] = 3, + anon_sym_COLON, + [148204] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6121), 13, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7055), 1, + anon_sym_RPAREN_RPAREN, + STATE(6692), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6123), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194520,19 +204682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [153102] = 3, + [148286] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5773), 14, + ACTIONS(6864), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194547,7 +204700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5771), 22, + ACTIONS(6862), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194570,70 +204725,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153146] = 19, + [148332] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5716), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(7057), 1, + sym__special_character, + STATE(2806), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148382] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5770), 13, anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5772), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [153222] = 4, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148428] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 14, + ACTIONS(6732), 1, + anon_sym_RBRACK, + ACTIONS(7060), 1, + sym__concat, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194648,7 +204835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5694), 20, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194666,18 +204856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153268] = 5, + [148478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 13, + ACTIONS(7064), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194691,7 +204875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 20, + anon_sym_STAR_STAR, + ACTIONS(7062), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194709,22 +204898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153316] = 6, + anon_sym_COLON, + [148524] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(6877), 1, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 10, + ACTIONS(6807), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194735,7 +204920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5694), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194756,52 +204946,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153366] = 19, + [148574] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5698), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7066), 1, + anon_sym_RPAREN_RPAREN, + STATE(6613), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194813,64 +205007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153442] = 16, + [148656] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(6877), 1, anon_sym_STAR_STAR, - ACTIONS(6369), 1, - anon_sym_AMP, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6137), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6353), 2, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6375), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(6377), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(6357), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6379), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [153512] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6139), 13, + ACTIONS(6807), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -194883,11 +205029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6141), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6805), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194900,18 +205044,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [153556] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148706] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -194921,14 +205075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6145), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6805), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194941,18 +205090,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [153600] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148758] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6139), 13, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -194960,16 +205122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6141), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6805), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194982,30 +205137,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [153644] = 7, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148812] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5696), 8, + ACTIONS(6723), 1, + anon_sym_RBRACK, + ACTIONS(7068), 1, + sym__concat, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195014,7 +205161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5694), 20, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195032,35 +205188,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153696] = 8, + [148862] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(6877), 1, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6213), 2, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5696), 6, + ACTIONS(6807), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5694), 20, + ACTIONS(6805), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195081,32 +205239,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153750] = 8, + [148920] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6213), 2, + ACTIONS(5766), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5768), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5684), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148966] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(5682), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195124,55 +205322,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153804] = 19, + anon_sym_COLON, + [149012] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(1261), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1263), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - ACTIONS(6191), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149058] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7070), 1, + anon_sym_RPAREN_RPAREN, + STATE(6698), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195184,13 +205429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153880] = 4, + [149140] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5684), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195205,7 +205447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5682), 20, + ACTIONS(1310), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195223,13 +205469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153926] = 3, + anon_sym_COLON, + [149186] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5517), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195244,7 +205490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5515), 22, + ACTIONS(1306), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195264,35 +205512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153970] = 8, + anon_sym_COLON, + [149232] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6213), 2, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5684), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5682), 20, + anon_sym_STAR_STAR, + ACTIONS(1310), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195310,84 +205555,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154024] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + [149278] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1312), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [154076] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6219), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(1314), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149324] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5696), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5694), 18, + anon_sym_STAR_STAR, + ACTIONS(7062), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195403,13 +205639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154134] = 3, + anon_sym_COLON, + [149370] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5724), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195424,7 +205662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5722), 22, + ACTIONS(1342), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195444,42 +205684,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154178] = 11, + anon_sym_COLON, + [149416] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(6877), 1, anon_sym_STAR_STAR, - ACTIONS(6193), 2, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(7045), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7047), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5696), 4, + ACTIONS(6807), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(5694), 16, + ACTIONS(6805), 19, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195493,129 +205733,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154238] = 7, - ACTIONS(3), 1, + [149478] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1175), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [154290] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [154334] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5696), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195632,27 +205790,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154396] = 3, + [149542] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(5511), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7041), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7047), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5509), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6805), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195666,110 +205840,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154440] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5695), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154526] = 13, + [149608] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6203), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(5696), 2, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6807), 2, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6193), 2, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 16, + ACTIONS(6805), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195786,114 +205897,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154590] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5697), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154676] = 19, + [149676] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(5594), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6807), 1, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(7072), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6805), 16, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195905,114 +205949,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154752] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5719), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154838] = 19, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149748] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(7072), 1, + anon_sym_AMP_AMP, + ACTIONS(7074), 1, + anon_sym_EQ, + ACTIONS(7076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7078), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(7080), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6805), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196024,117 +206011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154914] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5721), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155000] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1171), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [155052] = 3, + anon_sym_RBRACK, + [149826] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(6708), 1, + anon_sym_RBRACK, + ACTIONS(7082), 1, + sym__concat, + ACTIONS(1273), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -196148,8 +206034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1230), 23, - anon_sym_COMMA, + ACTIONS(1369), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196164,18 +206050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155096] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149876] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5642), 14, + ACTIONS(6670), 1, + anon_sym_RBRACK, + ACTIONS(7084), 1, + sym__concat, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196190,7 +206079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5640), 22, + ACTIONS(1369), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196210,55 +206100,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155140] = 19, + [149926] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6807), 1, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(7072), 1, + anon_sym_AMP_AMP, + ACTIONS(7076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7080), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(7045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(7047), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6805), 14, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196270,27 +206158,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155216] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [150002] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5646), 14, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7086), 1, + anon_sym_RPAREN_RPAREN, + STATE(6661), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5644), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196302,36 +206221,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [155260] = 3, + [150084] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1238), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196344,32 +206261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155304] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150140] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 23, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7092), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7088), 36, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -196388,72 +206296,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [155348] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5783), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [155424] = 3, + anon_sym_STAR_STAR, + [150188] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 13, + ACTIONS(6797), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -196467,8 +206331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1234), 23, - anon_sym_COMMA, + ACTIONS(6795), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196483,35 +206348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155468] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150234] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 23, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196524,59 +206396,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155512] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150290] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1324), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [150336] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [155556] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [150382] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7096), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -196590,10 +206511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 23, + ACTIONS(7094), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196606,60 +206526,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155600] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150430] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5823), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, anon_sym_EQ, - ACTIONS(6197), 1, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, + ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6203), 1, + ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6205), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6219), 1, + ACTIONS(6911), 1, anon_sym_STAR_STAR, - ACTIONS(6221), 1, + ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6223), 1, + ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6193), 2, + ACTIONS(7098), 1, + anon_sym_RPAREN_RPAREN, + STATE(6642), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6207), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, + ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + ACTIONS(6887), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196671,72 +206595,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155676] = 7, - ACTIONS(3), 1, + [150512] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(6347), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 20, - anon_sym_SEMI, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [155728] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6353), 2, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(7102), 1, + anon_sym_EQ, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5908), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5910), 21, + ACTIONS(7100), 16, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -196749,123 +206648,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [155774] = 24, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150584] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(2072), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + sym_word, + ACTIONS(2074), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, anon_sym_BQUOTE, - ACTIONS(6060), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5750), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155860] = 19, + [150630] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5817), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6195), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196877,27 +206728,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155936] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150676] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 23, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196910,18 +206777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [155980] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5842), 13, + ACTIONS(7106), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -196935,7 +206803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5844), 23, + ACTIONS(7104), 24, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -196951,114 +206820,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [156024] = 24, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150778] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5271), 1, - sym_word, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(1348), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5305), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, sym__brace_start, - ACTIONS(6048), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5126), 1, - aux_sym__literal_repeat1, - STATE(5752), 1, - sym_last_case_item, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6054), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6062), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5281), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5034), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [156110] = 15, + [150824] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(6658), 1, + anon_sym_RBRACK, + ACTIONS(7108), 1, + sym__concat, + ACTIONS(1273), 14, anon_sym_EQ, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 15, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197071,13 +206909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156178] = 3, + [150874] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5690), 14, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197092,7 +206934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5688), 22, + ACTIONS(1330), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197112,51 +206956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156222] = 17, + anon_sym_COLON, + [150920] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(1320), 14, anon_sym_EQ, - ACTIONS(6197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, - anon_sym_AMP_AMP, - ACTIONS(6201), 1, anon_sym_PIPE, - ACTIONS(6203), 1, anon_sym_CARET, - ACTIONS(6205), 1, anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6211), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6217), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5694), 13, + anon_sym_STAR_STAR, + ACTIONS(1322), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197168,76 +206993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [156294] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5811), 1, - anon_sym_RBRACK, - ACTIONS(6191), 1, - anon_sym_EQ, - ACTIONS(6197), 1, anon_sym_PIPE_PIPE, - ACTIONS(6199), 1, anon_sym_AMP_AMP, - ACTIONS(6201), 1, - anon_sym_PIPE, - ACTIONS(6203), 1, - anon_sym_CARET, - ACTIONS(6205), 1, - anon_sym_AMP, - ACTIONS(6219), 1, - anon_sym_STAR_STAR, - ACTIONS(6221), 1, - anon_sym_EQ_TILDE, - ACTIONS(6223), 1, - anon_sym_QMARK, - ACTIONS(6193), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6211), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6217), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6195), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [156370] = 5, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150966] = 3, ACTIONS(71), 1, sym_comment, - STATE(2886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3763), 11, + ACTIONS(1296), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197247,20 +207019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3765), 21, + ACTIONS(1298), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197269,17 +207045,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156417] = 5, + [151012] = 3, ACTIONS(71), 1, sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1941), 11, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [151058] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [151104] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197289,20 +207148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1943), 21, + ACTIONS(1302), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197311,105 +207174,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156464] = 7, - ACTIONS(3), 1, + [151150] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1171), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 21, - anon_sym_SEMI, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7110), 1, + anon_sym_RPAREN_RPAREN, + STATE(6724), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [156515] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(6907), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [156566] = 5, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [151232] = 3, ACTIONS(71), 1, sym_comment, - STATE(2886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 11, + ACTIONS(1332), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197419,20 +207252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 21, + ACTIONS(1334), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197441,75 +207278,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156613] = 21, - ACTIONS(3), 1, + [151278] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6391), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6393), 1, - sym__special_character, - ACTIONS(6395), 1, - sym_test_operator, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2908), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6389), 3, - anon_sym_SEMI, + ACTIONS(7114), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [156692] = 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7112), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [151324] = 3, ACTIONS(71), 1, sym_comment, - STATE(2882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6397), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1198), 11, + ACTIONS(1292), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197519,20 +207338,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1200), 21, + ACTIONS(1294), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197541,17 +207364,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156739] = 5, + [151370] = 4, ACTIONS(71), 1, sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, + ACTIONS(7116), 1, + sym_extglob_pattern, + ACTIONS(6751), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6749), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151418] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1273), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 24, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4063), 11, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151464] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2094), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197559,19 +207466,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4065), 21, + ACTIONS(2096), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -197580,20 +207490,109 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156786] = 5, + [151510] = 4, ACTIONS(71), 1, sym_comment, - STATE(2886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4084), 11, + ACTIONS(7118), 1, + sym_extglob_pattern, + ACTIONS(6751), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6749), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151558] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [151604] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7120), 1, + sym__special_character, + STATE(2867), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197601,42 +207600,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4086), 21, + ACTIONS(1364), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156833] = 6, + [151654] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6381), 1, - aux_sym_concatenation_token1, - ACTIONS(6400), 1, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, + anon_sym_PIPE, + ACTIONS(7039), 1, + anon_sym_CARET, + ACTIONS(7041), 1, + anon_sym_AMP, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(7072), 1, + anon_sym_AMP_AMP, + ACTIONS(7076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7047), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 15, sym__concat, - STATE(2882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151728] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197646,20 +207700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 21, + ACTIONS(1318), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197668,18 +207726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156882] = 6, + [151774] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6381), 1, - aux_sym_concatenation_token1, - ACTIONS(6402), 1, - sym__concat, - STATE(2882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 11, + ACTIONS(1328), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197689,20 +207743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1216), 21, + ACTIONS(1330), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197711,600 +207769,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156931] = 21, - ACTIONS(3), 1, + [151820] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6393), 1, - sym__special_character, - ACTIONS(6395), 1, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 24, sym_test_operator, - ACTIONS(6406), 1, - aux_sym_heredoc_redirect_token1, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2908), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6404), 3, - anon_sym_SEMI, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151866] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157010] = 3, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151912] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, + ACTIONS(1340), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151958] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6757), 1, + anon_sym_RBRACK, + ACTIONS(7127), 1, sym__concat, + ACTIONS(1273), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 22, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 30, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152008] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152054] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152100] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [157053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, + ACTIONS(1358), 25, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [157096] = 3, - ACTIONS(3), 1, + [152146] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5373), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [157139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 5, + ACTIONS(5375), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [157182] = 3, - ACTIONS(3), 1, + [152192] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1344), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [157225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 5, + ACTIONS(1346), 25, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [157268] = 3, - ACTIONS(3), 1, + [152238] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1246), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [157311] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6393), 1, - sym__special_character, - ACTIONS(6395), 1, - sym_test_operator, - ACTIONS(6410), 1, - aux_sym_heredoc_redirect_token1, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2908), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6408), 3, - anon_sym_SEMI, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157390] = 25, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_RPAREN_RPAREN, + STATE(6574), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152320] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6412), 1, - sym_word, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(6422), 1, - sym__special_character, - ACTIONS(6424), 1, - anon_sym_DQUOTE, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(6432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, - anon_sym_RBRACE3, - ACTIONS(6436), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6438), 1, - anon_sym_BQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6444), 1, - sym_variable_name, - ACTIONS(6446), 1, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 24, sym_test_operator, - ACTIONS(6448), 1, - sym__expansion_word, - ACTIONS(6450), 1, - sym__brace_start, - STATE(5021), 1, - sym_command_substitution, - STATE(5205), 1, - aux_sym__literal_repeat1, - ACTIONS(6414), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6426), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6442), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(5051), 4, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - STATE(5471), 6, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - sym_process_substitution, - [157477] = 3, - ACTIONS(3), 1, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152366] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 24, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 30, - anon_sym_LPAREN_LPAREN, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152412] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152458] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5766), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [157520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 5, + ACTIONS(5768), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [157563] = 3, - ACTIONS(3), 1, + [152504] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 24, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 30, - anon_sym_LPAREN_LPAREN, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152550] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5821), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5826), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5819), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5823), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5828), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5831), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [157606] = 3, + [152604] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1235), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(3030), 1, + anon_sym_DQUOTE, + ACTIONS(7135), 1, + sym_variable_name, + STATE(4446), 1, + sym_string, + ACTIONS(7133), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7131), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -198312,39 +208526,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [157649] = 3, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [152660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1241), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(3030), 1, + anon_sym_DQUOTE, + ACTIONS(7135), 1, + sym_variable_name, + STATE(4446), 1, + sym_string, + ACTIONS(7133), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7131), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -198352,39 +208574,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [157692] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [152716] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 5, - sym_file_descriptor, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 24, sym__concat, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 30, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152762] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [152836] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152882] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152928] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152974] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_COLON, + [153050] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7143), 1, + anon_sym_DQUOTE, + ACTIONS(7147), 1, + sym_variable_name, + STATE(4322), 1, + sym_string, + ACTIONS(7145), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7141), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -198392,37 +208910,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [157735] = 7, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [153106] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7143), 1, anon_sym_DQUOTE, - STATE(3687), 1, + ACTIONS(7147), 1, + sym_variable_name, + STATE(4322), 1, sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(6385), 2, + ACTIONS(7145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(7141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -198432,7 +208936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 20, + ACTIONS(1239), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -198442,7 +208946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -198453,17 +208960,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [157786] = 5, + [153162] = 3, ACTIONS(71), 1, sym_comment, - STATE(2886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 24, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4230), 11, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153208] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [153278] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [153346] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6801), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6799), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153392] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -198473,20 +209172,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4232), 21, + ACTIONS(1322), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -198495,20 +209198,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [157833] = 7, + [153438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3371), 1, anon_sym_DQUOTE, - STATE(3621), 1, + ACTIONS(7153), 1, + sym_variable_name, + STATE(4512), 1, sym_string, - ACTIONS(1175), 2, + ACTIONS(7151), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7149), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [153494] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, sym_file_descriptor, + ACTIONS(3371), 1, + anon_sym_DQUOTE, + ACTIONS(7153), 1, sym_variable_name, - ACTIONS(6351), 2, + STATE(4512), 1, + sym_string, + ACTIONS(7151), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, + ACTIONS(7149), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -198518,7 +209270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 20, + ACTIONS(1239), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -198528,7 +209280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -198539,17 +209294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [157884] = 5, + [153550] = 3, ACTIONS(71), 1, sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 11, + ACTIONS(1336), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -198559,20 +209311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4236), 21, + ACTIONS(1338), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -198581,155 +209337,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [157931] = 3, - ACTIONS(3), 1, + [153596] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4370), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [157974] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1900), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6458), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6461), 1, anon_sym_DOLLAR, - ACTIONS(6464), 1, - sym__special_character, - ACTIONS(6467), 1, - anon_sym_DQUOTE, - ACTIONS(6470), 1, aux_sym_number_token1, - ACTIONS(6473), 1, aux_sym_number_token2, - ACTIONS(6476), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6482), 1, - anon_sym_BQUOTE, - ACTIONS(6485), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6491), 1, - sym_test_operator, - ACTIONS(6494), 1, - sym__brace_start, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(6455), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6488), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2908), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(1898), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(6452), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [158053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, + ACTIONS(4372), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [158096] = 5, + [153642] = 3, ACTIONS(71), 1, sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1979), 11, + ACTIONS(1340), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -198739,20 +209397,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1981), 21, + ACTIONS(1342), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -198761,241 +209423,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [158143] = 3, - ACTIONS(3), 1, + [153688] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1312), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [158186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 5, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [158229] = 23, + [153734] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6497), 1, - sym_word, - ACTIONS(6503), 1, - anon_sym_LPAREN, - ACTIONS(6506), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6509), 1, - anon_sym_DOLLAR, - ACTIONS(6512), 1, - sym__special_character, - ACTIONS(6515), 1, - anon_sym_DQUOTE, - ACTIONS(6521), 1, - aux_sym_number_token1, - ACTIONS(6524), 1, - aux_sym_number_token2, - ACTIONS(6527), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6530), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6533), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6542), 1, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 24, sym_test_operator, - ACTIONS(6545), 1, sym_extglob_pattern, - ACTIONS(6548), 1, - sym__brace_start, - STATE(5132), 1, - aux_sym__literal_repeat1, - ACTIONS(6500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6518), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6539), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2913), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(5298), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5014), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [158312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 30, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153780] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [158355] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153826] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [158406] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153872] = 3, ACTIONS(71), 1, sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3767), 11, + ACTIONS(1352), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199005,20 +209612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3769), 21, + ACTIONS(1354), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -199027,269 +209638,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [158453] = 3, - ACTIONS(3), 1, + [153918] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7155), 1, + sym__special_character, + STATE(2912), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [158496] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(1175), 2, + ACTIONS(1364), 23, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 20, - anon_sym_SEMI, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [158547] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(6422), 1, - sym__special_character, - ACTIONS(6424), 1, anon_sym_DQUOTE, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(6432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6436), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6438), 1, - anon_sym_BQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6444), 1, - sym_variable_name, - ACTIONS(6450), 1, - sym__brace_start, - ACTIONS(6551), 1, - sym_word, - ACTIONS(6555), 1, - anon_sym_RBRACE3, - ACTIONS(6557), 1, - sym_test_operator, - ACTIONS(6559), 1, - sym__expansion_word, - STATE(5016), 1, - sym_command_substitution, - STATE(5151), 1, - aux_sym__literal_repeat1, - ACTIONS(6414), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6442), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6553), 2, sym_raw_string, sym_ansi_c_string, - STATE(5136), 4, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - STATE(5416), 6, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - sym_process_substitution, - [158634] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(6422), 1, - sym__special_character, - ACTIONS(6424), 1, - anon_sym_DQUOTE, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(6432), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6436), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6438), 1, anon_sym_BQUOTE, - ACTIONS(6440), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6444), 1, - sym_variable_name, - ACTIONS(6450), 1, - sym__brace_start, - ACTIONS(6561), 1, - sym_word, - ACTIONS(6565), 1, - anon_sym_RBRACE3, - ACTIONS(6567), 1, - sym_test_operator, - ACTIONS(6569), 1, - sym__expansion_word, - STATE(5043), 1, - sym_command_substitution, - STATE(5182), 1, - aux_sym__literal_repeat1, - ACTIONS(6414), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6442), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6563), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5094), 4, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - STATE(5409), 6, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - sym_process_substitution, - [158721] = 7, - ACTIONS(3), 1, + [153968] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1171), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5770), 12, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [158772] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3679), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199297,19 +209698,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(3681), 21, + ACTIONS(5772), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -199318,64 +209722,22 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [158819] = 7, - ACTIONS(3), 1, + [154014] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7158), 1, + sym__special_character, + STATE(2867), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [158870] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3731), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199383,197 +209745,196 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(3733), 21, + ACTIONS(5395), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [158917] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6571), 1, - sym_word, - ACTIONS(6575), 1, - anon_sym_LPAREN, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6581), 1, - sym__special_character, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, anon_sym_BQUOTE, - ACTIONS(6597), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6601), 1, - sym__comment_word, - ACTIONS(6603), 1, - sym__empty_value, - ACTIONS(6605), 1, - sym_test_operator, - ACTIONS(6607), 1, - sym__brace_start, - STATE(3629), 1, - aux_sym__literal_repeat1, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6585), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6599), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3856), 2, - sym_concatenation, - sym_array, - STATE(3786), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [158999] = 23, - ACTIONS(3), 1, + [154064] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym_word, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, - anon_sym_DOLLAR, - ACTIONS(6619), 1, - sym__special_character, - ACTIONS(6621), 1, - anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, - anon_sym_BQUOTE, - ACTIONS(6635), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6639), 1, - sym__comment_word, - ACTIONS(6641), 1, - sym__empty_value, - ACTIONS(6643), 1, - sym_test_operator, - ACTIONS(6645), 1, - sym__brace_start, - STATE(1414), 1, - aux_sym__literal_repeat1, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6623), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1789), 2, - sym_concatenation, - sym_array, - STATE(1116), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159081] = 7, - ACTIONS(3), 1, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7139), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154130] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - STATE(3794), 1, - sym_string, - ACTIONS(1171), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(6649), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6647), 9, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6909), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7137), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + [154194] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [159131] = 3, + ACTIONS(7137), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154256] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1308), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199583,19 +209944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 23, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -199607,55 +209970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [159173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - STATE(3794), 1, - sym_string, - ACTIONS(1175), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(6649), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6647), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [159223] = 3, + [154302] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 11, + ACTIONS(1304), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199665,19 +209987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 23, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -199689,170 +210013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [159265] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 1, - anon_sym_SLASH, - ACTIONS(6655), 1, - anon_sym_PERCENT, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(6661), 1, - anon_sym_RBRACE3, - ACTIONS(6663), 1, - anon_sym_AT, - ACTIONS(6665), 1, - anon_sym_STAR2, - STATE(5108), 1, - aux_sym__expansion_body_repeat1, - STATE(5806), 1, - sym__expansion_operator, - STATE(5807), 1, - sym__expansion_max_length, - STATE(5808), 1, - sym__expansion_regex_removal, - STATE(5809), 1, - sym__expansion_regex_replacement, - STATE(5810), 1, - sym__expansion_regex, - STATE(5811), 1, - sym__expansion_expression, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [159341] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2009), 1, - anon_sym_DOLLAR, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6675), 1, - sym_word, - ACTIONS(6679), 1, - anon_sym_LPAREN, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6683), 1, - sym__special_character, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6697), 1, - sym__comment_word, - ACTIONS(6699), 1, - sym__empty_value, - ACTIONS(6701), 1, - sym_test_operator, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6687), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1646), 2, - sym_concatenation, - sym_array, - STATE(1073), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159423] = 7, - ACTIONS(3), 1, + [154348] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1308), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [159473] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1236), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -199862,19 +210030,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1238), 23, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -199886,527 +210056,844 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [159515] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6703), 1, - sym_word, - ACTIONS(6707), 1, - anon_sym_LPAREN, - ACTIONS(6709), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6711), 1, - anon_sym_DOLLAR, - ACTIONS(6713), 1, - sym__special_character, - ACTIONS(6715), 1, - anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, - anon_sym_BQUOTE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6733), 1, - sym__comment_word, - ACTIONS(6735), 1, - sym__empty_value, - ACTIONS(6737), 1, - sym_test_operator, - ACTIONS(6739), 1, - sym__brace_start, - STATE(3619), 1, - aux_sym__literal_repeat1, - ACTIONS(6705), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6717), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3820), 2, - sym_concatenation, - sym_array, - STATE(3622), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159597] = 23, - ACTIONS(3), 1, + [154394] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - aux_sym_number_token1, - ACTIONS(1545), 1, - aux_sym_number_token2, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1563), 1, - sym__brace_start, - ACTIONS(6741), 1, - sym_word, - ACTIONS(6745), 1, - anon_sym_LPAREN, - ACTIONS(6747), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6749), 1, - sym__special_character, - ACTIONS(6751), 1, - anon_sym_DQUOTE, - ACTIONS(6755), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6757), 1, - anon_sym_BQUOTE, - ACTIONS(6759), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6763), 1, - sym__comment_word, - ACTIONS(6765), 1, - sym__empty_value, - ACTIONS(6767), 1, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7137), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154454] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7137), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154510] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154564] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 22, + sym__concat, sym_test_operator, - STATE(1096), 1, - aux_sym__literal_repeat1, - ACTIONS(6743), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6753), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6761), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1356), 2, - sym_concatenation, - sym_array, - STATE(820), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159679] = 23, - ACTIONS(3), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154620] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(2009), 1, - anon_sym_DOLLAR, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6679), 1, - anon_sym_LPAREN, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6697), 1, - sym__comment_word, - ACTIONS(6699), 1, - sym__empty_value, - ACTIONS(6769), 1, - sym_word, - ACTIONS(6771), 1, - sym__special_character, - ACTIONS(6775), 1, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6791), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6789), 22, + sym__concat, sym_test_operator, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6773), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1646), 2, - sym_concatenation, - sym_array, - STATE(1272), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159761] = 23, - ACTIONS(3), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154668] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6575), 1, - anon_sym_LPAREN, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6601), 1, - sym__comment_word, - ACTIONS(6603), 1, - sym__empty_value, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(6777), 1, - sym_word, - ACTIONS(6779), 1, + ACTIONS(6829), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6827), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154714] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1263), 24, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [154760] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, sym__special_character, - ACTIONS(6783), 1, + ACTIONS(1263), 23, sym_test_operator, - STATE(3629), 1, - aux_sym__literal_repeat1, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6781), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3856), 2, - sym_concatenation, - sym_array, - STATE(3643), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159843] = 7, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154806] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1171), 1, - sym_file_descriptor, - ACTIONS(3317), 1, - anon_sym_DQUOTE, - STATE(3687), 1, - sym_string, - ACTIONS(6385), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(6820), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6818), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 20, - anon_sym_SEMI, + anon_sym_COLON, + [154852] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7162), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7160), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154898] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7166), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7164), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [154944] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, anon_sym_AMP_AMP, + ACTIONS(6893), 1, anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7168), 1, + anon_sym_RPAREN_RPAREN, + STATE(6699), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155026] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155084] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5373), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [159893] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, anon_sym_DOLLAR, - ACTIONS(1957), 1, aux_sym_number_token1, - ACTIONS(1959), 1, aux_sym_number_token2, - ACTIONS(1963), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1977), 1, - sym__brace_start, - ACTIONS(6785), 1, sym_word, - ACTIONS(6789), 1, - anon_sym_LPAREN, - ACTIONS(6791), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6793), 1, - sym__special_character, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6801), 1, - anon_sym_BQUOTE, - ACTIONS(6803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6807), 1, - sym__comment_word, - ACTIONS(6809), 1, - sym__empty_value, - ACTIONS(6811), 1, + ACTIONS(5375), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(1496), 1, - aux_sym__literal_repeat1, - ACTIONS(6787), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6797), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1653), 2, - sym_concatenation, - sym_array, - STATE(1128), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159975] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6813), 1, - sym_word, - ACTIONS(6817), 1, - anon_sym_LPAREN, - ACTIONS(6819), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6823), 1, sym__special_character, - ACTIONS(6825), 1, anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6843), 1, - sym__comment_word, - ACTIONS(6845), 1, - sym__empty_value, - ACTIONS(6847), 1, - sym_test_operator, - ACTIONS(6849), 1, - sym__brace_start, - STATE(1422), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6827), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1558), 2, - sym_concatenation, - sym_array, - STATE(1082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160057] = 23, - ACTIONS(3), 1, + [155130] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6851), 1, - sym_word, - ACTIONS(6855), 1, - anon_sym_LPAREN, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, + ACTIONS(1261), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6861), 1, - sym__special_character, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, aux_sym_number_token1, - ACTIONS(6869), 1, aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6881), 1, - sym__comment_word, - ACTIONS(6883), 1, - sym__empty_value, - ACTIONS(6885), 1, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1263), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6887), 1, sym__brace_start, - STATE(1089), 1, - aux_sym__literal_repeat1, - ACTIONS(6853), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6865), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6879), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1341), 2, - sym_concatenation, - sym_array, - STATE(857), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160139] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6707), 1, - anon_sym_LPAREN, - ACTIONS(6709), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6711), 1, - anon_sym_DOLLAR, - ACTIONS(6715), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, anon_sym_BQUOTE, - ACTIONS(6729), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6733), 1, - sym__comment_word, - ACTIONS(6735), 1, - sym__empty_value, - ACTIONS(6739), 1, - sym__brace_start, - ACTIONS(6889), 1, - sym_word, - ACTIONS(6891), 1, - sym__special_character, - ACTIONS(6895), 1, - sym_test_operator, - STATE(3619), 1, - aux_sym__literal_repeat1, - ACTIONS(6705), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6893), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3820), 2, - sym_concatenation, - sym_array, - STATE(3535), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160221] = 3, + [155176] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7137), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [155228] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [155278] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7137), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [155326] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 11, + ACTIONS(7170), 1, + sym__special_character, + STATE(2912), 1, + aux_sym__literal_repeat1, + ACTIONS(5476), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -200414,38 +210901,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 23, + ACTIONS(5478), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [160263] = 3, + [155376] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 11, + ACTIONS(4552), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -200453,534 +210942,244 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 23, + ACTIONS(4554), 26, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [160305] = 23, - ACTIONS(3), 1, + [155422] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1744), 1, + ACTIONS(4247), 5, anon_sym_DOLLAR, - ACTIONS(1750), 1, aux_sym_number_token1, - ACTIONS(1752), 1, aux_sym_number_token2, - ACTIONS(1756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1770), 1, - sym__brace_start, - ACTIONS(6897), 1, sym_word, - ACTIONS(6901), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, + ACTIONS(5930), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5932), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(4261), 16, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6905), 1, sym__special_character, - ACTIONS(6907), 1, anon_sym_DQUOTE, - ACTIONS(6911), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6913), 1, anon_sym_BQUOTE, - ACTIONS(6915), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6919), 1, - sym__comment_word, - ACTIONS(6921), 1, - sym__empty_value, - ACTIONS(6923), 1, - sym_test_operator, - STATE(1202), 1, - aux_sym__literal_repeat1, - ACTIONS(6899), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6909), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6917), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1548), 2, - sym_concatenation, - sym_array, - STATE(983), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160387] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6817), 1, - anon_sym_LPAREN, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6843), 1, - sym__comment_word, - ACTIONS(6845), 1, - sym__empty_value, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(6925), 1, - sym_word, - ACTIONS(6927), 1, - sym__special_character, - ACTIONS(6931), 1, - sym_test_operator, - STATE(1422), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6929), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1558), 2, - sym_concatenation, - sym_array, - STATE(1899), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160469] = 3, + [155472] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1230), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7204), 1, + anon_sym_COLON, + ACTIONS(7206), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160511] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 11, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160553] = 3, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155551] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160595] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 11, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160637] = 3, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155614] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(6474), 1, sym_word, - ACTIONS(1274), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160679] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1232), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, + ACTIONS(6494), 1, aux_sym_number_token1, + ACTIONS(6496), 1, aux_sym_number_token2, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym__special_character, - STATE(2959), 1, - aux_sym__literal_repeat1, - ACTIONS(4232), 4, - sym_file_descriptor, + ACTIONS(6508), 1, sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [160767] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2009), 1, - anon_sym_DOLLAR, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6679), 1, - anon_sym_LPAREN, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6697), 1, - sym__comment_word, - ACTIONS(6699), 1, - sym__empty_value, - ACTIONS(6935), 1, - sym_word, - ACTIONS(6937), 1, - sym__special_character, - ACTIONS(6941), 1, - sym_test_operator, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6939), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1646), 2, - sym_concatenation, - sym_array, - STATE(1886), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160849] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6943), 1, - sym_word, - ACTIONS(6947), 1, - anon_sym_LPAREN, - ACTIONS(6949), 1, + ACTIONS(6560), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, - anon_sym_DOLLAR, - ACTIONS(6953), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(6955), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(6959), 1, - aux_sym_number_token1, - ACTIONS(6961), 1, - aux_sym_number_token2, - ACTIONS(6963), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(6969), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6973), 1, - sym__comment_word, - ACTIONS(6975), 1, - sym__empty_value, - ACTIONS(6977), 1, - sym_test_operator, - ACTIONS(6979), 1, - sym__brace_start, - STATE(2976), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(6945), 2, + STATE(6851), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6957), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6971), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3013), 2, + STATE(3377), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - sym_array, - STATE(2883), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -200990,1632 +211189,1720 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [160931] = 3, + [155703] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 11, + ACTIONS(7242), 1, + anon_sym_LBRACK, + ACTIONS(6600), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [160973] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6981), 1, - sym_word, - ACTIONS(6985), 1, - anon_sym_LPAREN, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(6991), 1, - sym__special_character, - ACTIONS(6993), 1, - anon_sym_DQUOTE, - ACTIONS(6997), 1, - aux_sym_number_token1, - ACTIONS(6999), 1, - aux_sym_number_token2, - ACTIONS(7001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7005), 1, - anon_sym_BQUOTE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7011), 1, - sym__comment_word, - ACTIONS(7013), 1, - sym__empty_value, - ACTIONS(7015), 1, - sym_test_operator, - ACTIONS(7017), 1, - sym__brace_start, - STATE(4368), 1, - aux_sym__literal_repeat1, - ACTIONS(6983), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6995), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4457), 2, - sym_concatenation, - sym_array, - STATE(4312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161055] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6598), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - sym__special_character, - STATE(2959), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + ACTIONS(7246), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 28, - anon_sym_LPAREN_LPAREN, + ACTIONS(7244), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [161101] = 3, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [155795] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 11, + ACTIONS(7256), 1, + anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_CARET, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7252), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7254), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161143] = 23, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155864] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, - anon_sym_LPAREN, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6843), 1, - sym__comment_word, - ACTIONS(6845), 1, - sym__empty_value, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7022), 1, - sym_word, - ACTIONS(7024), 1, - sym__special_character, - ACTIONS(7028), 1, - sym_test_operator, - STATE(1422), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7026), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1558), 2, - sym_concatenation, - sym_array, - STATE(1293), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161225] = 3, + ACTIONS(7256), 1, + anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_CARET, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [155929] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 11, + ACTIONS(7276), 1, + anon_sym_EQ, + ACTIONS(7088), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1226), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161267] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7092), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155976] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 11, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161309] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156021] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 11, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, + sym_test_operator, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161351] = 23, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156094] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 1, - anon_sym_LPAREN, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6601), 1, - sym__comment_word, - ACTIONS(6603), 1, - sym__empty_value, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7030), 1, - sym_word, - ACTIONS(7032), 1, - sym__special_character, - ACTIONS(7036), 1, - sym_test_operator, - STATE(3629), 1, - aux_sym__literal_repeat1, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7034), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3856), 2, - sym_concatenation, - sym_array, - STATE(3719), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161433] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1198), 11, + ACTIONS(7258), 1, + anon_sym_CARET, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161475] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6575), 1, - anon_sym_LPAREN, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6601), 1, - sym__comment_word, - ACTIONS(6603), 1, - sym__empty_value, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7038), 1, - sym_word, - ACTIONS(7040), 1, - sym__special_character, - ACTIONS(7044), 1, - sym_test_operator, - STATE(3629), 1, - aux_sym__literal_repeat1, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7042), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3856), 2, - sym_concatenation, - sym_array, - STATE(4192), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161557] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3436), 1, - anon_sym_DOLLAR, - ACTIONS(3438), 1, - sym__special_character, - ACTIONS(3440), 1, - anon_sym_DQUOTE, - ACTIONS(3444), 1, - aux_sym_number_token1, - ACTIONS(3446), 1, - aux_sym_number_token2, - ACTIONS(3448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, - anon_sym_BQUOTE, - ACTIONS(3454), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3464), 1, - sym__brace_start, - ACTIONS(7046), 1, - sym_word, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7052), 1, - sym__comment_word, - ACTIONS(7054), 1, - sym__empty_value, - ACTIONS(7056), 1, - sym_test_operator, - STATE(2252), 1, - aux_sym__literal_repeat1, - ACTIONS(3432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3456), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7050), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2264), 2, - sym_concatenation, - sym_array, - STATE(2000), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161639] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6575), 1, - anon_sym_LPAREN, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6601), 1, - sym__comment_word, - ACTIONS(6603), 1, - sym__empty_value, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7058), 1, - sym_word, - ACTIONS(7060), 1, - sym__special_character, - ACTIONS(7064), 1, - sym_test_operator, - STATE(3629), 1, - aux_sym__literal_repeat1, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7062), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3856), 2, - sym_concatenation, - sym_array, - STATE(3648), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161721] = 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 18, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + [156157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 11, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1246), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161763] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7066), 1, - sym_word, - ACTIONS(7070), 1, - anon_sym_LPAREN, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, - anon_sym_DOLLAR, - ACTIONS(7076), 1, - sym__special_character, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7096), 1, - sym__comment_word, - ACTIONS(7098), 1, - sym__empty_value, - ACTIONS(7100), 1, - sym_test_operator, - ACTIONS(7102), 1, - sym__brace_start, - STATE(1273), 1, - aux_sym__literal_repeat1, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7080), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1460), 2, - sym_concatenation, - sym_array, - STATE(964), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161845] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7104), 1, - sym_word, - ACTIONS(7108), 1, - anon_sym_LPAREN, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7114), 1, - sym__special_character, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7134), 1, - sym__comment_word, - ACTIONS(7136), 1, - sym__empty_value, - ACTIONS(7138), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 23, sym_test_operator, - ACTIONS(7140), 1, - sym__brace_start, - STATE(2150), 1, - aux_sym__literal_repeat1, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7118), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2322), 2, - sym_concatenation, - sym_array, - STATE(1979), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161927] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156202] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 11, + ACTIONS(6797), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [161969] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(4230), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4232), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6795), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162014] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156247] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(3679), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3681), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162059] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(4084), 10, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4086), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162104] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 1, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, + ACTIONS(7125), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, anon_sym_COLON, - ACTIONS(7144), 1, - anon_sym_RBRACE3, - ACTIONS(7146), 1, - anon_sym_AT, - STATE(5109), 1, - aux_sym__expansion_body_repeat1, - STATE(5815), 1, - sym__expansion_operator, - STATE(5816), 1, - sym__expansion_max_length, - STATE(5818), 1, - sym__expansion_regex_removal, - STATE(5820), 1, - sym__expansion_regex_replacement, - STATE(5821), 1, - sym__expansion_regex, - STATE(5822), 1, - sym__expansion_expression, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [162177] = 19, + [156320] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(6661), 1, - anon_sym_RBRACE3, - ACTIONS(7146), 1, - anon_sym_AT, - STATE(5099), 1, - aux_sym__expansion_body_repeat1, - STATE(5799), 1, - sym__expansion_operator, - STATE(5800), 1, - sym__expansion_max_length, - STATE(5801), 1, - sym__expansion_regex_removal, - STATE(5802), 1, - sym__expansion_regex_replacement, - STATE(5803), 1, - sym__expansion_regex, - STATE(5804), 1, - sym__expansion_expression, - ACTIONS(6651), 2, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 19, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [162250] = 5, + [156381] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 10, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1294), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162295] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156430] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(3763), 10, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3765), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162340] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(7146), 1, - anon_sym_AT, - ACTIONS(7151), 1, - anon_sym_RBRACE3, - STATE(5128), 1, - aux_sym__expansion_body_repeat1, - STATE(5875), 1, - sym__expansion_regex_replacement, - STATE(5905), 1, - sym__expansion_operator, - STATE(5906), 1, - sym__expansion_max_length, - STATE(5907), 1, - sym__expansion_regex_removal, - STATE(5917), 1, - sym__expansion_regex, - STATE(5918), 1, - sym__expansion_expression, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [162413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 4, - sym_file_descriptor, + ACTIONS(6805), 21, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 29, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156479] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [162454] = 5, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156530] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(4515), 10, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4517), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162499] = 5, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156583] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, - sym__special_character, - STATE(2979), 1, - aux_sym__literal_repeat1, - ACTIONS(4509), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4511), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7296), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162544] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 1, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(7146), 1, - anon_sym_AT, - ACTIONS(7153), 1, - anon_sym_RBRACE3, - STATE(5114), 1, - aux_sym__expansion_body_repeat1, - STATE(5923), 1, - sym__expansion_operator, - STATE(5924), 1, - sym__expansion_max_length, - STATE(5925), 1, - sym__expansion_regex_removal, - STATE(5926), 1, - sym__expansion_regex_replacement, - STATE(5927), 1, - sym__expansion_regex, - STATE(5928), 1, - sym__expansion_expression, - ACTIONS(6651), 2, - anon_sym_COMMA, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [162617] = 21, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156640] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7155), 1, - aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162693] = 21, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156695] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7161), 1, - anon_sym_RPAREN, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162769] = 21, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156756] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7191), 1, - sym_word, - ACTIONS(7195), 1, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - STATE(5107), 1, - aux_sym__literal_repeat1, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7193), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5371), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5040), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162845] = 21, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156819] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7197), 1, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162921] = 7, - ACTIONS(3), 1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [156878] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6351), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, + sym_test_operator, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7300), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 17, + [156943] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [156992] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [162969] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157041] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157092] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157145] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157202] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157263] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157326] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157391] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157458] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157527] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157598] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_COLON, + [157675] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [157750] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1941), 10, + ACTIONS(1261), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -202623,19 +212910,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1943), 22, + ACTIONS(1263), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -202647,217 +212937,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [163009] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7205), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7207), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7210), 1, - anon_sym_DOLLAR, - ACTIONS(7213), 1, - sym__special_character, - ACTIONS(7216), 1, - anon_sym_DQUOTE, - ACTIONS(7219), 1, - aux_sym_number_token1, - ACTIONS(7222), 1, - aux_sym_number_token2, - ACTIONS(7225), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7228), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7231), 1, - anon_sym_BQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7243), 1, - sym__brace_start, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(7202), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7237), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7199), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163085] = 21, - ACTIONS(3), 1, + [157795] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7246), 1, - aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163161] = 21, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157862] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(7175), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(7189), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7248), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3004), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163237] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, + ACTIONS(6530), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7169), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7183), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7250), 1, - anon_sym_RPAREN, - STATE(4275), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7159), 2, + STATE(7005), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7185), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3030), 2, + STATE(3385), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -202867,2075 +213054,1562 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [163313] = 3, + [157951] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1979), 10, + ACTIONS(7306), 1, + sym__concat, + ACTIONS(6844), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1981), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [163353] = 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6842), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157998] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7252), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3029), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163429] = 21, + ACTIONS(7308), 1, + sym__concat, + ACTIONS(6838), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6836), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158045] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7254), 1, - sym_word, - ACTIONS(7258), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - STATE(5164), 1, - aux_sym__literal_repeat1, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7256), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5435), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5125), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163505] = 21, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158114] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7260), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2995), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163581] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4692), 10, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4704), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [163621] = 21, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158185] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7262), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3033), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163697] = 21, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158236] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7264), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3014), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163773] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3767), 10, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3769), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [163813] = 21, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + [158313] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7266), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163889] = 21, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [158388] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6801), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6799), 23, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7268), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3016), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163965] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158433] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7270), 1, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164041] = 3, - ACTIONS(71), 1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158488] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 10, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1222), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [164081] = 21, - ACTIONS(71), 1, + [158541] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, ACTIONS(7272), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164157] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, + anon_sym_STAR_STAR, ACTIONS(7274), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164233] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7276), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3009), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164309] = 21, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + [158592] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7278), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164385] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158647] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7280), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2987), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164461] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4063), 10, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4065), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [158722] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7344), 1, + anon_sym_EQ, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [164501] = 21, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK_RBRACK, + [158799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [158844] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6797), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6795), 23, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7282), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164577] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 33, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [158938] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7284), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3024), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164653] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159007] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7286), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164729] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159074] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7288), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164805] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159139] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7290), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3017), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164881] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159202] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7292), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3008), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [164957] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7294), 1, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165033] = 21, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 33, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [159312] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5307), 1, - sym_extglob_pattern, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7296), 1, - sym_word, - ACTIONS(7300), 1, - sym_test_operator, - STATE(5055), 1, - aux_sym__literal_repeat1, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(7298), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5221), 2, - sym_concatenation, - sym__extglob_blob, - STATE(5022), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165109] = 21, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159367] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7302), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165185] = 21, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159424] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7304), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3022), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165261] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159477] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6791), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6789), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7306), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165337] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159524] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7308), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165413] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159575] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7310), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3028), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165489] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7312), 1, - aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165565] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7314), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165641] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7316), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165717] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1900), 1, - anon_sym_RPAREN, - ACTIONS(7318), 1, - sym_word, - ACTIONS(7324), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7327), 1, - anon_sym_DOLLAR, - ACTIONS(7330), 1, - sym__special_character, - ACTIONS(7333), 1, - anon_sym_DQUOTE, - ACTIONS(7339), 1, - aux_sym_number_token1, - ACTIONS(7342), 1, - aux_sym_number_token2, - ACTIONS(7345), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7348), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7351), 1, - anon_sym_BQUOTE, - ACTIONS(7354), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7360), 1, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, sym_test_operator, - ACTIONS(7363), 1, - sym__brace_start, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7321), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7336), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7357), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165793] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159630] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, - sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7366), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165869] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7368), 1, - aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165945] = 21, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159687] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7370), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3030), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166021] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159736] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7157), 1, - sym_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7167), 1, - sym__special_character, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4275), 1, - aux_sym__literal_repeat1, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7171), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3025), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166097] = 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(1175), 2, + ACTIONS(1241), 1, sym_file_descriptor, + ACTIONS(3679), 1, + anon_sym_DQUOTE, + ACTIONS(7352), 1, sym_variable_name, - ACTIONS(6351), 2, + STATE(4859), 1, + sym_string, + ACTIONS(7350), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, + ACTIONS(7348), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -204945,14 +214619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 17, + ACTIONS(1239), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -204963,238 +214642,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [166145] = 3, - ACTIONS(71), 1, + [159840] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 10, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3679), 1, + anon_sym_DQUOTE, + ACTIONS(7352), 1, + sym_variable_name, + STATE(4859), 1, + sym_string, + ACTIONS(7350), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7348), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3733), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [166185] = 3, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [159895] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(4706), 10, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4708), 22, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7354), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [159972] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, sym_file_descriptor, + ACTIONS(7358), 1, + anon_sym_DQUOTE, + ACTIONS(7362), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + STATE(4457), 1, + sym_string, + ACTIONS(7360), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7356), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [166225] = 21, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160027] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3500), 1, - sym__special_character, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3508), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3512), 1, - anon_sym_BQUOTE, - ACTIONS(3514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3520), 1, - sym_test_operator, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7374), 1, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, aux_sym_heredoc_redirect_token1, - STATE(2992), 1, - aux_sym__heredoc_command, - STATE(4217), 1, - aux_sym__literal_repeat1, - STATE(4355), 1, - sym_concatenation, - ACTIONS(3484), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3482), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166301] = 3, - ACTIONS(71), 1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [160084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160129] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 10, + ACTIONS(1330), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4715), 22, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160174] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7364), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [166341] = 20, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [160253] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, - anon_sym_DOLLAR, - ACTIONS(6953), 1, - sym__special_character, - ACTIONS(6955), 1, - anon_sym_DQUOTE, - ACTIONS(6959), 1, - aux_sym_number_token1, - ACTIONS(6961), 1, - aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, - anon_sym_BQUOTE, - ACTIONS(6969), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(7376), 1, - sym_word, - ACTIONS(7380), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - STATE(2974), 1, - aux_sym__literal_repeat1, - ACTIONS(6945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7378), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1443), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2906), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166414] = 7, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, + ACTIONS(1310), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160437] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(3317), 1, + ACTIONS(7358), 1, anon_sym_DQUOTE, - STATE(3687), 1, + ACTIONS(7362), 1, + sym_variable_name, + STATE(4457), 1, sym_string, - ACTIONS(6385), 2, + ACTIONS(7360), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(7356), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -205204,14 +215179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1163), 17, + ACTIONS(1227), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -205222,156 +215202,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [166461] = 20, + [160492] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(2896), 1, - sym_word, - ACTIONS(2902), 1, - anon_sym_DOLLAR, - ACTIONS(2908), 1, - aux_sym_number_token1, - ACTIONS(2910), 1, - aux_sym_number_token2, - ACTIONS(2914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2922), 1, - sym_test_operator, - ACTIONS(2924), 1, - sym__brace_start, - ACTIONS(7384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7386), 1, - sym__special_character, - ACTIONS(7388), 1, - anon_sym_DQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7394), 1, - anon_sym_BQUOTE, - ACTIONS(7396), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1769), 1, - aux_sym__literal_repeat1, - ACTIONS(7382), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7390), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(561), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166534] = 20, + ACTIONS(7366), 1, + sym__concat, + ACTIONS(6829), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6827), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160539] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7400), 1, - sym_word, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7406), 1, - anon_sym_DOLLAR, - ACTIONS(7408), 1, - sym__special_character, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, - anon_sym_BQUOTE, - ACTIONS(7424), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7428), 1, + ACTIONS(7368), 1, + sym__concat, + ACTIONS(6820), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6818), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160586] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7430), 1, - sym__brace_start, - STATE(2104), 1, - aux_sym__literal_repeat1, - ACTIONS(7402), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7412), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(685), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1896), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166607] = 20, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160635] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7370), 1, + anon_sym_EQ, + ACTIONS(7088), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7092), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [160682] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(4664), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(4670), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(4672), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(4676), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(4686), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7434), 1, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7436), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7438), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7442), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7444), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7446), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2954), 1, + ACTIONS(7372), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7432), 2, + STATE(6942), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7440), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7448), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1333), 2, + STATE(3407), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2729), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -205381,259 +215439,330 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [166680] = 19, - ACTIONS(3), 1, + [160771] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7452), 1, - anon_sym_RBRACK, - ACTIONS(7458), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166751] = 19, - ACTIONS(3), 1, + ACTIONS(7374), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [160850] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7460), 1, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160921] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7394), 1, + anon_sym_LBRACK, + ACTIONS(6600), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6598), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166822] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160968] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, + ACTIONS(7256), 1, + anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_CARET, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7254), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7270), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(6661), 1, - anon_sym_RBRACE3, - ACTIONS(6663), 1, - anon_sym_AT, - ACTIONS(6665), 1, - anon_sym_STAR2, - ACTIONS(7462), 1, - anon_sym_LBRACK, - STATE(5491), 1, - sym__expansion_regex_removal, - STATE(5825), 1, - sym__expansion_operator, - STATE(5826), 1, - sym__expansion_max_length, - STATE(5828), 1, - sym__expansion_regex_replacement, - STATE(5829), 1, - sym__expansion_regex, - STATE(5830), 1, - sym__expansion_expression, - ACTIONS(6651), 2, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 15, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + [161035] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(6667), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [166893] = 20, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161114] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(7076), 1, - sym__special_character, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(7084), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(7464), 1, - sym_word, - ACTIONS(7468), 1, + ACTIONS(6508), 1, sym_test_operator, - STATE(1217), 1, - aux_sym__literal_repeat1, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7466), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(499), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166966] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7400), 1, - sym_word, - ACTIONS(7404), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6580), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7406), 1, - anon_sym_DOLLAR, - ACTIONS(7408), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7410), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7424), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7428), 1, - sym_test_operator, - ACTIONS(7430), 1, - sym__brace_start, - STATE(2104), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7402), 2, + STATE(6824), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7412), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7426), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(655), 2, + STATE(3378), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1896), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -205643,165 +215772,280 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167039] = 7, - ACTIONS(3), 1, + [161203] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_DQUOTE, - STATE(4198), 1, - sym_string, - ACTIONS(1171), 2, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6805), 21, sym_test_operator, - sym__brace_start, - ACTIONS(7474), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7470), 9, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161256] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7374), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161335] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [167086] = 20, + [161392] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2896), 1, - sym_word, - ACTIONS(2902), 1, - anon_sym_DOLLAR, - ACTIONS(2908), 1, - aux_sym_number_token1, - ACTIONS(2910), 1, - aux_sym_number_token2, - ACTIONS(2914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2922), 1, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7432), 1, + anon_sym_RPAREN, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, sym_test_operator, - ACTIONS(2924), 1, - sym__brace_start, - ACTIONS(7384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7386), 1, - sym__special_character, - ACTIONS(7388), 1, - anon_sym_DQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7394), 1, - anon_sym_BQUOTE, - ACTIONS(7396), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1769), 1, - aux_sym__literal_repeat1, - ACTIONS(7382), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7390), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(560), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167159] = 20, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7406), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161471] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, - anon_sym_DOLLAR, - ACTIONS(7076), 1, - sym__special_character, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(7464), 1, - sym_word, - ACTIONS(7468), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, sym_test_operator, - STATE(1217), 1, - aux_sym__literal_repeat1, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7466), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(496), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167232] = 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161526] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, + ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(3317), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - STATE(3687), 1, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - ACTIONS(6385), 2, + ACTIONS(7442), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(7440), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -205811,14 +216055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1173), 17, + ACTIONS(1227), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -205829,196 +216076,627 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [167279] = 7, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [161581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_DQUOTE, - STATE(4198), 1, - sym_string, - ACTIONS(1175), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7474), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7470), 9, + ACTIONS(1342), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [167326] = 20, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [161626] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6395), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7480), 1, - sym__special_character, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7484), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2881), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161683] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167399] = 20, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [161738] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161793] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6864), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6862), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161838] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161911] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161972] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, + sym_test_operator, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7374), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [162051] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1273), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162096] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [162151] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6823), 1, - sym__special_character, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, aux_sym_number_token1, - ACTIONS(6831), 1, aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7494), 1, sym_word, - ACTIONS(7498), 1, + ACTIONS(1263), 25, + sym_file_descriptor, sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7496), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(527), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167472] = 20, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [162196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7450), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7448), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [162241] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(6823), 1, - sym__special_character, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6831), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6551), 1, + anon_sym_esac, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7494), 1, - sym_word, - ACTIONS(7498), 1, - sym_test_operator, - STATE(1549), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(6815), 2, + STATE(7007), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7496), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(534), 2, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3386), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1174), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -206028,103 +216706,475 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167545] = 20, + [162330] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6864), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6862), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162375] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162440] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162513] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162580] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162649] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162720] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [162797] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(7452), 1, + sym__special_character, + STATE(3065), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3075), 1, aux_sym_number_token1, - ACTIONS(3077), 1, aux_sym_number_token2, - ACTIONS(3081), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3341), 1, sym_word, - ACTIONS(3345), 1, + ACTIONS(1364), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(7502), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7504), 1, - sym__special_character, - ACTIONS(7506), 1, anon_sym_DQUOTE, - ACTIONS(7510), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, anon_sym_BQUOTE, - ACTIONS(7514), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7508), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7516), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1641), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167618] = 20, + [162846] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(4664), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(4670), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(4672), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(4676), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(4686), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7434), 1, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7436), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7438), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7442), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7444), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7446), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2954), 1, + ACTIONS(7455), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7432), 2, + STATE(7013), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7440), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7448), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 2, + STATE(3388), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2729), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -206134,50 +217184,208 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167691] = 20, + [162935] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + [163010] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163065] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7457), 1, + sym__concat, + ACTIONS(6820), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6818), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163112] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(3498), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(3504), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(3506), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(3510), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6395), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(7478), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7480), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7482), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7486), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7490), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3973), 1, + ACTIONS(7459), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7476), 2, + STATE(7016), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7484), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7492), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2895), 2, + STATE(3389), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3706), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -206187,978 +217395,1732 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167764] = 20, + [163201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7114), 1, - sym__special_character, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(7518), 1, - sym_word, - ACTIONS(7522), 1, - sym_test_operator, - STATE(2207), 1, - aux_sym__literal_repeat1, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7520), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(707), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167837] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4094), 1, - sym_word, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4100), 1, - anon_sym_DOLLAR, - ACTIONS(4102), 1, - sym__special_character, - ACTIONS(4104), 1, - anon_sym_DQUOTE, - ACTIONS(4108), 1, - aux_sym_number_token1, - ACTIONS(4110), 1, - aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4122), 1, + ACTIONS(1273), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1369), 23, sym_test_operator, - ACTIONS(4124), 1, - sym__brace_start, - STATE(2561), 1, - aux_sym__literal_repeat1, - ACTIONS(4096), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4106), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(847), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2229), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167910] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163246] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7114), 1, - sym__special_character, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(7518), 1, - sym_word, - ACTIONS(7522), 1, - sym_test_operator, - STATE(2207), 1, - aux_sym__literal_repeat1, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7520), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(708), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167983] = 20, + ACTIONS(7461), 1, + sym__concat, + ACTIONS(6829), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6827), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163293] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4094), 1, - sym_word, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4100), 1, - anon_sym_DOLLAR, - ACTIONS(4102), 1, - sym__special_character, - ACTIONS(4104), 1, - anon_sym_DQUOTE, - ACTIONS(4108), 1, - aux_sym_number_token1, - ACTIONS(4110), 1, - aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4122), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - ACTIONS(4124), 1, - sym__brace_start, - STATE(2561), 1, - aux_sym__literal_repeat1, - ACTIONS(4096), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4106), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(837), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2229), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168056] = 19, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [163372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, - sym_test_operator, - ACTIONS(7524), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168127] = 7, + ACTIONS(7467), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7465), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [163417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - STATE(3794), 1, - sym_string, - ACTIONS(1175), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(6649), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6647), 9, + ACTIONS(7471), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7469), 34, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 16, - anon_sym_LPAREN_LPAREN, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [163464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [168174] = 21, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1352), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [163509] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7526), 1, - sym_word, - ACTIONS(7528), 1, - sym__special_character, - ACTIONS(7532), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7534), 1, - sym_regex, - STATE(1122), 1, - aux_sym__literal_repeat1, - STATE(1292), 1, - sym_concatenation, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7530), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(912), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168249] = 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163558] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3341), 1, - sym_word, - ACTIONS(3345), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7504), 1, - sym__special_character, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7508), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(628), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1641), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168322] = 19, - ACTIONS(3), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163607] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(7536), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168393] = 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163658] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(3063), 1, - sym_word, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3089), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6805), 21, sym_test_operator, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7538), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7540), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(595), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1510), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168466] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163711] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(7542), 1, - sym_word, - ACTIONS(7546), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, sym_test_operator, - ACTIONS(7548), 1, - sym_regex, - STATE(1934), 1, - aux_sym__literal_repeat1, - STATE(2083), 1, - sym_concatenation, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7544), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1765), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168541] = 7, - ACTIONS(3), 1, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163768] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - STATE(3794), 1, - sym_string, - ACTIONS(1171), 2, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, sym_test_operator, - sym__brace_start, - ACTIONS(6649), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6647), 9, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7428), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 16, - anon_sym_LPAREN_LPAREN, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [168588] = 21, + [163829] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7550), 1, - sym_word, - ACTIONS(7552), 1, - sym__special_character, - ACTIONS(7556), 1, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, sym_test_operator, - ACTIONS(7558), 1, - sym_regex, - STATE(1108), 1, - aux_sym__literal_repeat1, - STATE(1305), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7554), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168663] = 20, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163892] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6395), 1, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, sym_test_operator, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7480), 1, - sym__special_character, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3973), 1, - aux_sym__literal_repeat1, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7484), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2887), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168736] = 20, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163957] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3063), 1, - sym_word, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3089), 1, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7538), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7540), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(596), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1510), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168809] = 19, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [164036] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164103] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7463), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [164182] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164251] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [164308] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164379] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7473), 1, + anon_sym_RPAREN, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7406), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [164458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7475), 1, + aux_sym_concatenation_token1, + ACTIONS(7477), 1, + sym__concat, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(7560), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 30, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168880] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(675), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, anon_sym_DOLLAR, - ACTIONS(681), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(685), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(687), 1, aux_sym_number_token2, - ACTIONS(689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, anon_sym_BQUOTE, - ACTIONS(695), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(7562), 1, - sym_word, - ACTIONS(7564), 1, - sym__special_character, - ACTIONS(7568), 1, - sym_test_operator, - ACTIONS(7570), 1, - sym_regex, - STATE(969), 1, - aux_sym__literal_repeat1, - STATE(1159), 1, - sym_concatenation, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7566), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(761), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168955] = 19, + sym_word, + [164509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(7475), 1, + aux_sym_concatenation_token1, + ACTIONS(7477), 1, + sym__concat, + STATE(3117), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, - sym_test_operator, - ACTIONS(7572), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169026] = 20, + sym_word, + [164560] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + [164637] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [164712] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [164767] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164822] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164879] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7479), 1, + sym__concat, + ACTIONS(6838), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6836), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164926] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164981] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165036] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [165091] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7481), 1, + sym__concat, + ACTIONS(6844), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6842), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165138] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(7483), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [165217] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(3075), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(3081), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3341), 1, - sym_word, - ACTIONS(3345), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(7502), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6616), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7504), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7506), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7510), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7514), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1923), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7500), 2, + STATE(7440), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7508), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7516), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(625), 2, + STATE(3419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1641), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -207168,156 +219130,61 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [169099] = 20, + [165306] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(6861), 1, - sym__special_character, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6869), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(7574), 1, - sym_word, - ACTIONS(7578), 1, + ACTIONS(6508), 1, sym_test_operator, - STATE(1162), 1, - aux_sym__literal_repeat1, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7576), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(465), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169172] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6615), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6610), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, - anon_sym_DOLLAR, - ACTIONS(6619), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(6621), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(6635), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7580), 1, - sym_word, - ACTIONS(7584), 1, - sym_test_operator, - STATE(1420), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(6611), 2, + STATE(7451), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7582), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(510), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169245] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, - anon_sym_DOLLAR, - ACTIONS(6861), 1, - sym__special_character, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, - aux_sym_number_token1, - ACTIONS(6869), 1, - aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(7574), 1, - sym_word, - ACTIONS(7578), 1, - sym_test_operator, - STATE(1162), 1, - aux_sym__literal_repeat1, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7576), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(467), 2, + STATE(3420), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(876), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -207327,156 +219194,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [169318] = 20, + [165395] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(3093), 1, - sym_word, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3105), 1, - aux_sym_number_token1, - ACTIONS(3107), 1, - aux_sym_number_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3119), 1, - sym_test_operator, - ACTIONS(3121), 1, - sym__brace_start, - ACTIONS(7588), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7590), 1, - sym__special_character, - ACTIONS(7592), 1, - anon_sym_DQUOTE, - ACTIONS(7596), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, - anon_sym_BQUOTE, - ACTIONS(7600), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(7586), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7594), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7602), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(597), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169391] = 20, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165450] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(3093), 1, - sym_word, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3105), 1, - aux_sym_number_token1, - ACTIONS(3107), 1, - aux_sym_number_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3119), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 21, sym_test_operator, - ACTIONS(3121), 1, - sym__brace_start, - ACTIONS(7588), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7590), 1, - sym__special_character, - ACTIONS(7592), 1, - anon_sym_DQUOTE, - ACTIONS(7596), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, - anon_sym_BQUOTE, - ACTIONS(7600), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(7586), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7594), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7602), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(607), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169464] = 20, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165505] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(3075), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(3081), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3341), 1, - sym_word, - ACTIONS(3345), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(7502), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7504), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7506), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7510), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7514), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1923), 1, + ACTIONS(7485), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7500), 2, + STATE(7494), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7508), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7516), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(648), 2, + STATE(3422), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1641), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -207486,144 +219352,27 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [169537] = 20, - ACTIONS(71), 1, + [165594] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3834), 1, - sym_word, - ACTIONS(3838), 1, + ACTIONS(7475), 1, + aux_sym_concatenation_token1, + ACTIONS(7477), 1, + sym__concat, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7604), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7606), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(746), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2101), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169610] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, sym__brace_start, - ACTIONS(7024), 1, - sym__special_character, - ACTIONS(7608), 1, - sym_word, - ACTIONS(7612), 1, - sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 30, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7610), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(555), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1319), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169683] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7616), 1, - anon_sym_DQUOTE, - STATE(4323), 1, - sym_string, - ACTIONS(1171), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(7618), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7614), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -207631,450 +219380,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [169730] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6819), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, anon_sym_DOLLAR, - ACTIONS(6825), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6829), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6831), 1, aux_sym_number_token2, - ACTIONS(6833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7024), 1, - sym__special_character, - ACTIONS(7608), 1, - sym_word, - ACTIONS(7612), 1, - sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7610), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(558), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1319), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169803] = 21, + sym_word, + [165645] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7620), 1, - sym_word, - ACTIONS(7622), 1, - sym__special_character, - ACTIONS(7626), 1, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, sym_test_operator, - ACTIONS(7628), 1, - sym_regex, - STATE(909), 1, - aux_sym__literal_repeat1, - STATE(943), 1, - sym_concatenation, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7624), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(726), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169878] = 7, - ACTIONS(3), 1, + ACTIONS(7487), 1, + anon_sym_RPAREN, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7406), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [165724] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(7616), 1, - anon_sym_DQUOTE, - STATE(4323), 1, - sym_string, - ACTIONS(1175), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(7618), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7614), 9, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7218), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 16, + [165781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7489), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [165826] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7493), 1, + sym__special_character, + STATE(3065), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [169925] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, anon_sym_DOLLAR, - ACTIONS(6953), 1, - sym__special_character, - ACTIONS(6955), 1, - anon_sym_DQUOTE, - ACTIONS(6959), 1, aux_sym_number_token1, - ACTIONS(6961), 1, aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, - anon_sym_BQUOTE, - ACTIONS(6969), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(7376), 1, sym_word, - ACTIONS(7380), 1, + ACTIONS(5395), 23, + sym_file_descriptor, sym_test_operator, - STATE(2974), 1, - aux_sym__literal_repeat1, - ACTIONS(6945), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7378), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1469), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2906), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169998] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(3834), 1, - sym_word, - ACTIONS(3838), 1, - sym_test_operator, - ACTIONS(7502), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7604), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7606), 2, sym_raw_string, sym_ansi_c_string, - STATE(749), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2101), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170071] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7558), 1, - sym_regex, - ACTIONS(7630), 1, - sym_word, - ACTIONS(7632), 1, - sym__special_character, - ACTIONS(7636), 1, - sym_test_operator, - STATE(1108), 1, - aux_sym__literal_repeat1, - STATE(1305), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7634), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170146] = 19, + [165875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7495), 1, + aux_sym_concatenation_token1, + ACTIONS(7498), 1, + sym__concat, + STATE(3115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(7638), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 30, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170217] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, - sym_test_operator, - ACTIONS(7640), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170288] = 7, + sym_word, + [165926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, - sym_file_descriptor, - ACTIONS(7644), 1, - anon_sym_DQUOTE, - STATE(4346), 1, - sym_string, - ACTIONS(7646), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7642), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 17, + ACTIONS(7503), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7501), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [165971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7475), 1, + aux_sym_concatenation_token1, + ACTIONS(7505), 1, + sym__concat, + STATE(3115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -208082,145 +219705,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [170335] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3844), 1, - sym_word, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - aux_sym_number_token1, - ACTIONS(3860), 1, - aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3872), 1, - sym_test_operator, - ACTIONS(3874), 1, - sym__brace_start, - ACTIONS(7648), 1, - sym__special_character, - STATE(2312), 1, - aux_sym__literal_repeat1, - ACTIONS(3846), 2, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3856), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3870), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(748), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170408] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, anon_sym_DOLLAR, - ACTIONS(6619), 1, sym__special_character, - ACTIONS(6621), 1, anon_sym_DQUOTE, - ACTIONS(6625), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6627), 1, aux_sym_number_token2, - ACTIONS(6629), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, anon_sym_BQUOTE, - ACTIONS(6635), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7580), 1, - sym_word, - ACTIONS(7584), 1, - sym_test_operator, - STATE(1420), 1, - aux_sym__literal_repeat1, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7582), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(532), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170481] = 7, + sym_word, + [166022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, - sym_file_descriptor, - ACTIONS(7644), 1, - anon_sym_DQUOTE, - STATE(4346), 1, - sym_string, - ACTIONS(7646), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7642), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 17, + ACTIONS(7491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7489), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [166067] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7256), 1, + anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_CARET, + ACTIONS(7260), 1, + anon_sym_AMP, + ACTIONS(7272), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7250), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7252), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7254), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7507), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7264), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7509), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7475), 1, + aux_sym_concatenation_token1, + ACTIONS(7513), 1, + sym__concat, + STATE(3115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -208228,103 +219847,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [170528] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(365), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(367), 1, aux_sym_number_token2, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, - sym_test_operator, - ACTIONS(7650), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170599] = 20, + sym_word, + [166189] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6801), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6799), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166234] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3850), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(3860), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3872), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(3874), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7648), 1, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, sym__special_character, - STATE(2312), 1, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7515), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(3846), 2, + STATE(7495), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3856), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3870), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(766), 2, + STATE(3423), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2023), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -208334,419 +219970,615 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [170672] = 20, + [166323] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(6927), 1, - sym__special_character, - ACTIONS(7652), 1, - sym_word, - ACTIONS(7656), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7654), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(671), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1884), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170745] = 19, - ACTIONS(3), 1, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7517), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166402] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7658), 1, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7517), 1, anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170816] = 19, - ACTIONS(3), 1, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166481] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - ACTIONS(7660), 1, - anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170887] = 20, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7517), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166560] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2496), 1, - sym_word, - ACTIONS(2502), 1, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + sym_test_operator, + ACTIONS(7519), 1, + anon_sym_RPAREN, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7406), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166639] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7534), 1, + anon_sym_LT_LT_LT, + ACTIONS(7537), 1, + sym_file_descriptor, + ACTIONS(7540), 1, + sym_variable_name, + STATE(6771), 1, + sym_subscript, + ACTIONS(7531), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3127), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3581), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(7528), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(7521), 5, anon_sym_DOLLAR, - ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2522), 1, + sym_word, + ACTIONS(7525), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(7523), 14, sym_test_operator, - ACTIONS(2524), 1, sym__brace_start, - ACTIONS(7664), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7666), 1, sym__special_character, - ACTIONS(7668), 1, anon_sym_DQUOTE, - ACTIONS(7672), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7674), 1, anon_sym_BQUOTE, - ACTIONS(7676), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1524), 1, - aux_sym__literal_repeat1, - ACTIONS(7662), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7670), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7678), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(517), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1186), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170960] = 20, + [166702] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(6927), 1, - sym__special_character, - ACTIONS(7652), 1, - sym_word, - ACTIONS(7656), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - STATE(1549), 1, - aux_sym__literal_repeat1, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7654), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(651), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1884), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171033] = 19, - ACTIONS(3), 1, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7543), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166781] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7458), 1, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, + sym_test_operator, + ACTIONS(7545), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166860] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6791), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6789), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166907] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - ACTIONS(7680), 1, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7543), 1, anon_sym_RBRACK, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7454), 2, - sym__special_character, - sym__comment_word, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166986] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171104] = 20, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [167041] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(2496), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(2502), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(2508), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(2514), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2522), 1, + ACTIONS(6508), 1, sym_test_operator, - ACTIONS(2524), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7664), 1, + ACTIONS(6641), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7666), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7668), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7672), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7674), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7676), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1524), 1, + STATE(6426), 1, aux_sym__literal_repeat1, - ACTIONS(7662), 2, + STATE(7528), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7670), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7678), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(526), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1186), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171177] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7558), 1, - sym_regex, - ACTIONS(7682), 1, - sym_word, - ACTIONS(7684), 1, - sym__special_character, - ACTIONS(7688), 1, - sym_test_operator, - STATE(1108), 1, - aux_sym__literal_repeat1, - STATE(1305), 1, + STATE(3310), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7686), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(906), 9, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -208756,250 +220588,108 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [171252] = 18, + [167130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6579), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171320] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6715), 1, - anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, - anon_sym_BQUOTE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, - sym__brace_start, - ACTIONS(7698), 1, - sym_word, - ACTIONS(7700), 1, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7706), 1, - sym__comment_word, - ACTIONS(6705), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7702), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7704), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3632), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171388] = 21, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [167185] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7734), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2293), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171462] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3804), 1, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(6574), 1, + anon_sym_esac, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3810), 1, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(3814), 1, - aux_sym_number_token1, - ACTIONS(3816), 1, - aux_sym_number_token2, - ACTIONS(3818), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3822), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(3824), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3832), 1, - sym__brace_start, - ACTIONS(7736), 1, - sym_word, - ACTIONS(7738), 1, - anon_sym_DOLLAR, - ACTIONS(7744), 1, - sym__comment_word, - ACTIONS(3802), 2, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7603), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3826), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7740), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7742), 3, - sym__bare_dollar, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(2134), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171530] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4104), 1, - anon_sym_DQUOTE, - ACTIONS(4108), 1, - aux_sym_number_token1, - ACTIONS(4110), 1, - aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4124), 1, - sym__brace_start, - ACTIONS(7746), 1, - sym_word, - ACTIONS(7748), 1, - anon_sym_DOLLAR, - ACTIONS(7754), 1, - sym__comment_word, - ACTIONS(4096), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4120), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7750), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7752), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2377), 9, + STATE(3440), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -209009,197 +220699,61 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [171598] = 18, - ACTIONS(3), 1, + [167274] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(7756), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(7758), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(7764), 1, - sym__comment_word, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7762), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1700), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171666] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(991), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(7756), 1, - sym_word, - ACTIONS(7764), 1, - sym__comment_word, - ACTIONS(7766), 1, - anon_sym_DOLLAR, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, + ACTIONS(6508), 1, sym_test_operator, - sym__special_character, - ACTIONS(7762), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1700), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171734] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6615), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6621), 1, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(6635), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7768), 1, - sym_word, - ACTIONS(7770), 1, - anon_sym_DOLLAR, - ACTIONS(7776), 1, - sym__comment_word, - ACTIONS(6611), 2, + ACTIONS(7547), 1, + anon_sym_esac, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7291), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7772), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7774), 3, - sym__bare_dollar, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(1352), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171802] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7780), 1, - anon_sym_DOLLAR, - ACTIONS(7786), 1, - sym__comment_word, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7782), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7784), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(830), 9, + STATE(3438), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -209209,99 +220763,61 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [171870] = 18, - ACTIONS(3), 1, + [167363] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3440), 1, - anon_sym_DQUOTE, - ACTIONS(3444), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(3446), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(3448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, - anon_sym_BQUOTE, - ACTIONS(3454), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3464), 1, - sym__brace_start, - ACTIONS(7788), 1, - sym_word, - ACTIONS(7790), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - sym__comment_word, - ACTIONS(3432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3456), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7792), 2, + ACTIONS(6508), 1, sym_test_operator, - sym__special_character, - ACTIONS(7794), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2044), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171938] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7798), 1, - sym_word, - ACTIONS(7802), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7804), 1, - anon_sym_DOLLAR, - ACTIONS(7806), 1, + ACTIONS(7228), 1, sym__special_character, - ACTIONS(7808), 1, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7812), 1, - aux_sym_number_token1, - ACTIONS(7814), 1, - aux_sym_number_token2, - ACTIONS(7816), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7822), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7826), 1, - sym_test_operator, - ACTIONS(7828), 1, - sym__brace_start, - STATE(4981), 1, + ACTIONS(7549), 1, + anon_sym_esac, + STATE(6426), 1, aux_sym__literal_repeat1, - STATE(5071), 1, - sym_concatenation, - ACTIONS(7800), 2, + STATE(7315), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7810), 2, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7824), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4956), 9, + STATE(3437), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -209311,1473 +220827,1449 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [172010] = 18, - ACTIONS(3), 1, + [167452] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 23, sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172078] = 18, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [167497] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(7840), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172146] = 18, - ACTIONS(3), 1, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7551), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167576] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7844), 1, - anon_sym_DOLLAR, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172214] = 20, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7551), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167655] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, - anon_sym_DOLLAR, - ACTIONS(6619), 1, - sym__special_character, - ACTIONS(6621), 1, - anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, - anon_sym_BQUOTE, - ACTIONS(6635), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7852), 1, - sym_word, - ACTIONS(7856), 1, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - STATE(1541), 1, - aux_sym__literal_repeat1, - STATE(1584), 1, - sym_concatenation, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7854), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1165), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172286] = 18, - ACTIONS(3), 1, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7551), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167734] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(7858), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, + ACTIONS(7402), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7434), 1, + anon_sym_EQ_TILDE, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172354] = 18, - ACTIONS(3), 1, + ACTIONS(7553), 1, + anon_sym_RPAREN, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7406), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167813] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(7860), 1, - sym_word, - ACTIONS(7862), 1, - anon_sym_DOLLAR, - ACTIONS(7868), 1, - sym__comment_word, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7864), 2, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, sym_test_operator, - sym__special_character, - ACTIONS(7866), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172422] = 18, - ACTIONS(3), 1, + ACTIONS(7555), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167892] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172490] = 21, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7557), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167971] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7904), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2700), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172564] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(7906), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172632] = 18, - ACTIONS(3), 1, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7557), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168050] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(7860), 1, - sym_word, - ACTIONS(7868), 1, - sym__comment_word, - ACTIONS(7908), 1, - anon_sym_DOLLAR, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7864), 2, + ACTIONS(6807), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6805), 23, sym_test_operator, - sym__special_character, - ACTIONS(7866), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172700] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168095] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7936), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7938), 1, - sym_variable_name, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2671), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172774] = 21, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7557), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168174] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2649), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172848] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7944), 1, - anon_sym_DOLLAR, - ACTIONS(7950), 1, - sym__comment_word, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7946), 2, + ACTIONS(7172), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7178), 1, + anon_sym_AMP_AMP, + ACTIONS(7180), 1, + anon_sym_PIPE, + ACTIONS(7182), 1, + anon_sym_CARET, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7198), 1, + anon_sym_STAR_STAR, + ACTIONS(7200), 1, + anon_sym_EQ_TILDE, + ACTIONS(7202), 1, + anon_sym_QMARK, + ACTIONS(7206), 1, sym_test_operator, - sym__special_character, - ACTIONS(7948), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172916] = 21, + ACTIONS(7559), 1, + anon_sym_COLON, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7188), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7190), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7192), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7174), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168253] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(1261), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7952), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2639), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172990] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(6831), 1, aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(7954), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, + ACTIONS(1263), 24, + sym_file_descriptor, sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173058] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, sym__brace_start, - ACTIONS(6681), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, anon_sym_DQUOTE, - ACTIONS(6689), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, anon_sym_BQUOTE, - ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7958), 1, - anon_sym_DOLLAR, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173126] = 21, + [168298] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(7966), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2699), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [173200] = 18, - ACTIONS(3), 1, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7561), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168377] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7950), 1, - sym__comment_word, - ACTIONS(7968), 1, - anon_sym_DOLLAR, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7946), 2, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7410), 1, + anon_sym_AMP_AMP, + ACTIONS(7412), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7430), 1, + anon_sym_STAR_STAR, + ACTIONS(7438), 1, sym_test_operator, - sym__special_character, - ACTIONS(7948), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173268] = 18, - ACTIONS(3), 1, + ACTIONS(7404), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7420), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168450] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(7970), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173336] = 21, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7561), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168529] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2980), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2335), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [173410] = 21, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, + sym_test_operator, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7561), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168608] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7972), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2413), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [173484] = 21, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, + sym_test_operator, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7563), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168687] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(7974), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2672), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [173558] = 18, - ACTIONS(3), 1, + ACTIONS(7280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7282), 1, + anon_sym_AMP_AMP, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_CARET, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_STAR_STAR, + ACTIONS(7304), 1, + sym_test_operator, + ACTIONS(7310), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_QMARK, + ACTIONS(7563), 1, + anon_sym_RBRACK, + ACTIONS(7278), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7292), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7294), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7300), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7446), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168766] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, - anon_sym_DOLLAR, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(7978), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, + ACTIONS(7322), 1, + anon_sym_STAR_STAR, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, sym_test_operator, - sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173626] = 18, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7398), 1, + anon_sym_EQ, + ACTIONS(7563), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7338), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7400), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(8000), 1, - anon_sym_DOLLAR, - ACTIONS(7978), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, + ACTIONS(1314), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [168890] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7220), 1, + anon_sym_STAR_STAR, + ACTIONS(7222), 1, sym_test_operator, - sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173694] = 18, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7382), 1, + anon_sym_AMP_AMP, + ACTIONS(7384), 1, + anon_sym_PIPE, + ACTIONS(7386), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP, + ACTIONS(7390), 1, + anon_sym_EQ_TILDE, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7543), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7210), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7212), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7378), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8008), 1, - anon_sym_DOLLAR, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173762] = 18, + ACTIONS(1346), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [169014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8026), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173830] = 18, + ACTIONS(1358), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [169059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3440), 1, + ACTIONS(1338), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [169104] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(3444), 1, - aux_sym_number_token1, - ACTIONS(3446), 1, - aux_sym_number_token2, - ACTIONS(3448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, - anon_sym_BQUOTE, - ACTIONS(3454), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3464), 1, - sym__brace_start, - ACTIONS(7788), 1, - sym_word, - ACTIONS(7796), 1, - sym__comment_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR, - ACTIONS(3432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3456), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7792), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7794), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2044), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173898] = 18, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [169159] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - ACTIONS(6587), 1, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [169214] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6589), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8030), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, + ACTIONS(6508), 1, sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173966] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6577), 1, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(6597), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8032), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, + ACTIONS(7565), 1, + anon_sym_esac, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6923), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(3627), 9, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3424), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -210787,3324 +222279,3139 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174034] = 18, - ACTIONS(3), 1, + [169303] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - aux_sym_number_token1, - ACTIONS(123), 1, - aux_sym_number_token2, - ACTIONS(125), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, - anon_sym_BQUOTE, - ACTIONS(131), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, + ACTIONS(7025), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [169379] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6969), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [169455] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169499] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7166), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7164), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169543] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7162), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7160), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169587] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169631] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169675] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169719] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169763] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(8034), 1, - sym_word, - ACTIONS(8036), 1, - anon_sym_DOLLAR, - ACTIONS(8042), 1, - sym__comment_word, - ACTIONS(109), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8038), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(8040), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(386), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174102] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, aux_sym_number_token1, - ACTIONS(123), 1, aux_sym_number_token2, - ACTIONS(125), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(8034), 1, - sym_word, - ACTIONS(8042), 1, - sym__comment_word, - ACTIONS(8044), 1, - anon_sym_DOLLAR, - ACTIONS(109), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8038), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8040), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(386), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174170] = 18, + sym_word, + [169851] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - aux_sym_number_token1, - ACTIONS(4879), 1, - aux_sym_number_token2, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4893), 1, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(8046), 1, - sym_word, - ACTIONS(8050), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8052), 1, - anon_sym_DOLLAR, - ACTIONS(8056), 1, - anon_sym_DQUOTE, - ACTIONS(8060), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8062), 1, - anon_sym_BQUOTE, - ACTIONS(8064), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8068), 1, - sym__comment_word, - ACTIONS(8048), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8054), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8066), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8058), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4574), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174238] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(304), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(310), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(314), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(316), 1, aux_sym_number_token2, - ACTIONS(318), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174306] = 18, + sym_word, + [169939] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169983] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170027] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - aux_sym_number_token1, - ACTIONS(4879), 1, - aux_sym_number_token2, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4893), 1, + ACTIONS(1346), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(8046), 1, - sym_word, - ACTIONS(8050), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8056), 1, - anon_sym_DQUOTE, - ACTIONS(8060), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8062), 1, - anon_sym_BQUOTE, - ACTIONS(8064), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8068), 1, - sym__comment_word, - ACTIONS(8070), 1, - anon_sym_DOLLAR, - ACTIONS(8048), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8054), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(8066), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8058), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(4574), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174374] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, aux_sym_number_token1, - ACTIONS(6869), 1, aux_sym_number_token2, - ACTIONS(6871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, anon_sym_BQUOTE, - ACTIONS(6877), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(8072), 1, - sym_word, - ACTIONS(8074), 1, - anon_sym_DOLLAR, - ACTIONS(8080), 1, - sym__comment_word, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8076), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8078), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(999), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174442] = 21, + sym_word, + [170115] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8082), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2632), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [174516] = 21, + ACTIONS(7017), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170191] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8084), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2631), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [174590] = 18, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, - anon_sym_BQUOTE, - ACTIONS(7424), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7430), 1, + ACTIONS(1318), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(8086), 1, - sym_word, - ACTIONS(8088), 1, - anon_sym_DOLLAR, - ACTIONS(8094), 1, - sym__comment_word, - ACTIONS(7402), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8090), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8092), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2003), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174658] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6857), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, - aux_sym_number_token1, - ACTIONS(6869), 1, - aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(8072), 1, - sym_word, - ACTIONS(8080), 1, - sym__comment_word, - ACTIONS(8096), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8076), 2, - sym_test_operator, sym__special_character, - ACTIONS(8078), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(999), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174726] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, aux_sym_number_token1, - ACTIONS(7416), 1, aux_sym_number_token2, - ACTIONS(7418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, anon_sym_BQUOTE, - ACTIONS(7424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7430), 1, - sym__brace_start, - ACTIONS(8086), 1, - sym_word, - ACTIONS(8094), 1, - sym__comment_word, - ACTIONS(8098), 1, - anon_sym_DOLLAR, - ACTIONS(7402), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8090), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8092), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2003), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174794] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2630), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [174868] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8102), 1, sym_word, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8108), 1, - sym__special_character, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8122), 1, - sym_test_operator, - STATE(3696), 1, - aux_sym__literal_repeat1, - STATE(4002), 1, - sym_concatenation, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3597), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174940] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8124), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2752), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175014] = 21, + [170289] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8126), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2640), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175088] = 18, + ACTIONS(7031), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170365] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, - anon_sym_DOLLAR, - ACTIONS(2908), 1, - aux_sym_number_token1, - ACTIONS(2910), 1, - aux_sym_number_token2, - ACTIONS(2914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2924), 1, - sym__brace_start, - ACTIONS(7384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7388), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7394), 1, - anon_sym_BQUOTE, - ACTIONS(7396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8128), 1, - sym_word, - ACTIONS(8134), 1, - sym__comment_word, - ACTIONS(7382), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8130), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8132), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1556), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175156] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7406), 1, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7408), 1, - sym__special_character, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, - anon_sym_BQUOTE, - ACTIONS(7424), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7430), 1, - sym__brace_start, - ACTIONS(8136), 1, - sym_word, - ACTIONS(8140), 1, - sym_test_operator, - STATE(2089), 1, - aux_sym__literal_repeat1, - STATE(2178), 1, - sym_concatenation, - ACTIONS(7402), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8138), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1921), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175228] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6955), 1, - anon_sym_DQUOTE, - ACTIONS(6959), 1, - aux_sym_number_token1, - ACTIONS(6961), 1, - aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - ACTIONS(6969), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(8142), 1, - sym_word, - ACTIONS(8144), 1, - anon_sym_DOLLAR, - ACTIONS(8150), 1, - sym__comment_word, - ACTIONS(6945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8146), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8148), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2966), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175296] = 18, + [170419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6955), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(6959), 1, - aux_sym_number_token1, - ACTIONS(6961), 1, - aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, - anon_sym_BQUOTE, - ACTIONS(6969), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(8142), 1, - sym_word, - ACTIONS(8150), 1, - sym__comment_word, - ACTIONS(8152), 1, - anon_sym_DOLLAR, - ACTIONS(6945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8146), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8148), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2966), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175364] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, + ACTIONS(7613), 1, sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8154), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2645), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + STATE(4606), 1, sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175438] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8156), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2650), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175512] = 20, + [170473] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7406), 1, - anon_sym_DOLLAR, - ACTIONS(7408), 1, - sym__special_character, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, - anon_sym_BQUOTE, - ACTIONS(7424), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7430), 1, - sym__brace_start, - ACTIONS(8158), 1, - sym_word, - ACTIONS(8162), 1, - sym_test_operator, - STATE(2051), 1, - aux_sym__literal_repeat1, - STATE(2195), 1, - sym_concatenation, - ACTIONS(7402), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8160), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1924), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175584] = 21, + ACTIONS(7102), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7100), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170543] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8164), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2652), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175658] = 21, + ACTIONS(7448), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7450), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170587] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8166), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2654), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175732] = 21, + ACTIONS(7166), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7164), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170631] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8168), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2658), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175806] = 21, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170675] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8170), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2659), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [175880] = 18, - ACTIONS(3), 1, + ACTIONS(7015), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170751] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7786), 1, - sym__comment_word, - ACTIONS(8172), 1, - anon_sym_DOLLAR, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7782), 2, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 20, sym_test_operator, - sym__special_character, - ACTIONS(7784), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(830), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175948] = 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170805] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8174), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2662), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [176022] = 21, + ACTIONS(7162), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7160), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170849] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8176), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2314), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [176096] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8178), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176164] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_DOLLAR, - ACTIONS(2355), 1, - aux_sym_number_token1, - ACTIONS(2357), 1, - aux_sym_number_token2, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2373), 1, - sym__brace_start, - ACTIONS(8180), 1, - sym_word, - ACTIONS(8184), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8188), 1, - anon_sym_DQUOTE, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, - anon_sym_BQUOTE, - ACTIONS(8196), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8200), 1, - sym__comment_word, - ACTIONS(8182), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8186), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8198), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8190), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1340), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176232] = 21, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7641), 1, + anon_sym_COLON, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170925] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8202), 1, - aux_sym__simple_variable_name_token1, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2665), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [176306] = 20, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170973] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, - anon_sym_DOLLAR, - ACTIONS(6619), 1, - sym__special_character, - ACTIONS(6621), 1, - anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, - anon_sym_BQUOTE, - ACTIONS(6635), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(8204), 1, - sym_word, - ACTIONS(8208), 1, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, sym_test_operator, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1781), 1, - sym_concatenation, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8206), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1117), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176378] = 18, - ACTIONS(3), 1, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6791), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6789), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171029] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3105), 1, - aux_sym_number_token1, - ACTIONS(3107), 1, - aux_sym_number_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3121), 1, - sym__brace_start, - ACTIONS(7588), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7592), 1, - anon_sym_DQUOTE, - ACTIONS(7596), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, - anon_sym_BQUOTE, - ACTIONS(7600), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8210), 1, - sym_word, - ACTIONS(8212), 1, - anon_sym_DOLLAR, - ACTIONS(8218), 1, - sym__comment_word, - ACTIONS(7586), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7602), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8214), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8216), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1572), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176446] = 18, - ACTIONS(3), 1, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171077] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_number_token1, - ACTIONS(1545), 1, - aux_sym_number_token2, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1563), 1, - sym__brace_start, - ACTIONS(6747), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6751), 1, - anon_sym_DQUOTE, - ACTIONS(6755), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6757), 1, - anon_sym_BQUOTE, - ACTIONS(6759), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, - sym_word, - ACTIONS(8222), 1, - anon_sym_DOLLAR, - ACTIONS(8228), 1, - sym__comment_word, - ACTIONS(6743), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6761), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8224), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8226), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1042), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176514] = 18, - ACTIONS(3), 1, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171127] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7786), 1, - sym__comment_word, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7782), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7784), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(830), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176582] = 20, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171179] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4420), 1, - anon_sym_DOLLAR, - ACTIONS(4422), 1, - sym__special_character, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(8230), 1, - sym_word, - ACTIONS(8234), 1, - sym_test_operator, - STATE(4421), 1, - aux_sym__literal_repeat1, - STATE(4512), 1, - sym_concatenation, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8232), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4334), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176654] = 18, - ACTIONS(3), 1, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171233] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(4670), 1, - aux_sym_number_token1, - ACTIONS(4672), 1, - aux_sym_number_token2, - ACTIONS(4676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4686), 1, - sym__brace_start, - ACTIONS(7434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7438), 1, - anon_sym_DQUOTE, - ACTIONS(7442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7444), 1, - anon_sym_BQUOTE, - ACTIONS(7446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8236), 1, - sym_word, - ACTIONS(8238), 1, - anon_sym_DOLLAR, - ACTIONS(8244), 1, - sym__comment_word, - ACTIONS(7432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7448), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8242), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2912), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176722] = 18, - ACTIONS(3), 1, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [171291] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_number_token1, - ACTIONS(1545), 1, - aux_sym_number_token2, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1563), 1, - sym__brace_start, - ACTIONS(6747), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6751), 1, - anon_sym_DQUOTE, - ACTIONS(6755), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6757), 1, - anon_sym_BQUOTE, - ACTIONS(6759), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, - sym_word, - ACTIONS(8228), 1, - sym__comment_word, - ACTIONS(8246), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6761), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8224), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8226), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1042), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176790] = 18, - ACTIONS(3), 1, + ACTIONS(1340), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171335] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8248), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176858] = 21, + ACTIONS(7013), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [171411] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8250), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2746), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [176932] = 20, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [171471] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(1261), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, aux_sym_number_token1, - ACTIONS(316), 1, aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7552), 1, - sym__special_character, - ACTIONS(8252), 1, sym_word, - ACTIONS(8256), 1, + ACTIONS(1263), 24, + sym_file_descriptor, sym_test_operator, - STATE(1097), 1, - aux_sym__literal_repeat1, - STATE(1290), 1, - sym_concatenation, - ACTIONS(302), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8254), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1473), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177004] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(304), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7552), 1, sym__special_character, - ACTIONS(8258), 1, - sym_word, - ACTIONS(8262), 1, - sym_test_operator, - STATE(1081), 1, - aux_sym__literal_repeat1, - STATE(1271), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8260), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1471), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177076] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8264), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2366), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [177150] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 1, - aux_sym_number_token1, - ACTIONS(3107), 1, - aux_sym_number_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3121), 1, - sym__brace_start, - ACTIONS(7588), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7592), 1, - anon_sym_DQUOTE, - ACTIONS(7596), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, anon_sym_BQUOTE, - ACTIONS(7600), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8210), 1, - sym_word, - ACTIONS(8218), 1, - sym__comment_word, - ACTIONS(8266), 1, - anon_sym_DOLLAR, - ACTIONS(7586), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7602), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8214), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8216), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1572), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177218] = 18, - ACTIONS(3), 1, + [171515] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(4670), 1, - aux_sym_number_token1, - ACTIONS(4672), 1, - aux_sym_number_token2, - ACTIONS(4676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4686), 1, - sym__brace_start, - ACTIONS(7434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7438), 1, - anon_sym_DQUOTE, - ACTIONS(7442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7444), 1, - anon_sym_BQUOTE, - ACTIONS(7446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8236), 1, - sym_word, - ACTIONS(8244), 1, - sym__comment_word, - ACTIONS(8268), 1, - anon_sym_DOLLAR, - ACTIONS(7432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7448), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8242), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2912), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177286] = 18, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7248), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [171577] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6820), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6818), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171621] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7055), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [171697] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171741] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171785] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [171861] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171905] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7248), 1, + anon_sym_PIPE, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7663), 1, + anon_sym_CARET, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [171969] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172013] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7663), 1, + anon_sym_CARET, + ACTIONS(7665), 1, + anon_sym_PIPE, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [172077] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7663), 1, + anon_sym_CARET, + ACTIONS(7665), 1, + anon_sym_PIPE, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7667), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + [172143] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7663), 1, + anon_sym_CARET, + ACTIONS(7665), 1, + anon_sym_PIPE, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7667), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7669), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [172211] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6829), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6827), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(8270), 1, - anon_sym_DOLLAR, - ACTIONS(7978), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177354] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(3293), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2290), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [177428] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6621), 1, - anon_sym_DQUOTE, - ACTIONS(6625), 1, aux_sym_number_token1, - ACTIONS(6627), 1, aux_sym_number_token2, - ACTIONS(6629), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, anon_sym_BQUOTE, - ACTIONS(6635), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7768), 1, - sym_word, - ACTIONS(7776), 1, - sym__comment_word, - ACTIONS(8272), 1, - anon_sym_DOLLAR, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7772), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7774), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1352), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177496] = 18, + sym_word, + [172299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(8274), 1, - anon_sym_DOLLAR, - ACTIONS(7978), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177564] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, aux_sym_number_token1, - ACTIONS(1065), 1, aux_sym_number_token2, - ACTIONS(1067), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8276), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177632] = 18, + sym_word, + [172343] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172387] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172431] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7009), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [172507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, - anon_sym_DOLLAR, - ACTIONS(1750), 1, - aux_sym_number_token1, - ACTIONS(1752), 1, - aux_sym_number_token2, - ACTIONS(1756), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1770), 1, + ACTIONS(1342), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6907), 1, - anon_sym_DQUOTE, - ACTIONS(6911), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6913), 1, - anon_sym_BQUOTE, - ACTIONS(6915), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8278), 1, - sym_word, - ACTIONS(8284), 1, - sym__comment_word, - ACTIONS(6899), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6917), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8280), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8282), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1120), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177700] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(7078), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7082), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7084), 1, aux_sym_number_token2, - ACTIONS(7086), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, anon_sym_BQUOTE, - ACTIONS(7092), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(8286), 1, - sym_word, - ACTIONS(8292), 1, - sym__comment_word, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8288), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8290), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1163), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177768] = 18, + sym_word, + [172551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6711), 1, - anon_sym_DOLLAR, - ACTIONS(6715), 1, - anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, - anon_sym_BQUOTE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, + ACTIONS(1314), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7698), 1, - sym_word, - ACTIONS(7706), 1, - sym__comment_word, - ACTIONS(6705), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7702), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7704), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3632), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177836] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(675), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(681), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(685), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(687), 1, aux_sym_number_token2, - ACTIONS(689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, anon_sym_BQUOTE, - ACTIONS(695), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(8294), 1, - sym_word, - ACTIONS(8300), 1, - sym__comment_word, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8296), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8298), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(795), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177904] = 21, - ACTIONS(71), 1, + sym_word, + [172595] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, sym_variable_name, - ACTIONS(3168), 1, + STATE(4393), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7675), 2, aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2285), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [177978] = 18, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [172649] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7244), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7246), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8302), 1, - sym_word, - ACTIONS(8308), 1, - sym__comment_word, - ACTIONS(8104), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8304), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(8306), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3675), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178046] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2524), 1, - sym__brace_start, - ACTIONS(7664), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7674), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7676), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8310), 1, - sym_word, - ACTIONS(8316), 1, - sym__comment_word, - ACTIONS(7662), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7678), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8312), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8314), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1322), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178114] = 18, + sym_word, + [172737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, + ACTIONS(7673), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8318), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178182] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, + ACTIONS(7677), 1, sym_variable_name, - ACTIONS(3301), 1, + STATE(4393), 1, + sym_string, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7675), 2, aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2277), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178256] = 21, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [172791] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8320), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2748), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178330] = 21, + ACTIONS(6820), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6818), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172835] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2974), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2364), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178404] = 18, - ACTIONS(3), 1, + ACTIONS(6829), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6827), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172879] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(6474), 1, sym_word, - ACTIONS(8324), 1, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(2194), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(2198), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2210), 1, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, sym__brace_start, - ACTIONS(8332), 1, - sym_word, - ACTIONS(8336), 1, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8338), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(8346), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8348), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(8350), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8354), 1, - sym__comment_word, - ACTIONS(8334), 2, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6851), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8340), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8352), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8344), 3, - sym__bare_dollar, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178540] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3804), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(3810), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - aux_sym_number_token1, - ACTIONS(3816), 1, - aux_sym_number_token2, - ACTIONS(3818), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3822), 1, - anon_sym_BQUOTE, - ACTIONS(3824), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3832), 1, - sym__brace_start, - ACTIONS(7736), 1, - sym_word, - ACTIONS(7744), 1, - sym__comment_word, - ACTIONS(3802), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3826), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7740), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7742), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2134), 9, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -214114,306 +225421,157 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [178608] = 21, + [172965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8356), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2749), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178682] = 21, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173009] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(3002), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2709), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178756] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_number_token1, - ACTIONS(2194), 1, - aux_sym_number_token2, - ACTIONS(2198), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2210), 1, - sym__brace_start, - ACTIONS(8332), 1, - sym_word, - ACTIONS(8336), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8342), 1, - anon_sym_DQUOTE, - ACTIONS(8346), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8348), 1, - anon_sym_BQUOTE, - ACTIONS(8350), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8354), 1, - sym__comment_word, - ACTIONS(8358), 1, - anon_sym_DOLLAR, - ACTIONS(8334), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8340), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8352), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8344), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178824] = 21, + ACTIONS(7007), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173085] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(3006), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7878), 1, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, + ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, + ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(7894), 1, + ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2711), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [178898] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6993), 1, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(6997), 1, - aux_sym_number_token1, - ACTIONS(6999), 1, - aux_sym_number_token2, - ACTIONS(7001), 1, + ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7005), 1, + ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7007), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7017), 1, - sym__brace_start, - ACTIONS(8360), 1, - sym_word, - ACTIONS(8362), 1, - anon_sym_DOLLAR, - ACTIONS(8368), 1, - sym__comment_word, - ACTIONS(6983), 2, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6824), 1, + sym_last_case_item, + ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8364), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8366), 3, - sym__bare_dollar, + ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [178966] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7804), 1, - anon_sym_DOLLAR, - ACTIONS(7808), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - aux_sym_number_token1, - ACTIONS(7814), 1, - aux_sym_number_token2, - ACTIONS(7816), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, - anon_sym_BQUOTE, - ACTIONS(7822), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7828), 1, - sym__brace_start, - ACTIONS(8370), 1, - sym_word, - ACTIONS(8376), 1, - sym__comment_word, - ACTIONS(7800), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7824), 2, + ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8374), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4998), 9, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -214423,1690 +225581,47353 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179034] = 18, + [173171] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7673), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7786), 1, - sym__comment_word, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7782), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7784), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(830), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179102] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, + ACTIONS(7677), 1, sym_variable_name, - ACTIONS(3008), 1, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, aux_sym__simple_variable_name_token1, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2714), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [179176] = 18, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [173225] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6993), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7673), 1, anon_sym_DQUOTE, - ACTIONS(6997), 1, - aux_sym_number_token1, - ACTIONS(6999), 1, - aux_sym_number_token2, - ACTIONS(7001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7005), 1, - anon_sym_BQUOTE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7017), 1, - sym__brace_start, - ACTIONS(8360), 1, - sym_word, - ACTIONS(8368), 1, - sym__comment_word, - ACTIONS(8380), 1, - anon_sym_DOLLAR, - ACTIONS(6983), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8364), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8366), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4337), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179244] = 21, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [173279] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(7066), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173355] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, + STATE(4606), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8382), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2359), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [179318] = 18, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [173409] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173453] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173499] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8384), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179386] = 18, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [173553] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173629] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173673] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173721] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173771] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173823] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8386), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179454] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(304), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8388), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179522] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2186), 1, - anon_sym_DOLLAR, - ACTIONS(2192), 1, - aux_sym_number_token1, - ACTIONS(2194), 1, - aux_sym_number_token2, - ACTIONS(2198), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2210), 1, - sym__brace_start, - ACTIONS(8332), 1, - sym_word, - ACTIONS(8336), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8342), 1, anon_sym_DQUOTE, - ACTIONS(8346), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8348), 1, - anon_sym_BQUOTE, - ACTIONS(8350), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8354), 1, - sym__comment_word, - ACTIONS(8334), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8340), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8352), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8344), 3, - sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179590] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4256), 1, - anon_sym_DOLLAR, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(4264), 1, aux_sym_number_token1, - ACTIONS(4266), 1, aux_sym_number_token2, - ACTIONS(4268), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, anon_sym_BQUOTE, - ACTIONS(4274), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(8390), 1, - sym_word, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(4252), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8394), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179658] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(8398), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179726] = 18, + [173921] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173965] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7003), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [174041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 1, - anon_sym_DOLLAR, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, + ACTIONS(1306), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(6677), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179794] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8400), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179862] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, - sym_variable_name, - ACTIONS(3291), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, aux_sym_number_token1, - ACTIONS(7894), 1, aux_sym_number_token2, - ACTIONS(7896), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2683), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [179936] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, anon_sym_BQUOTE, - ACTIONS(8020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8402), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180004] = 21, + sym_word, + [174085] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8404), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2362), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [180078] = 18, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174129] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8406), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180146] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6949), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(6953), 1, sym__special_character, - ACTIONS(6955), 1, anon_sym_DQUOTE, - ACTIONS(6959), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6961), 1, aux_sym_number_token2, - ACTIONS(6963), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, anon_sym_BQUOTE, - ACTIONS(6969), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(8408), 1, - sym_word, - ACTIONS(8412), 1, - sym_test_operator, - STATE(2980), 1, - aux_sym__literal_repeat1, - STATE(3003), 1, - sym_concatenation, - ACTIONS(6945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8410), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2916), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180218] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8414), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180286] = 20, + [174217] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4420), 1, - anon_sym_DOLLAR, - ACTIONS(4422), 1, - sym__special_character, - ACTIONS(4424), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_number_token1, - ACTIONS(4430), 1, - aux_sym_number_token2, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(8416), 1, - sym_word, - ACTIONS(8420), 1, - sym_test_operator, - STATE(4411), 1, - aux_sym__literal_repeat1, - STATE(4529), 1, - sym_concatenation, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8418), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4350), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180358] = 20, + ACTIONS(7001), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [174293] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6823), 1, - sym__special_character, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(8422), 1, - sym_word, - ACTIONS(8426), 1, - sym_test_operator, - STATE(1441), 1, - aux_sym__literal_repeat1, - STATE(1761), 1, - sym_concatenation, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8424), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1086), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180430] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(8428), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180498] = 18, - ACTIONS(3), 1, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7137), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174351] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2524), 1, - sym__brace_start, - ACTIONS(7664), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7672), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7674), 1, - anon_sym_BQUOTE, - ACTIONS(7676), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8310), 1, - sym_word, - ACTIONS(8316), 1, - sym__comment_word, - ACTIONS(8430), 1, - anon_sym_DOLLAR, - ACTIONS(7662), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7678), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8312), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8314), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1322), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180566] = 21, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174411] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8432), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2354), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [180640] = 20, + ACTIONS(6999), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [174487] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8434), 1, - sym_word, - ACTIONS(8436), 1, - sym__special_character, - ACTIONS(8440), 1, - sym_test_operator, - STATE(3684), 1, - aux_sym__literal_repeat1, - STATE(4020), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8438), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3799), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180712] = 20, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7139), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174549] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym__special_character, - ACTIONS(8442), 1, - sym_word, - ACTIONS(8446), 1, - sym_test_operator, - STATE(3659), 1, - aux_sym__literal_repeat1, - STATE(3967), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8444), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180784] = 18, - ACTIONS(3), 1, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7139), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174613] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2524), 1, - sym__brace_start, - ACTIONS(7664), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7672), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7674), 1, - anon_sym_BQUOTE, - ACTIONS(7676), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8310), 1, - sym_word, - ACTIONS(8316), 1, - sym__comment_word, - ACTIONS(8448), 1, - anon_sym_DOLLAR, - ACTIONS(7662), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7678), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8312), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8314), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1322), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180852] = 21, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174679] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8450), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2351), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [180926] = 18, - ACTIONS(3), 1, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174747] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6617), 1, - anon_sym_DOLLAR, - ACTIONS(6621), 1, - anon_sym_DQUOTE, - ACTIONS(6625), 1, - aux_sym_number_token1, - ACTIONS(6627), 1, - aux_sym_number_token2, - ACTIONS(6629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6633), 1, - anon_sym_BQUOTE, - ACTIONS(6635), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6645), 1, - sym__brace_start, - ACTIONS(7768), 1, - sym_word, - ACTIONS(7776), 1, - sym__comment_word, - ACTIONS(6611), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7772), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7774), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1352), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180994] = 21, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7679), 1, + anon_sym_EQ, + ACTIONS(7681), 1, + anon_sym_EQ_TILDE, + ACTIONS(7683), 1, + anon_sym_QMARK, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + [174821] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8452), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2337), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [181068] = 21, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7683), 1, + anon_sym_QMARK, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [174893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8454), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2331), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [181142] = 21, + ACTIONS(1316), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174937] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(6997), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175013] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8456), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2320), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [181216] = 21, - ACTIONS(71), 1, + [175067] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8458), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2311), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [181290] = 21, + [175121] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(7114), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7112), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175165] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7465), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7467), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175209] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6995), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175285] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7070), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175361] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [175405] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7469), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7471), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175451] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7106), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7104), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175495] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175549] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175593] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [175637] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7096), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175683] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [175727] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175781] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6993), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175857] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175901] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7501), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7503), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175945] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175989] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176033] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6991), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176109] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176153] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176197] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7645), 1, + anon_sym_STAR_STAR, + ACTIONS(7661), 1, + anon_sym_AMP, + ACTIONS(7663), 1, + anon_sym_CARET, + ACTIONS(7665), 1, + anon_sym_PIPE, + ACTIONS(7511), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(7643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7667), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7669), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7685), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176267] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6987), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176343] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176387] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176431] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6985), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176551] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, + sym_string, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [176605] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6983), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176681] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176725] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176801] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6979), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176877] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6977), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176953] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6975), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177029] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177083] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177127] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177171] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6973), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177247] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6971), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177323] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7291), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [177409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [177453] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177497] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, + sym_string, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [177551] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7689), 1, + anon_sym_AMP_AMP, + ACTIONS(7691), 1, + anon_sym_PIPE, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(7703), 1, + anon_sym_QMARK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + [177625] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6967), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177701] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6965), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177777] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6963), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177853] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7689), 1, + anon_sym_AMP_AMP, + ACTIONS(7691), 1, + anon_sym_PIPE, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(7703), 1, + anon_sym_QMARK, + ACTIONS(7705), 1, + anon_sym_EQ, + ACTIONS(7707), 1, + anon_sym_EQ_TILDE, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177929] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7689), 1, + anon_sym_AMP_AMP, + ACTIONS(7691), 1, + anon_sym_PIPE, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177999] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6961), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178075] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6959), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178151] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1314), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [178195] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_EQ, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7691), 1, + anon_sym_PIPE, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178263] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6957), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178339] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7086), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178415] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6955), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178491] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178557] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178633] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6951), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178709] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6807), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [178817] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178879] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6805), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178939] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6949), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179015] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [179071] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179147] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6945), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179223] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6943), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179299] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6941), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179375] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6939), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179451] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6937), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179527] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179603] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6933), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179679] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179755] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6805), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [179807] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6929), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [179883] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6807), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6805), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [179933] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180009] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6925), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180085] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7709), 1, + anon_sym_COLON, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180161] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180209] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [180253] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [180297] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [180341] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6923), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180417] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6807), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6805), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180465] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6921), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180541] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7123), 1, + anon_sym_EQ, + ACTIONS(7607), 1, + anon_sym_STAR_STAR, + ACTIONS(7647), 1, + sym_test_operator, + ACTIONS(7687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7689), 1, + anon_sym_AMP_AMP, + ACTIONS(7691), 1, + anon_sym_PIPE, + ACTIONS(7693), 1, + anon_sym_CARET, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7603), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7699), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7701), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7605), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7125), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180613] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7062), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [180701] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7062), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180745] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6919), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180821] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6917), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180897] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6879), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [180973] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7679), 1, + anon_sym_EQ, + ACTIONS(7681), 1, + anon_sym_EQ_TILDE, + ACTIONS(7683), 1, + anon_sym_QMARK, + ACTIONS(7713), 1, + anon_sym_RPAREN, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7711), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181049] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7168), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181125] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7053), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7051), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181169] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7679), 1, + anon_sym_EQ, + ACTIONS(7681), 1, + anon_sym_EQ_TILDE, + ACTIONS(7683), 1, + anon_sym_QMARK, + ACTIONS(7715), 1, + anon_sym_RPAREN, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7711), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181245] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7019), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181321] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7021), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181397] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7023), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181473] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181549] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7110), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181625] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7098), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [181701] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7035), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7033), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [181789] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6923), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181875] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6942), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181961] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7102), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7100), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182031] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7448), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7450), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182075] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182123] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7005), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182209] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7007), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182295] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7248), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182343] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7013), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182429] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7016), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182515] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7274), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182565] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7020), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182651] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7021), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182737] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7274), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182789] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7035), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7033), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182833] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7248), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7274), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [182931] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 19, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + [182989] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [183049] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7053), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7051), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183093] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_STAR_STAR, + ACTIONS(7037), 1, + anon_sym_PIPE, + ACTIONS(7039), 1, + anon_sym_CARET, + ACTIONS(7041), 1, + anon_sym_AMP, + ACTIONS(7049), 1, + sym_test_operator, + ACTIONS(7072), 1, + anon_sym_AMP_AMP, + ACTIONS(7074), 1, + anon_sym_EQ, + ACTIONS(7076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7078), 1, + anon_sym_EQ_TILDE, + ACTIONS(7703), 1, + anon_sym_QMARK, + ACTIONS(6793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6871), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6873), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7047), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6875), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7733), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [183169] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7062), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183213] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7248), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [183275] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7062), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183319] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6883), 1, + anon_sym_EQ, + ACTIONS(6889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6891), 1, + anon_sym_AMP_AMP, + ACTIONS(6893), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_CARET, + ACTIONS(6897), 1, + anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_STAR_STAR, + ACTIONS(6913), 1, + anon_sym_EQ_TILDE, + ACTIONS(6915), 1, + anon_sym_QMARK, + ACTIONS(7737), 1, + anon_sym_COLON, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6903), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6905), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6907), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6909), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6887), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [183395] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7248), 1, + anon_sym_PIPE, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + anon_sym_CARET, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [183459] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + anon_sym_CARET, + ACTIONS(7741), 1, + anon_sym_PIPE, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [183523] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + anon_sym_CARET, + ACTIONS(7741), 1, + anon_sym_PIPE, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7743), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 15, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_RPAREN, + [183589] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + anon_sym_CARET, + ACTIONS(7741), 1, + anon_sym_PIPE, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7743), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7745), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7274), 13, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + [183657] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7244), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7246), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [183701] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(6898), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [183787] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7617), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + anon_sym_AMP_AMP, + ACTIONS(7621), 1, + anon_sym_PIPE, + ACTIONS(7623), 1, + anon_sym_CARET, + ACTIONS(7625), 1, + anon_sym_AMP, + ACTIONS(7639), 1, + anon_sym_STAR_STAR, + ACTIONS(7679), 1, + anon_sym_EQ, + ACTIONS(7681), 1, + anon_sym_EQ_TILDE, + ACTIONS(7683), 1, + anon_sym_QMARK, + ACTIONS(7747), 1, + anon_sym_RPAREN, + ACTIONS(7615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7627), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7629), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7631), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7637), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7711), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [183863] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183909] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183957] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7440), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184043] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184093] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184145] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [184199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [184243] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7451), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184329] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [184383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [184427] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7494), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184513] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7495), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184599] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7137), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184653] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7503), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184739] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7504), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184825] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7489), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184911] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7137), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184969] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7129), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [185045] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185089] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7139), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185149] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7139), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185211] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7139), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185275] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185341] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185409] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + [185483] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7139), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7137), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [185555] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7029), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [185631] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7114), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7112), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185675] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7035), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185761] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7049), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185847] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185891] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7315), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185977] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7735), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + anon_sym_CARET, + ACTIONS(7741), 1, + anon_sym_PIPE, + ACTIONS(7511), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7725), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7727), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7729), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7743), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7745), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7749), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [186047] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [186091] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7501), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7503), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [186135] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [186179] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186223] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186277] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7096), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186323] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186367] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7096), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7094), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186421] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7106), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7104), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186465] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7528), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186551] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym_word, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6508), 1, + sym_test_operator, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6426), 1, + aux_sym__literal_repeat1, + STATE(7603), 1, + sym_last_case_item, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7232), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6695), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186637] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186681] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7717), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7469), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7471), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [186727] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7465), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7467), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [186771] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4372), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(7757), 1, + sym_variable_name, + STATE(4808), 1, + sym_string, + ACTIONS(1241), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7755), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7753), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [186871] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7763), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7765), 1, + sym__special_character, + ACTIONS(7767), 1, + sym_test_operator, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7759), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7761), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186950] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7751), 1, + aux_sym_concatenation_token1, + ACTIONS(7769), 1, + sym__concat, + STATE(3468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186999] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7765), 1, + sym__special_character, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(7773), 1, + aux_sym_heredoc_redirect_token1, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7759), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7771), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [187078] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7751), 1, + aux_sym_concatenation_token1, + ACTIONS(7775), 1, + sym__concat, + STATE(3468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187127] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + sym_word, + ACTIONS(7781), 1, + anon_sym_LPAREN, + ACTIONS(7783), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7785), 1, + anon_sym_DOLLAR, + ACTIONS(7787), 1, + sym__special_character, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(7797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + anon_sym_RBRACE3, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7803), 1, + anon_sym_BQUOTE, + ACTIONS(7805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7809), 1, + sym_variable_name, + ACTIONS(7811), 1, + sym_test_operator, + ACTIONS(7813), 1, + sym__expansion_word, + ACTIONS(7815), 1, + sym__brace_start, + STATE(6346), 1, + sym_command_substitution, + STATE(6482), 1, + aux_sym__literal_repeat1, + ACTIONS(7779), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7791), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7807), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6427), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6782), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [187214] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [187267] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [187320] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5067), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5069), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187367] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5373), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5375), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187414] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4554), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187461] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7817), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 1, + sym__special_character, + STATE(3473), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 29, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187555] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7781), 1, + anon_sym_LPAREN, + ACTIONS(7783), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7785), 1, + anon_sym_DOLLAR, + ACTIONS(7787), 1, + sym__special_character, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(7797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7803), 1, + anon_sym_BQUOTE, + ACTIONS(7805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7809), 1, + sym_variable_name, + ACTIONS(7815), 1, + sym__brace_start, + ACTIONS(7822), 1, + sym_word, + ACTIONS(7826), 1, + anon_sym_RBRACE3, + ACTIONS(7828), 1, + sym_test_operator, + ACTIONS(7830), 1, + sym__expansion_word, + STATE(6353), 1, + sym_command_substitution, + STATE(6530), 1, + aux_sym__literal_repeat1, + ACTIONS(7779), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7807), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7824), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6379), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6788), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [187642] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2096), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187689] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4566), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 1, + sym__special_character, + STATE(3473), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 29, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187783] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(7757), 1, + sym_variable_name, + STATE(4808), 1, + sym_string, + ACTIONS(1235), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7755), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7753), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187836] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7765), 1, + sym__special_character, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(7837), 1, + aux_sym_heredoc_redirect_token1, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7759), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7835), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [187915] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187962] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7839), 1, + sym_word, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(7848), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7851), 1, + anon_sym_DOLLAR, + ACTIONS(7854), 1, + sym__special_character, + ACTIONS(7857), 1, + anon_sym_DQUOTE, + ACTIONS(7863), 1, + aux_sym_number_token1, + ACTIONS(7866), 1, + aux_sym_number_token2, + ACTIONS(7869), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7872), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7875), 1, + anon_sym_BQUOTE, + ACTIONS(7878), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7884), 1, + sym_test_operator, + ACTIONS(7887), 1, + sym_extglob_pattern, + ACTIONS(7890), 1, + sym__brace_start, + STATE(6409), 1, + aux_sym__literal_repeat1, + ACTIONS(7842), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7860), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7881), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3477), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6591), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6328), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188045] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2216), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7899), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7902), 1, + anon_sym_DOLLAR, + ACTIONS(7905), 1, + sym__special_character, + ACTIONS(7908), 1, + anon_sym_DQUOTE, + ACTIONS(7911), 1, + aux_sym_number_token1, + ACTIONS(7914), 1, + aux_sym_number_token2, + ACTIONS(7917), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7920), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7923), 1, + anon_sym_BQUOTE, + ACTIONS(7926), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7932), 1, + sym_test_operator, + ACTIONS(7935), 1, + sym__brace_start, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(7896), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7929), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2214), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(7893), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188124] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188171] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188218] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2072), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2074), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188265] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [188318] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4469), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188365] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7765), 1, + sym__special_character, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(7940), 1, + aux_sym_heredoc_redirect_token1, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7759), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7938), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188444] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [188497] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7781), 1, + anon_sym_LPAREN, + ACTIONS(7783), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7785), 1, + anon_sym_DOLLAR, + ACTIONS(7787), 1, + sym__special_character, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(7797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7803), 1, + anon_sym_BQUOTE, + ACTIONS(7805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7809), 1, + sym_variable_name, + ACTIONS(7815), 1, + sym__brace_start, + ACTIONS(7942), 1, + sym_word, + ACTIONS(7946), 1, + anon_sym_RBRACE3, + ACTIONS(7948), 1, + sym_test_operator, + ACTIONS(7950), 1, + sym__expansion_word, + STATE(6314), 1, + sym_command_substitution, + STATE(6488), 1, + aux_sym__literal_repeat1, + ACTIONS(7779), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7807), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7944), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6449), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6787), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [188584] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + sym_word, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7962), 1, + sym__special_character, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7986), 1, + sym_test_operator, + ACTIONS(7988), 1, + sym__brace_start, + STATE(4287), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7966), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4759), 2, + sym_concatenation, + sym_array, + STATE(5137), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188666] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188708] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7990), 1, + sym_word, + ACTIONS(7994), 1, + anon_sym_LPAREN, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8000), 1, + sym__special_character, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8020), 1, + sym__comment_word, + ACTIONS(8022), 1, + sym__empty_value, + ACTIONS(8024), 1, + sym_test_operator, + ACTIONS(8026), 1, + sym__brace_start, + STATE(3536), 1, + aux_sym__literal_repeat1, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8004), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3601), 2, + sym_concatenation, + sym_array, + STATE(3466), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188790] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188832] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8038), 1, + anon_sym_RBRACE3, + ACTIONS(8040), 1, + anon_sym_AT, + ACTIONS(8042), 1, + anon_sym_STAR2, + STATE(6394), 1, + aux_sym__expansion_body_repeat1, + STATE(6972), 1, + sym__expansion_operator, + STATE(6973), 1, + sym__expansion_max_length, + STATE(6974), 1, + sym__expansion_regex_removal, + STATE(6978), 1, + sym__expansion_regex_replacement, + STATE(6979), 1, + sym__expansion_regex, + STATE(6980), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [188908] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188950] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8052), 1, + sym_word, + ACTIONS(8054), 1, + sym__special_character, + ACTIONS(8058), 1, + sym_test_operator, + STATE(4287), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8056), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4759), 2, + sym_concatenation, + sym_array, + STATE(4802), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189032] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189074] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8060), 1, + sym_word, + ACTIONS(8064), 1, + anon_sym_LPAREN, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8068), 1, + sym__special_character, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8082), 1, + sym__comment_word, + ACTIONS(8084), 1, + sym__empty_value, + ACTIONS(8086), 1, + sym_test_operator, + STATE(1887), 1, + aux_sym__literal_repeat1, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8072), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2158), 2, + sym_concatenation, + sym_array, + STATE(2324), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189156] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8088), 1, + sym_word, + ACTIONS(8090), 1, + sym__special_character, + ACTIONS(8094), 1, + sym_test_operator, + STATE(4287), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8092), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4759), 2, + sym_concatenation, + sym_array, + STATE(4550), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189238] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8096), 1, + sym_word, + ACTIONS(8100), 1, + anon_sym_LPAREN, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 1, + sym__special_character, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8126), 1, + sym__comment_word, + ACTIONS(8128), 1, + sym__empty_value, + ACTIONS(8130), 1, + sym_test_operator, + ACTIONS(8132), 1, + sym__brace_start, + STATE(1361), 1, + aux_sym__literal_repeat1, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8110), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 2, + sym_concatenation, + sym_array, + STATE(1148), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189320] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189362] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8134), 1, + sym_word, + ACTIONS(8138), 1, + anon_sym_LPAREN, + ACTIONS(8140), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8142), 1, + anon_sym_DOLLAR, + ACTIONS(8144), 1, + sym__special_character, + ACTIONS(8146), 1, + anon_sym_DQUOTE, + ACTIONS(8150), 1, + aux_sym_number_token1, + ACTIONS(8152), 1, + aux_sym_number_token2, + ACTIONS(8154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8158), 1, + anon_sym_BQUOTE, + ACTIONS(8160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8164), 1, + sym__comment_word, + ACTIONS(8166), 1, + sym__empty_value, + ACTIONS(8168), 1, + sym_test_operator, + ACTIONS(8170), 1, + sym__brace_start, + STATE(4431), 1, + aux_sym__literal_repeat1, + ACTIONS(8136), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8148), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4925), 2, + sym_concatenation, + sym_array, + STATE(4410), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189444] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8172), 1, + sym_word, + ACTIONS(8176), 1, + anon_sym_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8206), 1, + sym_test_operator, + ACTIONS(8208), 1, + sym__brace_start, + STATE(1742), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8186), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1959), 2, + sym_concatenation, + sym_array, + STATE(2279), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189526] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189568] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8210), 1, + sym_word, + ACTIONS(8212), 1, + sym__special_character, + ACTIONS(8216), 1, + sym_test_operator, + STATE(4287), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8214), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4759), 2, + sym_concatenation, + sym_array, + STATE(4525), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189650] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, + anon_sym_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8218), 1, + sym_word, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(8224), 1, + sym_test_operator, + STATE(1742), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8222), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1959), 2, + sym_concatenation, + sym_array, + STATE(1355), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189732] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189774] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189816] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189858] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_DOLLAR, + ACTIONS(1837), 1, + aux_sym_number_token1, + ACTIONS(1839), 1, + aux_sym_number_token2, + ACTIONS(1843), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1857), 1, + sym__brace_start, + ACTIONS(8226), 1, + sym_word, + ACTIONS(8230), 1, + anon_sym_LPAREN, + ACTIONS(8232), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8234), 1, + sym__special_character, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8242), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8248), 1, + sym__comment_word, + ACTIONS(8250), 1, + sym__empty_value, + ACTIONS(8252), 1, + sym_test_operator, + STATE(1720), 1, + aux_sym__literal_repeat1, + ACTIONS(8228), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8238), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8246), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1735), 2, + sym_concatenation, + sym_array, + STATE(1166), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189940] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189982] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8064), 1, + anon_sym_LPAREN, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8082), 1, + sym__comment_word, + ACTIONS(8084), 1, + sym__empty_value, + ACTIONS(8254), 1, + sym_word, + ACTIONS(8256), 1, + sym__special_character, + ACTIONS(8260), 1, + sym_test_operator, + STATE(1887), 1, + aux_sym__literal_repeat1, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8258), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2158), 2, + sym_concatenation, + sym_array, + STATE(1470), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190064] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [190148] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190190] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190232] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8262), 1, + sym_word, + ACTIONS(8266), 1, + anon_sym_LPAREN, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8292), 1, + sym__comment_word, + ACTIONS(8294), 1, + sym__empty_value, + ACTIONS(8296), 1, + sym_test_operator, + ACTIONS(8298), 1, + sym__brace_start, + STATE(1618), 1, + aux_sym__literal_repeat1, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8276), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1747), 2, + sym_concatenation, + sym_array, + STATE(1192), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190314] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190356] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190398] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8300), 1, + sym_word, + ACTIONS(8304), 1, + anon_sym_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8308), 1, + anon_sym_DOLLAR, + ACTIONS(8310), 1, + sym__special_character, + ACTIONS(8312), 1, + anon_sym_DQUOTE, + ACTIONS(8316), 1, + aux_sym_number_token1, + ACTIONS(8318), 1, + aux_sym_number_token2, + ACTIONS(8320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8322), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8324), 1, + anon_sym_BQUOTE, + ACTIONS(8326), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8330), 1, + sym__comment_word, + ACTIONS(8332), 1, + sym__empty_value, + ACTIONS(8334), 1, + sym_test_operator, + ACTIONS(8336), 1, + sym__brace_start, + STATE(5408), 1, + aux_sym__literal_repeat1, + ACTIONS(8302), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8314), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8328), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5566), 2, + sym_concatenation, + sym_array, + STATE(5253), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190480] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2044), 1, + aux_sym_number_token1, + ACTIONS(2046), 1, + aux_sym_number_token2, + ACTIONS(2050), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8338), 1, + sym_word, + ACTIONS(8342), 1, + anon_sym_LPAREN, + ACTIONS(8344), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8346), 1, + sym__special_character, + ACTIONS(8348), 1, + anon_sym_DQUOTE, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_BQUOTE, + ACTIONS(8356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8360), 1, + sym__comment_word, + ACTIONS(8362), 1, + sym__empty_value, + ACTIONS(8364), 1, + sym_test_operator, + STATE(1929), 1, + aux_sym__literal_repeat1, + ACTIONS(8340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8350), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8358), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1947), 2, + sym_concatenation, + sym_array, + STATE(1337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190562] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8366), 1, + sym_word, + ACTIONS(8370), 1, + anon_sym_LPAREN, + ACTIONS(8372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8376), 1, + sym__special_character, + ACTIONS(8378), 1, + anon_sym_DQUOTE, + ACTIONS(8382), 1, + aux_sym_number_token1, + ACTIONS(8384), 1, + aux_sym_number_token2, + ACTIONS(8386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8388), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8390), 1, + anon_sym_BQUOTE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8396), 1, + sym__comment_word, + ACTIONS(8398), 1, + sym__empty_value, + ACTIONS(8400), 1, + sym_test_operator, + ACTIONS(8402), 1, + sym__brace_start, + STATE(4383), 1, + aux_sym__literal_repeat1, + ACTIONS(8368), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8380), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8394), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4639), 2, + sym_concatenation, + sym_array, + STATE(4238), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190644] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8064), 1, + anon_sym_LPAREN, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8082), 1, + sym__comment_word, + ACTIONS(8084), 1, + sym__empty_value, + ACTIONS(8404), 1, + sym_word, + ACTIONS(8406), 1, + sym__special_character, + ACTIONS(8410), 1, + sym_test_operator, + STATE(1887), 1, + aux_sym__literal_repeat1, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8408), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2158), 2, + sym_concatenation, + sym_array, + STATE(1558), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190726] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8412), 1, + sym_word, + ACTIONS(8414), 1, + sym__special_character, + ACTIONS(8418), 1, + sym_test_operator, + STATE(4287), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8416), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4759), 2, + sym_concatenation, + sym_array, + STATE(4531), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190808] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [190850] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1761), 1, + anon_sym_DOLLAR, + ACTIONS(1767), 1, + aux_sym_number_token1, + ACTIONS(1769), 1, + aux_sym_number_token2, + ACTIONS(1773), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1787), 1, + sym__brace_start, + ACTIONS(8420), 1, + sym_word, + ACTIONS(8424), 1, + anon_sym_LPAREN, + ACTIONS(8426), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8428), 1, + sym__special_character, + ACTIONS(8430), 1, + anon_sym_DQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8436), 1, + anon_sym_BQUOTE, + ACTIONS(8438), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8442), 1, + sym__comment_word, + ACTIONS(8444), 1, + sym__empty_value, + ACTIONS(8446), 1, + sym_test_operator, + STATE(1480), 1, + aux_sym__literal_repeat1, + ACTIONS(8422), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8432), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1498), 2, + sym_concatenation, + sym_array, + STATE(1156), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190932] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, + anon_sym_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8448), 1, + sym_word, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(8454), 1, + sym_test_operator, + STATE(1742), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8452), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1959), 2, + sym_concatenation, + sym_array, + STATE(1512), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191014] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191056] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4153), 1, + anon_sym_DOLLAR, + ACTIONS(4155), 1, + sym__special_character, + ACTIONS(4157), 1, + anon_sym_DQUOTE, + ACTIONS(4161), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4181), 1, + sym__brace_start, + ACTIONS(8456), 1, + sym_word, + ACTIONS(8458), 1, + anon_sym_LPAREN, + ACTIONS(8462), 1, + sym__comment_word, + ACTIONS(8464), 1, + sym__empty_value, + ACTIONS(8466), 1, + sym_test_operator, + STATE(2714), 1, + aux_sym__literal_repeat1, + ACTIONS(4149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8460), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 2, + sym_concatenation, + sym_array, + STATE(2406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191138] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8468), 1, + sym_word, + ACTIONS(8472), 1, + anon_sym_LPAREN, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + sym__special_character, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8498), 1, + sym__comment_word, + ACTIONS(8500), 1, + sym__empty_value, + ACTIONS(8502), 1, + sym_test_operator, + ACTIONS(8504), 1, + sym__brace_start, + STATE(1900), 1, + aux_sym__literal_repeat1, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8482), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2103), 2, + sym_concatenation, + sym_array, + STATE(1391), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191220] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191262] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191304] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8506), 1, + sym_word, + ACTIONS(8510), 1, + anon_sym_LPAREN, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + sym__special_character, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8536), 1, + sym__comment_word, + ACTIONS(8538), 1, + sym__empty_value, + ACTIONS(8540), 1, + sym_test_operator, + ACTIONS(8542), 1, + sym__brace_start, + STATE(2678), 1, + aux_sym__literal_repeat1, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8520), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2934), 2, + sym_concatenation, + sym_array, + STATE(2440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191386] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8544), 1, + anon_sym_RBRACE3, + ACTIONS(8546), 1, + anon_sym_AT, + STATE(6465), 1, + aux_sym__expansion_body_repeat1, + STATE(7232), 1, + sym__expansion_operator, + STATE(7233), 1, + sym__expansion_max_length, + STATE(7234), 1, + sym__expansion_regex_removal, + STATE(7235), 1, + sym__expansion_regex_replacement, + STATE(7236), 1, + sym__expansion_regex, + STATE(7237), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191459] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8546), 1, + anon_sym_AT, + ACTIONS(8548), 1, + anon_sym_RBRACE3, + STATE(6477), 1, + aux_sym__expansion_body_repeat1, + STATE(6876), 1, + sym__expansion_max_length, + STATE(7218), 1, + sym__expansion_operator, + STATE(7220), 1, + sym__expansion_regex_removal, + STATE(7221), 1, + sym__expansion_regex_replacement, + STATE(7222), 1, + sym__expansion_regex, + STATE(7223), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191532] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8038), 1, + anon_sym_RBRACE3, + ACTIONS(8546), 1, + anon_sym_AT, + STATE(6390), 1, + aux_sym__expansion_body_repeat1, + STATE(6959), 1, + sym__expansion_operator, + STATE(6960), 1, + sym__expansion_max_length, + STATE(6964), 1, + sym__expansion_regex_removal, + STATE(6965), 1, + sym__expansion_regex_replacement, + STATE(6966), 1, + sym__expansion_regex, + STATE(6967), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191605] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8546), 1, + anon_sym_AT, + ACTIONS(8550), 1, + anon_sym_RBRACE3, + STATE(6402), 1, + aux_sym__expansion_body_repeat1, + STATE(6985), 1, + sym__expansion_operator, + STATE(6986), 1, + sym__expansion_max_length, + STATE(6987), 1, + sym__expansion_regex_removal, + STATE(6988), 1, + sym__expansion_regex_replacement, + STATE(6992), 1, + sym__expansion_regex, + STATE(6993), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, + sym_string, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [191729] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(5067), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5069), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(8556), 1, + anon_sym_DQUOTE, + ACTIONS(8560), 1, + sym_variable_name, + STATE(5364), 1, + sym_string, + ACTIONS(8558), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8554), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [191825] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8556), 1, + anon_sym_DQUOTE, + ACTIONS(8560), 1, + sym_variable_name, + STATE(5364), 1, + sym_string, + ACTIONS(8558), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8554), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [191876] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4566), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191921] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + anon_sym_DQUOTE, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, + sym_string, + ACTIONS(7442), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [191972] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5697), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192017] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4469), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192062] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5395), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192107] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8562), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1364), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192152] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8552), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5723), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192197] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8569), 1, + anon_sym_RPAREN, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192273] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4552), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4554), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192313] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8599), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3549), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192389] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8601), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192465] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8603), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192541] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8605), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3550), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192617] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1263), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192657] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8607), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3554), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192733] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8609), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192809] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8611), 1, + sym_word, + ACTIONS(8615), 1, + sym_test_operator, + STATE(6405), 1, + aux_sym__literal_repeat1, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8613), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6725), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6338), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192885] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2094), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2096), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [192925] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8617), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3546), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193001] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8619), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3613), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193077] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8623), 1, + anon_sym_DQUOTE, + ACTIONS(8627), 1, + sym_variable_name, + STATE(5204), 1, + sym_string, + ACTIONS(1235), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8625), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8621), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [193127] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8623), 1, + anon_sym_DQUOTE, + ACTIONS(8627), 1, + sym_variable_name, + STATE(5204), 1, + sym_string, + ACTIONS(1241), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8625), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8621), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [193177] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8629), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(7757), 1, + sym_variable_name, + STATE(4808), 1, + sym_string, + ACTIONS(1241), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7755), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7753), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, + anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [193303] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3564), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193379] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8633), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193455] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8635), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193531] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3568), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193607] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8639), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193683] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8641), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193759] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4370), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4372), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [193799] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8643), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193875] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8651), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8656), 1, + anon_sym_DOLLAR, + ACTIONS(8659), 1, + sym__special_character, + ACTIONS(8662), 1, + anon_sym_DQUOTE, + ACTIONS(8665), 1, + aux_sym_number_token1, + ACTIONS(8668), 1, + aux_sym_number_token2, + ACTIONS(8671), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8674), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8677), 1, + anon_sym_BQUOTE, + ACTIONS(8680), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8686), 1, + sym_test_operator, + ACTIONS(8689), 1, + sym__brace_start, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(8648), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8683), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8645), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193951] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8694), 1, + anon_sym_DQUOTE, + ACTIONS(8698), 1, + sym_variable_name, + STATE(5487), 1, + sym_string, + ACTIONS(8696), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8692), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [194001] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2072), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2074), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [194041] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8700), 1, + sym_word, + ACTIONS(8704), 1, + sym_test_operator, + STATE(6543), 1, + aux_sym__literal_repeat1, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8702), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6775), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6420), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194117] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8706), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3561), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194193] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8708), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194269] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194345] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5766), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5768), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [194385] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [194435] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(8714), 1, + anon_sym_DQUOTE, + ACTIONS(8718), 1, + sym_variable_name, + STATE(5444), 1, + sym_string, + ACTIONS(8716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8712), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [194485] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5819), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5831), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [194525] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8714), 1, + anon_sym_DQUOTE, + ACTIONS(8718), 1, + sym_variable_name, + STATE(5444), 1, + sym_string, + ACTIONS(8716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8712), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [194575] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8720), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(7757), 1, + sym_variable_name, + STATE(4808), 1, + sym_string, + ACTIONS(1235), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7755), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7753), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [194701] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8722), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194777] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8724), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3590), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194853] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8726), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194929] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8728), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195005] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8730), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3577), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195081] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8732), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195157] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8734), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195233] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8736), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195309] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8738), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3587), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195385] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8740), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3588), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195461] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8742), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195537] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8744), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195613] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5770), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5772), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [195653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(8694), 1, + anon_sym_DQUOTE, + ACTIONS(8698), 1, + sym_variable_name, + STATE(5487), 1, + sym_string, + ACTIONS(8696), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8692), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [195703] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8746), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3576), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [195829] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5373), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5375), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [195869] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8748), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195945] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8750), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196021] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2216), 1, + anon_sym_RPAREN, + ACTIONS(8752), 1, + sym_word, + ACTIONS(8758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8761), 1, + anon_sym_DOLLAR, + ACTIONS(8764), 1, + sym__special_character, + ACTIONS(8767), 1, + anon_sym_DQUOTE, + ACTIONS(8773), 1, + aux_sym_number_token1, + ACTIONS(8776), 1, + aux_sym_number_token2, + ACTIONS(8779), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8782), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8785), 1, + anon_sym_BQUOTE, + ACTIONS(8788), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8794), 1, + sym_test_operator, + ACTIONS(8797), 1, + sym__brace_start, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8755), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8770), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196097] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8800), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196173] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8802), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196249] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [196299] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3733), 1, + sym__special_character, + ACTIONS(3735), 1, + anon_sym_DQUOTE, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3745), 1, + anon_sym_BQUOTE, + ACTIONS(3747), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3753), 1, + sym_test_operator, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8804), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym__heredoc_command, + STATE(5351), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3715), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3713), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196375] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_extglob_pattern, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7228), 1, + sym__special_character, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8806), 1, + sym_word, + ACTIONS(8810), 1, + sym_test_operator, + STATE(6415), 1, + aux_sym__literal_repeat1, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8808), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6569), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6302), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196451] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8812), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196527] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8814), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3610), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196603] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4084), 1, + anon_sym_DQUOTE, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [196653] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8565), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8575), 1, + sym__special_character, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 1, + sym_test_operator, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(8816), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym__literal_repeat1, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5045), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196729] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7759), 1, + sym_word, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8822), 1, + sym__special_character, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8826), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3484), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196802] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8838), 1, + anon_sym_RBRACK, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196873] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(8846), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196944] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7759), 1, + sym_word, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8822), 1, + sym__special_character, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8826), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3460), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197017] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4975), 1, + sym_word, + ACTIONS(4979), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8852), 1, + sym__special_character, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8856), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(972), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2572), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(8868), 1, + anon_sym_DQUOTE, + ACTIONS(8872), 1, + sym_variable_name, + STATE(5409), 1, + sym_string, + ACTIONS(8870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8866), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [197139] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8874), 1, + sym_word, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8880), 1, + sym__special_character, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8894), 1, + sym_test_operator, + ACTIONS(8896), 1, + sym_regex, + STATE(1180), 1, + aux_sym__literal_repeat1, + STATE(1346), 1, + sym_concatenation, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8884), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1000), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197214] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 1, + sym__special_character, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(8898), 1, + sym_word, + ACTIONS(8902), 1, + sym_test_operator, + STATE(1474), 1, + aux_sym__literal_repeat1, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8900), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(573), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1158), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197287] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 1, + sym__special_character, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(8898), 1, + sym_word, + ACTIONS(8902), 1, + sym_test_operator, + STATE(1474), 1, + aux_sym__literal_repeat1, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8900), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(575), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1158), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197360] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4629), 1, + sym_word, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4635), 1, + anon_sym_DOLLAR, + ACTIONS(4637), 1, + sym__special_character, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4657), 1, + sym_test_operator, + ACTIONS(4659), 1, + sym__brace_start, + STATE(2914), 1, + aux_sym__literal_repeat1, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4641), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(897), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197433] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4629), 1, + sym_word, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4635), 1, + anon_sym_DOLLAR, + ACTIONS(4637), 1, + sym__special_character, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4657), 1, + sym_test_operator, + ACTIONS(4659), 1, + sym__brace_start, + STATE(2914), 1, + aux_sym__literal_repeat1, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4641), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(903), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197506] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3471), 1, + sym_word, + ACTIONS(3477), 1, + anon_sym_DOLLAR, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3495), 1, + sym_test_operator, + ACTIONS(3497), 1, + sym__brace_start, + ACTIONS(8906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8908), 1, + sym__special_character, + ACTIONS(8910), 1, + anon_sym_DQUOTE, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2024), 1, + aux_sym__literal_repeat1, + ACTIONS(8904), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8912), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(705), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1630), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197579] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5108), 1, + sym_word, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5114), 1, + anon_sym_DOLLAR, + ACTIONS(5116), 1, + sym__special_character, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5136), 1, + sym_test_operator, + ACTIONS(5138), 1, + sym__brace_start, + STATE(3114), 1, + aux_sym__literal_repeat1, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5120), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1056), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2613), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197652] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3471), 1, + sym_word, + ACTIONS(3477), 1, + anon_sym_DOLLAR, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3495), 1, + sym_test_operator, + ACTIONS(3497), 1, + sym__brace_start, + ACTIONS(8906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8908), 1, + sym__special_character, + ACTIONS(8910), 1, + anon_sym_DQUOTE, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2024), 1, + aux_sym__literal_repeat1, + ACTIONS(8904), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8912), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(702), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1630), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197725] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8038), 1, + anon_sym_RBRACE3, + ACTIONS(8040), 1, + anon_sym_AT, + ACTIONS(8042), 1, + anon_sym_STAR2, + ACTIONS(8922), 1, + anon_sym_LBRACK, + STATE(6994), 1, + sym__expansion_operator, + STATE(6995), 1, + sym__expansion_max_length, + STATE(6999), 1, + sym__expansion_regex_removal, + STATE(7000), 1, + sym__expansion_regex_replacement, + STATE(7001), 1, + sym__expansion_regex, + STATE(7002), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [197796] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5108), 1, + sym_word, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5114), 1, + anon_sym_DOLLAR, + ACTIONS(5116), 1, + sym__special_character, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5136), 1, + sym_test_operator, + ACTIONS(5138), 1, + sym__brace_start, + STATE(3114), 1, + aux_sym__literal_repeat1, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5120), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1035), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2613), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197869] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(4484), 1, + sym_word, + ACTIONS(4488), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8928), 1, + sym__special_character, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8932), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(862), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2422), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197942] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4975), 1, + sym_word, + ACTIONS(4979), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8852), 1, + sym__special_character, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8856), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(973), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2572), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198015] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5604), 1, + sym_word, + ACTIONS(5610), 1, + anon_sym_DOLLAR, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5630), 1, + sym_test_operator, + ACTIONS(5632), 1, + sym__brace_start, + ACTIONS(8944), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8946), 1, + sym__special_character, + ACTIONS(8948), 1, + anon_sym_DQUOTE, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3469), 1, + aux_sym__literal_repeat1, + ACTIONS(8942), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1317), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3093), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198088] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(4484), 1, + sym_word, + ACTIONS(4488), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8928), 1, + sym__special_character, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8932), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(863), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2422), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198161] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5604), 1, + sym_word, + ACTIONS(5610), 1, + anon_sym_DOLLAR, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5630), 1, + sym_test_operator, + ACTIONS(5632), 1, + sym__brace_start, + ACTIONS(8944), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8946), 1, + sym__special_character, + ACTIONS(8948), 1, + anon_sym_DQUOTE, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3469), 1, + aux_sym__literal_repeat1, + ACTIONS(8942), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1332), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3093), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198234] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2598), 1, + sym_word, + ACTIONS(2604), 1, + anon_sym_DOLLAR, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2624), 1, + sym_test_operator, + ACTIONS(2626), 1, + sym__brace_start, + ACTIONS(8962), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8964), 1, + sym__special_character, + ACTIONS(8966), 1, + anon_sym_DQUOTE, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1803), 1, + aux_sym__literal_repeat1, + ACTIONS(8960), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8968), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(657), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1381), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198307] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8868), 1, + anon_sym_DQUOTE, + ACTIONS(8872), 1, + sym_variable_name, + STATE(5409), 1, + sym_string, + ACTIONS(8870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8866), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [198356] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(8978), 1, + sym_word, + ACTIONS(8982), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8980), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(646), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1370), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198429] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2598), 1, + sym_word, + ACTIONS(2604), 1, + anon_sym_DOLLAR, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2624), 1, + sym_test_operator, + ACTIONS(2626), 1, + sym__brace_start, + ACTIONS(8962), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8964), 1, + sym__special_character, + ACTIONS(8966), 1, + anon_sym_DQUOTE, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1803), 1, + aux_sym__literal_repeat1, + ACTIONS(8960), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8968), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(616), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1381), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198502] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + sym__special_character, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(8984), 1, + sym_word, + ACTIONS(8988), 1, + sym_test_operator, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8986), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(858), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2369), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198575] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + sym__special_character, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(8984), 1, + sym_word, + ACTIONS(8988), 1, + sym_test_operator, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8986), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(870), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2369), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198648] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3876), 1, + sym_word, + ACTIONS(3882), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3900), 1, + sym_test_operator, + ACTIONS(3902), 1, + sym__brace_start, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8994), 1, + sym__special_character, + ACTIONS(8996), 1, + anon_sym_DQUOTE, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(8990), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8998), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(757), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1846), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198721] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2329), 1, + sym_word, + ACTIONS(2335), 1, + anon_sym_DOLLAR, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2355), 1, + sym_test_operator, + ACTIONS(2357), 1, + sym__brace_start, + ACTIONS(9010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9012), 1, + sym__special_character, + ACTIONS(9014), 1, + anon_sym_DQUOTE, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1658), 1, + aux_sym__literal_repeat1, + ACTIONS(9008), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9016), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(591), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1290), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198794] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9026), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198865] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9028), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198936] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3876), 1, + sym_word, + ACTIONS(3882), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3900), 1, + sym_test_operator, + ACTIONS(3902), 1, + sym__brace_start, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8994), 1, + sym__special_character, + ACTIONS(8996), 1, + anon_sym_DQUOTE, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(8990), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8998), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(742), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1846), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199009] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2329), 1, + sym_word, + ACTIONS(2335), 1, + anon_sym_DOLLAR, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2355), 1, + sym_test_operator, + ACTIONS(2357), 1, + sym__brace_start, + ACTIONS(9010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9012), 1, + sym__special_character, + ACTIONS(9014), 1, + anon_sym_DQUOTE, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1658), 1, + aux_sym__literal_repeat1, + ACTIONS(9008), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9016), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1290), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199082] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3606), 1, + sym_word, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3630), 1, + sym_test_operator, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9030), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9032), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(773), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1839), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199155] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(3663), 1, + sym_word, + ACTIONS(3667), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(754), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1918), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199228] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(3663), 1, + sym_word, + ACTIONS(3667), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(755), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1918), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199301] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3606), 1, + sym_word, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3630), 1, + sym_test_operator, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9030), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9032), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(714), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1839), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199374] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(9038), 1, + sym_word, + ACTIONS(9042), 1, + sym_test_operator, + STATE(1567), 1, + aux_sym__literal_repeat1, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9040), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(601), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1269), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199447] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(9038), 1, + sym_word, + ACTIONS(9042), 1, + sym_test_operator, + STATE(1567), 1, + aux_sym__literal_repeat1, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9040), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(614), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1269), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199520] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3333), 1, + sym_word, + ACTIONS(3339), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3357), 1, + sym_test_operator, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9046), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9048), 1, + sym__special_character, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2147), 1, + aux_sym__literal_repeat1, + ACTIONS(9044), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(707), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199593] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2568), 1, + sym_word, + ACTIONS(2574), 1, + anon_sym_DOLLAR, + ACTIONS(2580), 1, + aux_sym_number_token1, + ACTIONS(2582), 1, + aux_sym_number_token2, + ACTIONS(2586), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2594), 1, + sym_test_operator, + ACTIONS(2596), 1, + sym__brace_start, + ACTIONS(9064), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9066), 1, + sym__special_character, + ACTIONS(9068), 1, + anon_sym_DQUOTE, + ACTIONS(9072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9074), 1, + anon_sym_BQUOTE, + ACTIONS(9076), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1899), 1, + aux_sym__literal_repeat1, + ACTIONS(9062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9070), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9078), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(653), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1394), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199666] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2568), 1, + sym_word, + ACTIONS(2574), 1, + anon_sym_DOLLAR, + ACTIONS(2580), 1, + aux_sym_number_token1, + ACTIONS(2582), 1, + aux_sym_number_token2, + ACTIONS(2586), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2594), 1, + sym_test_operator, + ACTIONS(2596), 1, + sym__brace_start, + ACTIONS(9064), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9066), 1, + sym__special_character, + ACTIONS(9068), 1, + anon_sym_DQUOTE, + ACTIONS(9072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9074), 1, + anon_sym_BQUOTE, + ACTIONS(9076), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1899), 1, + aux_sym__literal_repeat1, + ACTIONS(9062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9070), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9078), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(615), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1394), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199739] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9080), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199810] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9082), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199881] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9084), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199952] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_word, + ACTIONS(4135), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9086), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9088), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(786), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200025] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9090), 1, + sym_word, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9096), 1, + sym__special_character, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9110), 1, + sym_test_operator, + ACTIONS(9112), 1, + sym_regex, + STATE(1014), 1, + aux_sym__literal_repeat1, + STATE(1168), 1, + sym_concatenation, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9100), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(854), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200100] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_word, + ACTIONS(4135), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9086), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9088), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(791), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200173] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9114), 1, + sym_word, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DOLLAR, + ACTIONS(9122), 1, + sym__special_character, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9142), 1, + sym_test_operator, + ACTIONS(9144), 1, + sym__brace_start, + STATE(2457), 1, + aux_sym__literal_repeat1, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9126), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(823), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2271), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200246] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9146), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200317] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(9150), 1, + anon_sym_DQUOTE, + ACTIONS(9154), 1, + sym_variable_name, + STATE(5537), 1, + sym_string, + ACTIONS(9152), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9148), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [200366] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9114), 1, + sym_word, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DOLLAR, + ACTIONS(9122), 1, + sym__special_character, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9142), 1, + sym_test_operator, + ACTIONS(9144), 1, + sym__brace_start, + STATE(2457), 1, + aux_sym__literal_repeat1, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9126), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(821), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2271), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200439] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(9150), 1, + anon_sym_DQUOTE, + ACTIONS(9154), 1, + sym_variable_name, + STATE(5537), 1, + sym_string, + ACTIONS(9152), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9148), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [200488] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4498), 1, + sym_word, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4504), 1, + anon_sym_DOLLAR, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4526), 1, + sym_test_operator, + ACTIONS(4528), 1, + sym__brace_start, + ACTIONS(9156), 1, + sym__special_character, + STATE(2715), 1, + aux_sym__literal_repeat1, + ACTIONS(4500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4510), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(867), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200561] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9158), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200632] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4498), 1, + sym_word, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4504), 1, + anon_sym_DOLLAR, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4526), 1, + sym_test_operator, + ACTIONS(4528), 1, + sym__brace_start, + ACTIONS(9156), 1, + sym__special_character, + STATE(2715), 1, + aux_sym__literal_repeat1, + ACTIONS(4500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4510), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(879), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200705] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3391), 1, + sym_word, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3415), 1, + sym_test_operator, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9160), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9162), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(691), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200778] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9164), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200849] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, + anon_sym_DOLLAR, + ACTIONS(2640), 1, + sym__special_character, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9166), 1, + sym_word, + ACTIONS(9170), 1, + sym_test_operator, + ACTIONS(9172), 1, + sym_regex, + STATE(2394), 1, + aux_sym__literal_repeat1, + STATE(2556), 1, + sym_concatenation, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9168), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200924] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + sym__special_character, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(9174), 1, + sym_word, + ACTIONS(9178), 1, + sym_test_operator, + STATE(1801), 1, + aux_sym__literal_repeat1, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9176), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(654), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1399), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200997] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3391), 1, + sym_word, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3415), 1, + sym_test_operator, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9160), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9162), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201070] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8000), 1, + sym__special_character, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(9180), 1, + sym_word, + ACTIONS(9184), 1, + sym_test_operator, + STATE(3543), 1, + aux_sym__literal_repeat1, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9182), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1831), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3480), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201143] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7759), 1, + sym_word, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8822), 1, + sym__special_character, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8826), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3458), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201216] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8000), 1, + sym__special_character, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(9180), 1, + sym_word, + ACTIONS(9184), 1, + sym_test_operator, + STATE(3543), 1, + aux_sym__literal_repeat1, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9182), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1808), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3480), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201289] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(9186), 1, + sym_word, + ACTIONS(9190), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9188), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(686), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1688), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201362] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(9186), 1, + sym_word, + ACTIONS(9190), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9188), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(673), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1688), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201435] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4943), 1, + sym_word, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4949), 1, + anon_sym_DOLLAR, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4971), 1, + sym_test_operator, + ACTIONS(4973), 1, + sym__brace_start, + ACTIONS(9192), 1, + sym__special_character, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(4945), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(971), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2489), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201508] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_word, + ACTIONS(4135), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9086), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9088), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(788), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201581] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9194), 1, + sym_word, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9200), 1, + sym__special_character, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9214), 1, + sym_test_operator, + ACTIONS(9216), 1, + sym_regex, + STATE(1379), 1, + aux_sym__literal_repeat1, + STATE(1611), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9204), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1244), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9218), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201727] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(3663), 1, + sym_word, + ACTIONS(3667), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1918), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201800] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8844), 1, + sym_test_operator, + ACTIONS(9220), 1, + anon_sym_RBRACK, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8840), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201871] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9216), 1, + sym_regex, + ACTIONS(9222), 1, + sym_word, + ACTIONS(9224), 1, + sym__special_character, + ACTIONS(9228), 1, + sym_test_operator, + STATE(1379), 1, + aux_sym__literal_repeat1, + STATE(1611), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9226), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1124), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201946] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3333), 1, + sym_word, + ACTIONS(3339), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3357), 1, + sym_test_operator, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9046), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9048), 1, + sym__special_character, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2147), 1, + aux_sym__literal_repeat1, + ACTIONS(9044), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(680), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202019] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9230), 1, + sym_word, + ACTIONS(9234), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9232), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(816), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202092] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4943), 1, + sym_word, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4949), 1, + anon_sym_DOLLAR, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4971), 1, + sym_test_operator, + ACTIONS(4973), 1, + sym__brace_start, + ACTIONS(9192), 1, + sym__special_character, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(4945), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(981), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2489), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202165] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + sym__special_character, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(9174), 1, + sym_word, + ACTIONS(9178), 1, + sym_test_operator, + STATE(1801), 1, + aux_sym__literal_repeat1, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9176), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(642), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1399), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202238] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9230), 1, + sym_word, + ACTIONS(9234), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9232), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(806), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202311] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(7759), 1, + sym_word, + ACTIONS(7767), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8822), 1, + sym__special_character, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4975), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8826), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3475), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4460), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202384] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(8978), 1, + sym_word, + ACTIONS(8982), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8980), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(649), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1370), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202457] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(3663), 1, + sym_word, + ACTIONS(3667), 1, + sym_test_operator, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym__special_character, + STATE(2161), 1, + aux_sym__literal_repeat1, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(719), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1918), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202530] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9236), 1, + sym_word, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9242), 1, + sym__special_character, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9256), 1, + sym_test_operator, + ACTIONS(9258), 1, + sym_regex, + STATE(1335), 1, + aux_sym__literal_repeat1, + STATE(1673), 1, + sym_concatenation, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9246), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1039), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202605] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_word, + ACTIONS(4135), 1, + sym_test_operator, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9086), 1, + sym__special_character, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9088), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(789), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202678] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9216), 1, + sym_regex, + ACTIONS(9260), 1, + sym_word, + ACTIONS(9262), 1, + sym__special_character, + ACTIONS(9266), 1, + sym_test_operator, + STATE(1379), 1, + aux_sym__literal_repeat1, + STATE(1611), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9264), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1784), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202753] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9270), 1, + anon_sym_DOLLAR, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202821] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9304), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2790), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [202895] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9312), 1, + anon_sym_DOLLAR, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4659), 1, + sym__brace_start, + ACTIONS(9330), 1, + sym_word, + ACTIONS(9332), 1, + anon_sym_DOLLAR, + ACTIONS(9338), 1, + sym__comment_word, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203031] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(113), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + aux_sym_number_token1, + ACTIONS(123), 1, + aux_sym_number_token2, + ACTIONS(125), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(129), 1, + anon_sym_BQUOTE, + ACTIONS(131), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(141), 1, + sym__brace_start, + ACTIONS(9340), 1, + sym_word, + ACTIONS(9346), 1, + sym__comment_word, + ACTIONS(109), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(133), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9342), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9344), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203099] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(9348), 1, + sym_word, + ACTIONS(9350), 1, + sym__special_character, + ACTIONS(9354), 1, + sym_test_operator, + STATE(5498), 1, + aux_sym__literal_repeat1, + STATE(5555), 1, + sym_concatenation, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9352), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203171] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(9356), 1, + sym_word, + ACTIONS(9362), 1, + sym__comment_word, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9358), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9360), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3510), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203239] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9390), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9392), 1, + sym_variable_name, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3357), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203313] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, + anon_sym_DOLLAR, + ACTIONS(2640), 1, + sym__special_character, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9394), 1, + sym_word, + ACTIONS(9398), 1, + sym_test_operator, + STATE(2352), 1, + aux_sym__literal_repeat1, + STATE(2522), 1, + sym_concatenation, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9396), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2125), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203385] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203453] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9408), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2742), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203527] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9410), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3355), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203601] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3469), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2743), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203675] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9412), 1, + sym_word, + ACTIONS(9414), 1, + anon_sym_DOLLAR, + ACTIONS(9420), 1, + sym__comment_word, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9416), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9418), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4810), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203743] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9412), 1, + sym_word, + ACTIONS(9420), 1, + sym__comment_word, + ACTIONS(9422), 1, + anon_sym_DOLLAR, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9416), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9418), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4810), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203811] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9424), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3349), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203885] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9426), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2744), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203959] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, + anon_sym_DOLLAR, + ACTIONS(2640), 1, + sym__special_character, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9428), 1, + sym_word, + ACTIONS(9432), 1, + sym_test_operator, + STATE(2370), 1, + aux_sym__literal_repeat1, + STATE(2534), 1, + sym_concatenation, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9430), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2154), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204031] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4769), 1, + anon_sym_DOLLAR, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(9434), 1, + sym_word, + ACTIONS(9436), 1, + sym__special_character, + ACTIONS(9440), 1, + sym_test_operator, + STATE(5258), 1, + aux_sym__literal_repeat1, + STATE(5543), 1, + sym_concatenation, + ACTIONS(4765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9438), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204103] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DOLLAR, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9144), 1, + sym__brace_start, + ACTIONS(9442), 1, + sym_word, + ACTIONS(9448), 1, + sym__comment_word, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9444), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9446), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2401), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204171] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(9350), 1, + sym__special_character, + ACTIONS(9450), 1, + sym_word, + ACTIONS(9454), 1, + sym_test_operator, + STATE(5447), 1, + aux_sym__literal_repeat1, + STATE(5549), 1, + sym_concatenation, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9452), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5278), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204243] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(9456), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204311] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4769), 1, + anon_sym_DOLLAR, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(9436), 1, + sym__special_character, + ACTIONS(9458), 1, + sym_word, + ACTIONS(9462), 1, + sym_test_operator, + STATE(5292), 1, + aux_sym__literal_repeat1, + STATE(5526), 1, + sym_concatenation, + ACTIONS(4765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9460), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5140), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204383] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9224), 1, + sym__special_character, + ACTIONS(9464), 1, + sym_word, + ACTIONS(9468), 1, + sym_test_operator, + STATE(1401), 1, + aux_sym__literal_repeat1, + STATE(1573), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9466), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204455] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9470), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3348), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204529] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(9472), 1, + sym_word, + ACTIONS(9474), 1, + anon_sym_DOLLAR, + ACTIONS(9480), 1, + sym__comment_word, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9476), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9478), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204597] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9482), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2745), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204671] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9224), 1, + sym__special_character, + ACTIONS(9484), 1, + sym_word, + ACTIONS(9488), 1, + sym_test_operator, + STATE(1436), 1, + aux_sym__literal_repeat1, + STATE(1543), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9486), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1107), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204743] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9490), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3346), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204817] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(9472), 1, + sym_word, + ACTIONS(9480), 1, + sym__comment_word, + ACTIONS(9492), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9476), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9478), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [204885] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9494), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2746), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204959] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9496), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2741), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205033] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9498), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3362), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205107] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9500), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2890), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205181] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4153), 1, + anon_sym_DOLLAR, + ACTIONS(4157), 1, + anon_sym_DQUOTE, + ACTIONS(4161), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4181), 1, + sym__brace_start, + ACTIONS(9502), 1, + sym_word, + ACTIONS(9508), 1, + sym__comment_word, + ACTIONS(4149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9504), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9506), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2580), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205249] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205317] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + sym__special_character, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(9510), 1, + sym_word, + ACTIONS(9514), 1, + sym_test_operator, + STATE(2703), 1, + aux_sym__literal_repeat1, + STATE(2905), 1, + sym_concatenation, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9512), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2436), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205389] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9518), 1, + anon_sym_DOLLAR, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205457] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + sym__special_character, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(9526), 1, + sym_word, + ACTIONS(9530), 1, + sym_test_operator, + STATE(2689), 1, + aux_sym__literal_repeat1, + STATE(2940), 1, + sym_concatenation, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9528), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2413), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205529] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(9532), 1, + anon_sym_DOLLAR, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205597] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4822), 1, + anon_sym_DOLLAR, + ACTIONS(4826), 1, + anon_sym_DQUOTE, + ACTIONS(4830), 1, + aux_sym_number_token1, + ACTIONS(4832), 1, + aux_sym_number_token2, + ACTIONS(4834), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4838), 1, + anon_sym_BQUOTE, + ACTIONS(4840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4848), 1, + sym__brace_start, + ACTIONS(9534), 1, + sym_word, + ACTIONS(9540), 1, + sym__comment_word, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9536), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9538), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2707), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205665] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5870), 1, + anon_sym_DOLLAR, + ACTIONS(5876), 1, + aux_sym_number_token1, + ACTIONS(5878), 1, + aux_sym_number_token2, + ACTIONS(5882), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5892), 1, + sym__brace_start, + ACTIONS(9542), 1, + sym_word, + ACTIONS(9546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9548), 1, + sym__special_character, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9562), 1, + sym_test_operator, + STATE(5651), 1, + aux_sym__literal_repeat1, + STATE(5744), 1, + sym_concatenation, + ACTIONS(9544), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9552), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5616), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205737] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5870), 1, + anon_sym_DOLLAR, + ACTIONS(5876), 1, + aux_sym_number_token1, + ACTIONS(5878), 1, + aux_sym_number_token2, + ACTIONS(5882), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5892), 1, + sym__brace_start, + ACTIONS(9546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9548), 1, + sym__special_character, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9564), 1, + sym_word, + ACTIONS(9568), 1, + sym_test_operator, + STATE(5643), 1, + aux_sym__literal_repeat1, + STATE(5747), 1, + sym_concatenation, + ACTIONS(9544), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9566), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5605), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205809] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9570), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2740), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205883] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9572), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3363), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205957] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9574), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3344), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206031] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9576), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2747), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206105] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9578), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206173] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9582), 1, + anon_sym_DOLLAR, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206241] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(9590), 1, + anon_sym_DOLLAR, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206309] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9592), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3343), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206383] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9594), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2748), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206457] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9596), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206525] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9598), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3342), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206599] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(9600), 1, + sym_word, + ACTIONS(9602), 1, + anon_sym_DOLLAR, + ACTIONS(9608), 1, + sym__comment_word, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9604), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9606), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206667] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9610), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2749), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206741] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9612), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3341), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206815] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9614), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2750), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206889] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(9600), 1, + sym_word, + ACTIONS(9608), 1, + sym__comment_word, + ACTIONS(9616), 1, + anon_sym_DOLLAR, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9604), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9606), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206957] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8840), 1, + sym__comment_word, + ACTIONS(9618), 1, + anon_sym_DOLLAR, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8844), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207025] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2638), 1, + anon_sym_DOLLAR, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9620), 1, + sym_word, + ACTIONS(9626), 1, + sym__comment_word, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2344), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207093] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9628), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3340), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [207167] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8840), 1, + sym__comment_word, + ACTIONS(9630), 1, + anon_sym_DOLLAR, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8844), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207235] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9632), 1, + sym_word, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9638), 1, + sym__special_character, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9652), 1, + sym_test_operator, + STATE(4347), 1, + aux_sym__literal_repeat1, + STATE(4617), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9642), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4604), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207307] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5407), 1, + anon_sym_DOLLAR, + ACTIONS(5409), 1, + sym__special_character, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, + sym__brace_start, + ACTIONS(9654), 1, + sym_word, + ACTIONS(9658), 1, + sym_test_operator, + STATE(5544), 1, + aux_sym__literal_repeat1, + STATE(5629), 1, + sym_concatenation, + ACTIONS(5403), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9656), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5412), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207379] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9638), 1, + sym__special_character, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9660), 1, + sym_word, + ACTIONS(9664), 1, + sym_test_operator, + STATE(4294), 1, + aux_sym__literal_repeat1, + STATE(4861), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9662), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207451] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9666), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2751), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [207525] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5407), 1, + anon_sym_DOLLAR, + ACTIONS(5409), 1, + sym__special_character, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, + sym__brace_start, + ACTIONS(9668), 1, + sym_word, + ACTIONS(9672), 1, + sym_test_operator, + STATE(5500), 1, + aux_sym__literal_repeat1, + STATE(5671), 1, + sym_concatenation, + ACTIONS(5403), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9670), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207597] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3185), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207665] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9698), 1, + anon_sym_DOLLAR, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207733] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1045), 1, + anon_sym_DOLLAR, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(9706), 1, + sym_word, + ACTIONS(9712), 1, + sym__comment_word, + ACTIONS(1041), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9708), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9710), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2075), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207801] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5263), 1, + anon_sym_DOLLAR, + ACTIONS(5265), 1, + sym__special_character, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(9714), 1, + sym_word, + ACTIONS(9718), 1, + sym_test_operator, + STATE(5462), 1, + aux_sym__literal_repeat1, + STATE(5587), 1, + sym_concatenation, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9716), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5300), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207873] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9722), 1, + anon_sym_DOLLAR, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207941] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + aux_sym_number_token1, + ACTIONS(123), 1, + aux_sym_number_token2, + ACTIONS(125), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(129), 1, + anon_sym_BQUOTE, + ACTIONS(131), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(141), 1, + sym__brace_start, + ACTIONS(9340), 1, + sym_word, + ACTIONS(9346), 1, + sym__comment_word, + ACTIONS(9730), 1, + anon_sym_DOLLAR, + ACTIONS(109), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(133), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9342), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9344), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208009] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5263), 1, + anon_sym_DOLLAR, + ACTIONS(5265), 1, + sym__special_character, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(9732), 1, + sym_word, + ACTIONS(9736), 1, + sym_test_operator, + STATE(5466), 1, + aux_sym__literal_repeat1, + STATE(5612), 1, + sym_concatenation, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9734), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5303), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208081] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(9738), 1, + anon_sym_DOLLAR, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208149] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3882), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3902), 1, + sym__brace_start, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8996), 1, + anon_sym_DQUOTE, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9740), 1, + sym_word, + ACTIONS(9746), 1, + sym__comment_word, + ACTIONS(8990), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9742), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9744), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2004), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208217] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 1, + sym__special_character, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(9748), 1, + sym_word, + ACTIONS(9752), 1, + sym_test_operator, + STATE(1349), 1, + aux_sym__literal_repeat1, + STATE(1639), 1, + sym_concatenation, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9750), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1127), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208289] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9754), 1, + sym_word, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9760), 1, + anon_sym_DOLLAR, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9782), 1, + sym__comment_word, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9762), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9766), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6225), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208357] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 1, + sym__special_character, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(9786), 1, + sym_word, + ACTIONS(9790), 1, + sym_test_operator, + STATE(1380), 1, + aux_sym__literal_repeat1, + STATE(1629), 1, + sym_concatenation, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9788), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1162), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208429] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208497] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9242), 1, + sym__special_character, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9792), 1, + sym_word, + ACTIONS(9796), 1, + sym_test_operator, + STATE(1377), 1, + aux_sym__literal_repeat1, + STATE(1613), 1, + sym_concatenation, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9794), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1076), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208569] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + aux_sym_number_token1, + ACTIONS(3375), 1, + aux_sym_number_token2, + ACTIONS(3379), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(9798), 1, + sym_word, + ACTIONS(9802), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9804), 1, + sym__special_character, + ACTIONS(9806), 1, + anon_sym_DQUOTE, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9818), 1, + sym_test_operator, + STATE(4538), 1, + aux_sym__literal_repeat1, + STATE(4930), 1, + sym_concatenation, + ACTIONS(9800), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9808), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9816), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4292), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208641] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + aux_sym_number_token1, + ACTIONS(1769), 1, + aux_sym_number_token2, + ACTIONS(1773), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1787), 1, + sym__brace_start, + ACTIONS(8426), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8430), 1, + anon_sym_DQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8436), 1, + anon_sym_BQUOTE, + ACTIONS(8438), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9820), 1, + sym_word, + ACTIONS(9822), 1, + anon_sym_DOLLAR, + ACTIONS(9828), 1, + sym__comment_word, + ACTIONS(8422), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9824), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9826), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1207), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208709] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + aux_sym_number_token1, + ACTIONS(3375), 1, + aux_sym_number_token2, + ACTIONS(3379), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(9802), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9804), 1, + sym__special_character, + ACTIONS(9806), 1, + anon_sym_DQUOTE, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9830), 1, + sym_word, + ACTIONS(9834), 1, + sym_test_operator, + STATE(4462), 1, + aux_sym__literal_repeat1, + STATE(4888), 1, + sym_concatenation, + ACTIONS(9800), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9816), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9832), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4270), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208781] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9836), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3339), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [208855] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9838), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2752), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [208929] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + aux_sym_number_token1, + ACTIONS(1769), 1, + aux_sym_number_token2, + ACTIONS(1773), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1787), 1, + sym__brace_start, + ACTIONS(8426), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8430), 1, + anon_sym_DQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8436), 1, + anon_sym_BQUOTE, + ACTIONS(8438), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9820), 1, + sym_word, + ACTIONS(9828), 1, + sym__comment_word, + ACTIONS(9840), 1, + anon_sym_DOLLAR, + ACTIONS(8422), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9824), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9826), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1207), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208997] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9842), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2739), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209071] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9242), 1, + sym__special_character, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9844), 1, + sym_word, + ACTIONS(9848), 1, + sym_test_operator, + STATE(1374), 1, + aux_sym__literal_repeat1, + STATE(1622), 1, + sym_concatenation, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9846), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1069), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209143] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3477), 1, + anon_sym_DOLLAR, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3497), 1, + sym__brace_start, + ACTIONS(8906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8910), 1, + anon_sym_DQUOTE, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9850), 1, + sym_word, + ACTIONS(9856), 1, + sym__comment_word, + ACTIONS(8904), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9852), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9854), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209211] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9858), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3364), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209285] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9862), 1, + anon_sym_DOLLAR, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209353] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(9870), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209421] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9874), 1, + anon_sym_DOLLAR, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209489] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9882), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3338), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209563] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(9884), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209631] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(9886), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209699] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(9888), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209767] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9890), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2753), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209841] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + anon_sym_DOLLAR, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209909] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9096), 1, + sym__special_character, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9892), 1, + sym_word, + ACTIONS(9896), 1, + sym_test_operator, + STATE(1149), 1, + aux_sym__literal_repeat1, + STATE(1281), 1, + sym_concatenation, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9894), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(832), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209981] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9924), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3188), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [210055] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9096), 1, + sym__special_character, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9926), 1, + sym_word, + ACTIONS(9930), 1, + sym_test_operator, + STATE(1146), 1, + aux_sym__literal_repeat1, + STATE(1301), 1, + sym_concatenation, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9928), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(880), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210127] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210195] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(9932), 1, + anon_sym_DOLLAR, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210263] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(9934), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3337), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [210337] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_DOLLAR, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(9936), 1, + sym_word, + ACTIONS(9940), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9942), 1, + sym__special_character, + ACTIONS(9944), 1, + anon_sym_DQUOTE, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9956), 1, + sym_test_operator, + STATE(4382), 1, + aux_sym__literal_repeat1, + STATE(4827), 1, + sym_concatenation, + ACTIONS(9938), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9946), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4242), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210409] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, + sym__brace_start, + ACTIONS(9958), 1, + sym_word, + ACTIONS(9960), 1, + anon_sym_DOLLAR, + ACTIONS(9966), 1, + sym__comment_word, + ACTIONS(5403), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9962), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9964), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210477] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_DOLLAR, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(9940), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9942), 1, + sym__special_character, + ACTIONS(9944), 1, + anon_sym_DQUOTE, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9968), 1, + sym_word, + ACTIONS(9972), 1, + sym_test_operator, + STATE(4290), 1, + aux_sym__literal_repeat1, + STATE(4709), 1, + sym_concatenation, + ACTIONS(9938), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9970), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4260), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210549] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + sym__special_character, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(9974), 1, + sym_word, + ACTIONS(9978), 1, + sym_test_operator, + STATE(1828), 1, + aux_sym__literal_repeat1, + STATE(2227), 1, + sym_concatenation, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9976), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1342), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210621] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9980), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2932), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [210695] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + aux_sym_number_token1, + ACTIONS(2311), 1, + aux_sym_number_token2, + ACTIONS(2315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2327), 1, + sym__brace_start, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9988), 1, + anon_sym_DOLLAR, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(9984), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210763] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, + sym__brace_start, + ACTIONS(9958), 1, + sym_word, + ACTIONS(9966), 1, + sym__comment_word, + ACTIONS(10006), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9962), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9964), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210831] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10008), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3366), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [210905] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + aux_sym_number_token1, + ACTIONS(123), 1, + aux_sym_number_token2, + ACTIONS(125), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(129), 1, + anon_sym_BQUOTE, + ACTIONS(131), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(141), 1, + sym__brace_start, + ACTIONS(9340), 1, + sym_word, + ACTIONS(9346), 1, + sym__comment_word, + ACTIONS(10010), 1, + anon_sym_DOLLAR, + ACTIONS(109), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(133), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9342), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9344), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210973] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + aux_sym_number_token1, + ACTIONS(2311), 1, + aux_sym_number_token2, + ACTIONS(2315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2327), 1, + sym__brace_start, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211041] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10020), 1, + sym__comment_word, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10018), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211109] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10022), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2754), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211183] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10024), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2792), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211257] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10026), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3336), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211331] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(10028), 1, + anon_sym_DOLLAR, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211399] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10030), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3369), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211473] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(10032), 1, + sym_word, + ACTIONS(10036), 1, + sym_test_operator, + STATE(1539), 1, + aux_sym__literal_repeat1, + STATE(1872), 1, + sym_concatenation, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10034), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1263), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211545] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10042), 1, + sym_test_operator, + STATE(1509), 1, + aux_sym__literal_repeat1, + STATE(1883), 1, + sym_concatenation, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10040), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1258), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211617] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_DOLLAR, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9412), 1, + sym_word, + ACTIONS(9420), 1, + sym__comment_word, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9416), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9418), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4810), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211685] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10044), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2793), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211759] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10046), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3370), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [211833] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9144), 1, + sym__brace_start, + ACTIONS(9442), 1, + sym_word, + ACTIONS(9448), 1, + sym__comment_word, + ACTIONS(10048), 1, + anon_sym_DOLLAR, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9444), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9446), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2401), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211901] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9760), 1, + anon_sym_DOLLAR, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(10050), 1, + sym_word, + ACTIONS(10052), 1, + sym__special_character, + ACTIONS(10056), 1, + sym_test_operator, + STATE(6219), 1, + aux_sym__literal_repeat1, + STATE(6469), 1, + sym_concatenation, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10054), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6192), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211973] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_DOLLAR, + ACTIONS(3681), 1, + aux_sym_number_token1, + ACTIONS(3683), 1, + aux_sym_number_token2, + ACTIONS(3687), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3697), 1, + sym__brace_start, + ACTIONS(10058), 1, + sym_word, + ACTIONS(10062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10064), 1, + sym__special_character, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10078), 1, + sym_test_operator, + STATE(4645), 1, + aux_sym__literal_repeat1, + STATE(5086), 1, + sym_concatenation, + ACTIONS(10060), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10068), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4430), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212045] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DOLLAR, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212113] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3111), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2799), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [212187] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10080), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3435), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [212261] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8880), 1, + sym__special_character, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10082), 1, + sym_word, + ACTIONS(10086), 1, + sym_test_operator, + STATE(1202), 1, + aux_sym__literal_repeat1, + STATE(1390), 1, + sym_concatenation, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10084), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(993), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212333] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8880), 1, + sym__special_character, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10088), 1, + sym_word, + ACTIONS(10092), 1, + sym_test_operator, + STATE(1201), 1, + aux_sym__literal_repeat1, + STATE(1387), 1, + sym_concatenation, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10090), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(995), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212405] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10094), 1, + sym_word, + ACTIONS(10096), 1, + anon_sym_DOLLAR, + ACTIONS(10102), 1, + sym__comment_word, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10098), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10100), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1293), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212473] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10104), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2755), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [212547] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10106), 1, + sym_word, + ACTIONS(10108), 1, + sym__special_character, + ACTIONS(10112), 1, + sym_test_operator, + STATE(4421), 1, + aux_sym__literal_repeat1, + STATE(4869), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10110), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4673), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212619] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3397), 1, + anon_sym_DOLLAR, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212687] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10108), 1, + sym__special_character, + ACTIONS(10114), 1, + sym_word, + ACTIONS(10118), 1, + sym_test_operator, + STATE(4500), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10116), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4760), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212759] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10120), 1, + sym_word, + ACTIONS(10122), 1, + anon_sym_DOLLAR, + ACTIONS(10128), 1, + sym__comment_word, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10124), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10126), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(910), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212827] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_DOLLAR, + ACTIONS(3032), 1, + aux_sym_number_token1, + ACTIONS(3034), 1, + aux_sym_number_token2, + ACTIONS(3038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3048), 1, + sym__brace_start, + ACTIONS(10130), 1, + sym_word, + ACTIONS(10134), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10136), 1, + sym__special_character, + ACTIONS(10138), 1, + anon_sym_DQUOTE, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, + anon_sym_BQUOTE, + ACTIONS(10146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10150), 1, + sym_test_operator, + STATE(4492), 1, + aux_sym__literal_repeat1, + STATE(4893), 1, + sym_concatenation, + ACTIONS(10132), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10140), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10148), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4274), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212899] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(10152), 1, + anon_sym_DOLLAR, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212967] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10154), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3195), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [213041] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10120), 1, + sym_word, + ACTIONS(10128), 1, + sym__comment_word, + ACTIONS(10156), 1, + anon_sym_DOLLAR, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10124), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10126), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(910), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213109] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10158), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213177] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10160), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213245] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10162), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213313] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10164), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213381] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10166), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213449] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10168), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2794), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [213523] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10170), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3371), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [213597] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10172), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213665] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5138), 1, + sym__brace_start, + ACTIONS(10174), 1, + sym_word, + ACTIONS(10176), 1, + anon_sym_DOLLAR, + ACTIONS(10182), 1, + sym__comment_word, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10178), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10180), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2842), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213733] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213801] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3902), 1, + sym__brace_start, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8996), 1, + anon_sym_DQUOTE, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9740), 1, + sym_word, + ACTIONS(9746), 1, + sym__comment_word, + ACTIONS(10184), 1, + anon_sym_DOLLAR, + ACTIONS(8990), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9742), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9744), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2004), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213869] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10186), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3334), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [213943] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10190), 1, + anon_sym_DOLLAR, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214011] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3225), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2756), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [214085] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10198), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214153] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_DOLLAR, + ACTIONS(3032), 1, + aux_sym_number_token1, + ACTIONS(3034), 1, + aux_sym_number_token2, + ACTIONS(3038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3048), 1, + sym__brace_start, + ACTIONS(10134), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10136), 1, + sym__special_character, + ACTIONS(10138), 1, + anon_sym_DQUOTE, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, + anon_sym_BQUOTE, + ACTIONS(10146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10200), 1, + sym_word, + ACTIONS(10204), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4885), 1, + sym_concatenation, + ACTIONS(10132), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10148), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10202), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4375), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214225] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6488), 1, + anon_sym_DOLLAR, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10206), 1, + sym_word, + ACTIONS(10212), 1, + sym__comment_word, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10208), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10210), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6494), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214293] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(10214), 1, + anon_sym_DOLLAR, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214361] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10216), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3329), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [214435] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10218), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2757), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [214509] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8514), 1, + anon_sym_DOLLAR, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(10220), 1, + sym_word, + ACTIONS(10226), 1, + sym__comment_word, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10222), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10224), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2514), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214577] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4949), 1, + anon_sym_DOLLAR, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4973), 1, + sym__brace_start, + ACTIONS(10228), 1, + sym_word, + ACTIONS(10234), 1, + sym__comment_word, + ACTIONS(4945), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10230), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10232), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214645] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(10236), 1, + sym_word, + ACTIONS(10242), 1, + sym__comment_word, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10238), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10240), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5461), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214713] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10094), 1, + sym_word, + ACTIONS(10102), 1, + sym__comment_word, + ACTIONS(10244), 1, + anon_sym_DOLLAR, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10098), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10100), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1293), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214781] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2626), 1, + sym__brace_start, + ACTIONS(8962), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8966), 1, + anon_sym_DQUOTE, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10246), 1, + sym_word, + ACTIONS(10248), 1, + anon_sym_DOLLAR, + ACTIONS(10254), 1, + sym__comment_word, + ACTIONS(8960), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10250), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10252), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214849] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4504), 1, + anon_sym_DOLLAR, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4528), 1, + sym__brace_start, + ACTIONS(10256), 1, + sym_word, + ACTIONS(10262), 1, + sym__comment_word, + ACTIONS(4500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10258), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10260), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2450), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214917] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4769), 1, + anon_sym_DOLLAR, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(10264), 1, + sym_word, + ACTIONS(10270), 1, + sym__comment_word, + ACTIONS(4765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10266), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10268), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214985] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5138), 1, + sym__brace_start, + ACTIONS(10174), 1, + sym_word, + ACTIONS(10182), 1, + sym__comment_word, + ACTIONS(10272), 1, + anon_sym_DOLLAR, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10178), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10180), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2842), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215053] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2626), 1, + sym__brace_start, + ACTIONS(8962), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8966), 1, + anon_sym_DQUOTE, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10246), 1, + sym_word, + ACTIONS(10254), 1, + sym__comment_word, + ACTIONS(10274), 1, + anon_sym_DOLLAR, + ACTIONS(8960), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10250), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10252), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215121] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215189] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10276), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3328), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [215263] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10278), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [215337] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10280), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3326), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [215411] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8308), 1, + anon_sym_DOLLAR, + ACTIONS(8312), 1, + anon_sym_DQUOTE, + ACTIONS(8316), 1, + aux_sym_number_token1, + ACTIONS(8318), 1, + aux_sym_number_token2, + ACTIONS(8320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8322), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8324), 1, + anon_sym_BQUOTE, + ACTIONS(8326), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8336), 1, + sym__brace_start, + ACTIONS(10282), 1, + sym_word, + ACTIONS(10288), 1, + sym__comment_word, + ACTIONS(8302), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8328), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10284), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10286), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5428), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215479] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 1, + anon_sym_DOLLAR, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5632), 1, + sym__brace_start, + ACTIONS(8944), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8948), 1, + anon_sym_DQUOTE, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10290), 1, + sym_word, + ACTIONS(10296), 1, + sym__comment_word, + ACTIONS(8942), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10292), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10294), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215547] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10298), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2759), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [215621] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5870), 1, + anon_sym_DOLLAR, + ACTIONS(5876), 1, + aux_sym_number_token1, + ACTIONS(5878), 1, + aux_sym_number_token2, + ACTIONS(5882), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5892), 1, + sym__brace_start, + ACTIONS(9546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10300), 1, + sym_word, + ACTIONS(10306), 1, + sym__comment_word, + ACTIONS(9544), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10302), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10304), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5680), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215689] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(453), 1, + anon_sym_DOLLAR, + ACTIONS(457), 1, + anon_sym_DQUOTE, + ACTIONS(461), 1, + aux_sym_number_token1, + ACTIONS(463), 1, + aux_sym_number_token2, + ACTIONS(465), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(467), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(469), 1, + anon_sym_BQUOTE, + ACTIONS(471), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(481), 1, + sym__brace_start, + ACTIONS(10308), 1, + sym_word, + ACTIONS(10314), 1, + sym__comment_word, + ACTIONS(449), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(473), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10310), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10312), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(866), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215757] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5114), 1, + anon_sym_DOLLAR, + ACTIONS(5118), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_number_token1, + ACTIONS(5124), 1, + aux_sym_number_token2, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5128), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5138), 1, + sym__brace_start, + ACTIONS(10174), 1, + sym_word, + ACTIONS(10182), 1, + sym__comment_word, + ACTIONS(5110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5134), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10178), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10180), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2842), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215825] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10206), 1, + sym_word, + ACTIONS(10212), 1, + sym__comment_word, + ACTIONS(10316), 1, + anon_sym_DOLLAR, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10208), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10210), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6494), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215893] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5405), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5407), 1, + anon_sym_DOLLAR, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5415), 1, + aux_sym_number_token1, + ACTIONS(5417), 1, + aux_sym_number_token2, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5431), 1, + sym__brace_start, + ACTIONS(9958), 1, + sym_word, + ACTIONS(9966), 1, + sym__comment_word, + ACTIONS(5403), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9962), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9964), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215961] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4635), 1, + anon_sym_DOLLAR, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4659), 1, + sym__brace_start, + ACTIONS(9330), 1, + sym_word, + ACTIONS(9338), 1, + sym__comment_word, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216029] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + aux_sym_number_token1, + ACTIONS(3888), 1, + aux_sym_number_token2, + ACTIONS(3892), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3902), 1, + sym__brace_start, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8996), 1, + anon_sym_DQUOTE, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9740), 1, + sym_word, + ACTIONS(9746), 1, + sym__comment_word, + ACTIONS(10318), 1, + anon_sym_DOLLAR, + ACTIONS(8990), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9742), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9744), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2004), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216097] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9144), 1, + sym__brace_start, + ACTIONS(9442), 1, + sym_word, + ACTIONS(9448), 1, + sym__comment_word, + ACTIONS(10320), 1, + anon_sym_DOLLAR, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9444), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9446), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2401), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216165] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10322), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2797), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [216239] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6494), 1, + aux_sym_number_token1, + ACTIONS(6496), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6512), 1, + sym__brace_start, + ACTIONS(7226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7230), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10206), 1, + sym_word, + ACTIONS(10212), 1, + sym__comment_word, + ACTIONS(10324), 1, + anon_sym_DOLLAR, + ACTIONS(7224), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10208), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10210), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6494), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216307] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5263), 1, + anon_sym_DOLLAR, + ACTIONS(5267), 1, + anon_sym_DQUOTE, + ACTIONS(5271), 1, + aux_sym_number_token1, + ACTIONS(5273), 1, + aux_sym_number_token2, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5287), 1, + sym__brace_start, + ACTIONS(9472), 1, + sym_word, + ACTIONS(9480), 1, + sym__comment_word, + ACTIONS(5259), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9476), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9478), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216375] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8104), 1, + anon_sym_DOLLAR, + ACTIONS(8108), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8132), 1, + sym__brace_start, + ACTIONS(9600), 1, + sym_word, + ACTIONS(9608), 1, + sym__comment_word, + ACTIONS(8098), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8124), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9604), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9606), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216443] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10326), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3324), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [216517] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10328), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3372), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [216591] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1761), 1, + anon_sym_DOLLAR, + ACTIONS(1767), 1, + aux_sym_number_token1, + ACTIONS(1769), 1, + aux_sym_number_token2, + ACTIONS(1773), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1787), 1, + sym__brace_start, + ACTIONS(8426), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8430), 1, + anon_sym_DQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8436), 1, + anon_sym_BQUOTE, + ACTIONS(8438), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9820), 1, + sym_word, + ACTIONS(9828), 1, + sym__comment_word, + ACTIONS(8422), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9824), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9826), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1207), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216659] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2303), 1, + anon_sym_DOLLAR, + ACTIONS(2309), 1, + aux_sym_number_token1, + ACTIONS(2311), 1, + aux_sym_number_token2, + ACTIONS(2315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2327), 1, + sym__brace_start, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(9984), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216727] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9094), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9098), 1, + anon_sym_DQUOTE, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10120), 1, + sym_word, + ACTIONS(10128), 1, + sym__comment_word, + ACTIONS(9092), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9108), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10124), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10126), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(910), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216795] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3373), 1, + aux_sym_number_token1, + ACTIONS(3375), 1, + aux_sym_number_token2, + ACTIONS(3379), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(9802), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9806), 1, + anon_sym_DQUOTE, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10330), 1, + sym_word, + ACTIONS(10332), 1, + anon_sym_DOLLAR, + ACTIONS(10338), 1, + sym__comment_word, + ACTIONS(9800), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9816), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216863] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DOLLAR, + ACTIONS(9122), 1, + sym__special_character, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9144), 1, + sym__brace_start, + ACTIONS(10340), 1, + sym_word, + ACTIONS(10344), 1, + sym_test_operator, + STATE(2569), 1, + aux_sym__literal_repeat1, + STATE(2623), 1, + sym_concatenation, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10342), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2278), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216935] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2604), 1, + anon_sym_DOLLAR, + ACTIONS(2610), 1, + aux_sym_number_token1, + ACTIONS(2612), 1, + aux_sym_number_token2, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2626), 1, + sym__brace_start, + ACTIONS(8962), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8966), 1, + anon_sym_DQUOTE, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10246), 1, + sym_word, + ACTIONS(10254), 1, + sym__comment_word, + ACTIONS(8960), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10250), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10252), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217003] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + aux_sym_number_token1, + ACTIONS(3375), 1, + aux_sym_number_token2, + ACTIONS(3379), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(9802), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9806), 1, + anon_sym_DQUOTE, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10330), 1, + sym_word, + ACTIONS(10338), 1, + sym__comment_word, + ACTIONS(9800), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9816), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217071] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3373), 1, + aux_sym_number_token1, + ACTIONS(3375), 1, + aux_sym_number_token2, + ACTIONS(3379), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + sym__brace_start, + ACTIONS(9802), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9806), 1, + anon_sym_DQUOTE, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10330), 1, + sym_word, + ACTIONS(10338), 1, + sym__comment_word, + ACTIONS(10346), 1, + anon_sym_DOLLAR, + ACTIONS(9800), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9816), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217139] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DOLLAR, + ACTIONS(9122), 1, + sym__special_character, + ACTIONS(9124), 1, + anon_sym_DQUOTE, + ACTIONS(9128), 1, + aux_sym_number_token1, + ACTIONS(9130), 1, + aux_sym_number_token2, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9134), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9144), 1, + sym__brace_start, + ACTIONS(10348), 1, + sym_word, + ACTIONS(10352), 1, + sym_test_operator, + STATE(2532), 1, + aux_sym__literal_repeat1, + STATE(2635), 1, + sym_concatenation, + ACTIONS(9116), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9140), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10350), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2314), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217211] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10354), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217279] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10356), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217347] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_DOLLAR, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2357), 1, + sym__brace_start, + ACTIONS(9010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9014), 1, + anon_sym_DQUOTE, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10358), 1, + sym_word, + ACTIONS(10364), 1, + sym__comment_word, + ACTIONS(9008), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10360), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10362), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1462), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217415] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3497), 1, + sym__brace_start, + ACTIONS(8906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8910), 1, + anon_sym_DQUOTE, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9850), 1, + sym_word, + ACTIONS(9856), 1, + sym__comment_word, + ACTIONS(10366), 1, + anon_sym_DOLLAR, + ACTIONS(8904), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9852), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9854), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217483] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_DOLLAR, + ACTIONS(3681), 1, + aux_sym_number_token1, + ACTIONS(3683), 1, + aux_sym_number_token2, + ACTIONS(3687), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3697), 1, + sym__brace_start, + ACTIONS(10062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10064), 1, + sym__special_character, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10368), 1, + sym_word, + ACTIONS(10372), 1, + sym_test_operator, + STATE(4704), 1, + aux_sym__literal_repeat1, + STATE(5106), 1, + sym_concatenation, + ACTIONS(10060), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10370), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4579), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217555] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10374), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217623] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10376), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217691] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217759] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10380), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217827] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_DOLLAR, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(9940), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9944), 1, + anon_sym_DQUOTE, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10382), 1, + sym_word, + ACTIONS(10388), 1, + sym__comment_word, + ACTIONS(9938), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10384), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10386), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4404), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217895] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(10390), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3481), 1, + aux_sym_number_token1, + ACTIONS(3483), 1, + aux_sym_number_token2, + ACTIONS(3487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3497), 1, + sym__brace_start, + ACTIONS(8906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8910), 1, + anon_sym_DQUOTE, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9850), 1, + sym_word, + ACTIONS(9856), 1, + sym__comment_word, + ACTIONS(10392), 1, + anon_sym_DOLLAR, + ACTIONS(8904), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9852), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9854), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218031] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10394), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2760), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [218105] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10396), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3321), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [218179] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(10398), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218247] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10400), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218315] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10402), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2844), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [218389] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10404), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3374), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [218463] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(193), 1, + anon_sym_DOLLAR, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + aux_sym_number_token1, + ACTIONS(203), 1, + aux_sym_number_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(209), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(221), 1, + sym__brace_start, + ACTIONS(10406), 1, + sym_word, + ACTIONS(10412), 1, + sym__comment_word, + ACTIONS(189), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10408), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10410), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(513), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218531] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10414), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218599] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(10416), 1, + anon_sym_DOLLAR, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218667] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(457), 1, + anon_sym_DQUOTE, + ACTIONS(461), 1, + aux_sym_number_token1, + ACTIONS(463), 1, + aux_sym_number_token2, + ACTIONS(465), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(467), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(469), 1, + anon_sym_BQUOTE, + ACTIONS(471), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(481), 1, + sym__brace_start, + ACTIONS(10308), 1, + sym_word, + ACTIONS(10314), 1, + sym__comment_word, + ACTIONS(10418), 1, + anon_sym_DOLLAR, + ACTIONS(449), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(473), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10310), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10312), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(866), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218735] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(10420), 1, + anon_sym_DOLLAR, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218803] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2357), 1, + sym__brace_start, + ACTIONS(9010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9014), 1, + anon_sym_DQUOTE, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10358), 1, + sym_word, + ACTIONS(10364), 1, + sym__comment_word, + ACTIONS(10422), 1, + anon_sym_DOLLAR, + ACTIONS(9008), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10360), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10362), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1462), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218871] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(10424), 1, + anon_sym_DOLLAR, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218939] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(10426), 1, + anon_sym_DOLLAR, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219007] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(10428), 1, + sym_word, + ACTIONS(10434), 1, + sym__comment_word, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10430), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10432), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219075] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2357), 1, + sym__brace_start, + ACTIONS(9010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9014), 1, + anon_sym_DQUOTE, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10358), 1, + sym_word, + ACTIONS(10364), 1, + sym__comment_word, + ACTIONS(10436), 1, + anon_sym_DOLLAR, + ACTIONS(9008), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10360), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10362), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1462), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219143] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(10438), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219211] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10440), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2761), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [219285] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10442), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3320), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [219359] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10444), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2762), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [219433] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(10446), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219501] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(10448), 1, + sym_word, + ACTIONS(10450), 1, + anon_sym_DOLLAR, + ACTIONS(10456), 1, + sym__comment_word, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10452), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10454), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1083), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219569] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10458), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219637] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10460), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219705] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(457), 1, + anon_sym_DQUOTE, + ACTIONS(461), 1, + aux_sym_number_token1, + ACTIONS(463), 1, + aux_sym_number_token2, + ACTIONS(465), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(467), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(469), 1, + anon_sym_BQUOTE, + ACTIONS(471), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(481), 1, + sym__brace_start, + ACTIONS(10308), 1, + sym_word, + ACTIONS(10314), 1, + sym__comment_word, + ACTIONS(10462), 1, + anon_sym_DOLLAR, + ACTIONS(449), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(473), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10310), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10312), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(866), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219773] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(10464), 1, + sym_word, + ACTIONS(10470), 1, + sym__comment_word, + ACTIONS(705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10466), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10468), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(999), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219841] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8378), 1, + anon_sym_DQUOTE, + ACTIONS(8382), 1, + aux_sym_number_token1, + ACTIONS(8384), 1, + aux_sym_number_token2, + ACTIONS(8386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8388), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8390), 1, + anon_sym_BQUOTE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8402), 1, + sym__brace_start, + ACTIONS(10472), 1, + sym_word, + ACTIONS(10478), 1, + sym__comment_word, + ACTIONS(8368), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8394), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10474), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10476), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4285), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219909] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8270), 1, + anon_sym_DOLLAR, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(10480), 1, + sym_word, + ACTIONS(10486), 1, + sym__comment_word, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10482), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10484), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1465), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [219977] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_DOLLAR, + ACTIONS(1837), 1, + aux_sym_number_token1, + ACTIONS(1839), 1, + aux_sym_number_token2, + ACTIONS(1843), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1857), 1, + sym__brace_start, + ACTIONS(8232), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8242), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10488), 1, + sym_word, + ACTIONS(10494), 1, + sym__comment_word, + ACTIONS(8228), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8246), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10490), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10492), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220045] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10496), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3317), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220119] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10498), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2763), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220193] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, + anon_sym_DOLLAR, + ACTIONS(2792), 1, + aux_sym_number_token1, + ACTIONS(2794), 1, + aux_sym_number_token2, + ACTIONS(2798), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2810), 1, + sym__brace_start, + ACTIONS(10500), 1, + sym_word, + ACTIONS(10504), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10508), 1, + anon_sym_DQUOTE, + ACTIONS(10512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10514), 1, + anon_sym_BQUOTE, + ACTIONS(10516), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10520), 1, + sym__comment_word, + ACTIONS(10502), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10506), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10518), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10510), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220261] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10522), 1, + sym_word, + ACTIONS(10528), 1, + sym__comment_word, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10524), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10526), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1120), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220329] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9046), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10530), 1, + sym_word, + ACTIONS(10536), 1, + sym__comment_word, + ACTIONS(9044), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10532), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10534), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1827), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220397] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(10220), 1, + sym_word, + ACTIONS(10226), 1, + sym__comment_word, + ACTIONS(10538), 1, + anon_sym_DOLLAR, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10222), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10224), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2514), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220465] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_DOLLAR, + ACTIONS(3681), 1, + aux_sym_number_token1, + ACTIONS(3683), 1, + aux_sym_number_token2, + ACTIONS(3687), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3697), 1, + sym__brace_start, + ACTIONS(10062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10540), 1, + sym_word, + ACTIONS(10546), 1, + sym__comment_word, + ACTIONS(10060), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10542), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10544), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4831), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220533] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2574), 1, + anon_sym_DOLLAR, + ACTIONS(2580), 1, + aux_sym_number_token1, + ACTIONS(2582), 1, + aux_sym_number_token2, + ACTIONS(2586), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2596), 1, + sym__brace_start, + ACTIONS(9064), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9068), 1, + anon_sym_DQUOTE, + ACTIONS(9072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9074), 1, + anon_sym_BQUOTE, + ACTIONS(9076), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10548), 1, + sym_word, + ACTIONS(10554), 1, + sym__comment_word, + ACTIONS(9062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9078), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10550), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10552), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1669), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220601] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_DOLLAR, + ACTIONS(3032), 1, + aux_sym_number_token1, + ACTIONS(3034), 1, + aux_sym_number_token2, + ACTIONS(3038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3048), 1, + sym__brace_start, + ACTIONS(10134), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10138), 1, + anon_sym_DQUOTE, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, + anon_sym_BQUOTE, + ACTIONS(10146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10556), 1, + sym_word, + ACTIONS(10562), 1, + sym__comment_word, + ACTIONS(10132), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10148), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10558), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10560), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4493), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220669] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8140), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8142), 1, + anon_sym_DOLLAR, + ACTIONS(8146), 1, + anon_sym_DQUOTE, + ACTIONS(8150), 1, + aux_sym_number_token1, + ACTIONS(8152), 1, + aux_sym_number_token2, + ACTIONS(8154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8158), 1, + anon_sym_BQUOTE, + ACTIONS(8160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8170), 1, + sym__brace_start, + ACTIONS(10564), 1, + sym_word, + ACTIONS(10570), 1, + sym__comment_word, + ACTIONS(8136), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10566), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10568), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220737] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(10428), 1, + sym_word, + ACTIONS(10434), 1, + sym__comment_word, + ACTIONS(10572), 1, + anon_sym_DOLLAR, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10430), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10432), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220805] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(9940), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9944), 1, + anon_sym_DQUOTE, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10382), 1, + sym_word, + ACTIONS(10388), 1, + sym__comment_word, + ACTIONS(10574), 1, + anon_sym_DOLLAR, + ACTIONS(9938), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10384), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10386), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4404), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220873] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4157), 1, + anon_sym_DQUOTE, + ACTIONS(4161), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4181), 1, + sym__brace_start, + ACTIONS(9502), 1, + sym_word, + ACTIONS(9508), 1, + sym__comment_word, + ACTIONS(10576), 1, + anon_sym_DOLLAR, + ACTIONS(4149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9504), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9506), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2580), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [220941] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1081), 1, + anon_sym_DQUOTE, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(10428), 1, + sym_word, + ACTIONS(10434), 1, + sym__comment_word, + ACTIONS(10578), 1, + anon_sym_DOLLAR, + ACTIONS(1073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10430), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10432), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221009] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4973), 1, + sym__brace_start, + ACTIONS(10228), 1, + sym_word, + ACTIONS(10234), 1, + sym__comment_word, + ACTIONS(10580), 1, + anon_sym_DOLLAR, + ACTIONS(4945), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10230), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10232), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221077] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2869), 1, + aux_sym_number_token1, + ACTIONS(2871), 1, + aux_sym_number_token2, + ACTIONS(2875), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2885), 1, + sym__brace_start, + ACTIONS(9940), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9944), 1, + anon_sym_DQUOTE, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10382), 1, + sym_word, + ACTIONS(10388), 1, + sym__comment_word, + ACTIONS(10582), 1, + anon_sym_DOLLAR, + ACTIONS(9938), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10384), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10386), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4404), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221145] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10584), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3262), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221219] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4157), 1, + anon_sym_DQUOTE, + ACTIONS(4161), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4167), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4181), 1, + sym__brace_start, + ACTIONS(9502), 1, + sym_word, + ACTIONS(9508), 1, + sym__comment_word, + ACTIONS(10586), 1, + anon_sym_DOLLAR, + ACTIONS(4149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9504), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9506), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2580), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221287] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4953), 1, + anon_sym_DQUOTE, + ACTIONS(4957), 1, + aux_sym_number_token1, + ACTIONS(4959), 1, + aux_sym_number_token2, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4973), 1, + sym__brace_start, + ACTIONS(10228), 1, + sym_word, + ACTIONS(10234), 1, + sym__comment_word, + ACTIONS(10588), 1, + anon_sym_DOLLAR, + ACTIONS(4945), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4969), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10230), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10232), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221355] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8000), 1, + sym__special_character, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(10590), 1, + sym_word, + ACTIONS(10594), 1, + sym_test_operator, + STATE(3539), 1, + aux_sym__literal_repeat1, + STATE(3547), 1, + sym_concatenation, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10592), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3467), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221427] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10596), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221495] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7998), 1, + anon_sym_DOLLAR, + ACTIONS(8000), 1, + sym__special_character, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(10598), 1, + sym_word, + ACTIONS(10602), 1, + sym_test_operator, + STATE(3542), 1, + aux_sym__literal_repeat1, + STATE(3569), 1, + sym_concatenation, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10600), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221567] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10604), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2880), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221641] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10606), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3426), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221715] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10608), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221783] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + aux_sym_number_token1, + ACTIONS(203), 1, + aux_sym_number_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(209), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(221), 1, + sym__brace_start, + ACTIONS(10406), 1, + sym_word, + ACTIONS(10412), 1, + sym__comment_word, + ACTIONS(10610), 1, + anon_sym_DOLLAR, + ACTIONS(189), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10408), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10410), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(513), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221851] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10612), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2898), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221925] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(9706), 1, + sym_word, + ACTIONS(9712), 1, + sym__comment_word, + ACTIONS(10614), 1, + anon_sym_DOLLAR, + ACTIONS(1041), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9708), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9710), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2075), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221993] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(10616), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222061] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10618), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3316), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222135] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10620), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2764), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222209] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(10622), 1, + anon_sym_DOLLAR, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222277] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3403), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3417), 1, + sym__brace_start, + ACTIONS(8926), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + anon_sym_DQUOTE, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9696), 1, + sym_word, + ACTIONS(9704), 1, + sym__comment_word, + ACTIONS(10624), 1, + anon_sym_DOLLAR, + ACTIONS(8924), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8940), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9700), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9702), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222345] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10626), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3315), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222419] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10628), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2765), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222493] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(10630), 1, + anon_sym_DOLLAR, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222561] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_number_token1, + ACTIONS(3618), 1, + aux_sym_number_token2, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3632), 1, + sym__brace_start, + ACTIONS(8850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8854), 1, + anon_sym_DQUOTE, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_word, + ACTIONS(9524), 1, + sym__comment_word, + ACTIONS(10632), 1, + anon_sym_DOLLAR, + ACTIONS(8848), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9522), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2210), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222629] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10634), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3408), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222703] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10636), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3166), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222777] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10638), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2766), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222851] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(10464), 1, + sym_word, + ACTIONS(10470), 1, + sym__comment_word, + ACTIONS(10640), 1, + anon_sym_DOLLAR, + ACTIONS(705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10466), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10468), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(999), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [222919] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10642), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3309), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222993] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10644), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2767), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223067] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10646), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3401), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223141] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(10464), 1, + sym_word, + ACTIONS(10470), 1, + sym__comment_word, + ACTIONS(10648), 1, + anon_sym_DOLLAR, + ACTIONS(705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10466), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10468), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(999), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223209] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9412), 1, + sym_word, + ACTIONS(9420), 1, + sym__comment_word, + ACTIONS(10650), 1, + anon_sym_DOLLAR, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9416), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9418), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4810), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223277] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(9706), 1, + sym_word, + ACTIONS(9712), 1, + sym__comment_word, + ACTIONS(10652), 1, + anon_sym_DOLLAR, + ACTIONS(1041), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9708), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9710), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2075), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223345] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + aux_sym_number_token1, + ACTIONS(203), 1, + aux_sym_number_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(209), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(221), 1, + sym__brace_start, + ACTIONS(10406), 1, + sym_word, + ACTIONS(10412), 1, + sym__comment_word, + ACTIONS(10654), 1, + anon_sym_DOLLAR, + ACTIONS(189), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10408), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10410), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(513), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223413] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_number_token1, + ACTIONS(3739), 1, + aux_sym_number_token2, + ACTIONS(3743), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3755), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9412), 1, + sym_word, + ACTIONS(9420), 1, + sym__comment_word, + ACTIONS(10656), 1, + anon_sym_DOLLAR, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9416), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9418), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4810), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223481] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10658), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223549] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10660), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3308), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223623] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10662), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2768), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223697] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10664), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223765] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10666), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3304), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223839] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10668), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223907] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9306), 1, + sym_word, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9328), 1, + sym__comment_word, + ACTIONS(10670), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9314), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9318), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223975] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10672), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2769), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224049] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10674), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2938), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224123] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(10676), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1189), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224191] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10678), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224259] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10680), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224327] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10682), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3303), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224401] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10684), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2770), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224475] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(10686), 1, + anon_sym_DOLLAR, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224543] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10688), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3302), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224617] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + aux_sym_number_token1, + ACTIONS(2271), 1, + aux_sym_number_token2, + ACTIONS(2275), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2289), 1, + sym__brace_start, + ACTIONS(8066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8070), 1, + anon_sym_DQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9580), 1, + sym_word, + ACTIONS(9588), 1, + sym__comment_word, + ACTIONS(10690), 1, + anon_sym_DOLLAR, + ACTIONS(8062), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9584), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9586), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224685] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(10692), 1, + anon_sym_DOLLAR, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224753] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(10694), 1, + anon_sym_DOLLAR, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224821] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10696), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2771), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224895] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8378), 1, + anon_sym_DQUOTE, + ACTIONS(8382), 1, + aux_sym_number_token1, + ACTIONS(8384), 1, + aux_sym_number_token2, + ACTIONS(8386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8388), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8390), 1, + anon_sym_BQUOTE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8402), 1, + sym__brace_start, + ACTIONS(10472), 1, + sym_word, + ACTIONS(10478), 1, + sym__comment_word, + ACTIONS(10698), 1, + anon_sym_DOLLAR, + ACTIONS(8368), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8394), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10474), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10476), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4285), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8840), 1, + sym__comment_word, + ACTIONS(10700), 1, + anon_sym_DOLLAR, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8844), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225031] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8840), 1, + sym__comment_word, + ACTIONS(10702), 1, + anon_sym_DOLLAR, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8844), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225099] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(363), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(367), 1, + anon_sym_DOLLAR, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + aux_sym_number_token1, + ACTIONS(377), 1, + aux_sym_number_token2, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(381), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(391), 1, + sym__brace_start, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(8836), 1, + sym_word, + ACTIONS(8840), 1, + sym__comment_word, + ACTIONS(352), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(387), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8844), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8842), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2730), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225167] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8378), 1, + anon_sym_DQUOTE, + ACTIONS(8382), 1, + aux_sym_number_token1, + ACTIONS(8384), 1, + aux_sym_number_token2, + ACTIONS(8386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8388), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8390), 1, + anon_sym_BQUOTE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8402), 1, + sym__brace_start, + ACTIONS(10472), 1, + sym_word, + ACTIONS(10478), 1, + sym__comment_word, + ACTIONS(10704), 1, + anon_sym_DOLLAR, + ACTIONS(8368), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8394), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10474), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10476), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4285), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225235] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9760), 1, + anon_sym_DOLLAR, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(10052), 1, + sym__special_character, + ACTIONS(10706), 1, + sym_word, + ACTIONS(10710), 1, + sym_test_operator, + STATE(6213), 1, + aux_sym__literal_repeat1, + STATE(6413), 1, + sym_concatenation, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10708), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225307] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(10712), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225375] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(10714), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225443] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10716), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3301), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225517] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10718), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225585] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(10720), 1, + sym_word, + ACTIONS(10722), 1, + anon_sym_DOLLAR, + ACTIONS(10728), 1, + sym__comment_word, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225653] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + sym__special_character, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(10730), 1, + sym_word, + ACTIONS(10734), 1, + sym_test_operator, + STATE(1898), 1, + aux_sym__literal_repeat1, + STATE(2107), 1, + sym_concatenation, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10732), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1395), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225725] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10736), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2772), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225799] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + ACTIONS(8522), 1, + aux_sym_number_token1, + ACTIONS(8524), 1, + aux_sym_number_token2, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8528), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8542), 1, + sym__brace_start, + ACTIONS(10220), 1, + sym_word, + ACTIONS(10226), 1, + sym__comment_word, + ACTIONS(10738), 1, + anon_sym_DOLLAR, + ACTIONS(8508), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8534), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10222), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10224), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2514), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225867] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(10448), 1, + sym_word, + ACTIONS(10456), 1, + sym__comment_word, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10452), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10454), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1083), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225935] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226003] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10740), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226071] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(10742), 1, + sym_word, + ACTIONS(10746), 1, + sym_test_operator, + STATE(1738), 1, + aux_sym__literal_repeat1, + STATE(1952), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10744), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1596), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226143] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(10748), 1, + sym_word, + ACTIONS(10752), 1, + sym_test_operator, + STATE(1741), 1, + aux_sym__literal_repeat1, + STATE(1958), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10750), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1529), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226215] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10754), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3242), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226289] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10756), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3246), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226363] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, + aux_sym_number_token1, + ACTIONS(1595), 1, + aux_sym_number_token2, + ACTIONS(1599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + sym__brace_start, + ACTIONS(9240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10094), 1, + sym_word, + ACTIONS(10102), 1, + sym__comment_word, + ACTIONS(9238), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10098), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10100), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1293), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226431] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10758), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3247), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226505] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10760), 1, + sym_word, + ACTIONS(10762), 1, + sym__special_character, + ACTIONS(10766), 1, + sym_test_operator, + STATE(4500), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10764), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4687), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226577] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10768), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3299), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226651] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10770), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226719] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10762), 1, + sym__special_character, + ACTIONS(10772), 1, + sym_word, + ACTIONS(10776), 1, + sym_test_operator, + STATE(4421), 1, + aux_sym__literal_repeat1, + STATE(4869), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10774), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4699), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226791] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10778), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3248), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226865] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10780), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3249), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226939] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(10480), 1, + sym_word, + ACTIONS(10486), 1, + sym__comment_word, + ACTIONS(10782), 1, + anon_sym_DOLLAR, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10482), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10484), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1465), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227007] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10784), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3258), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227081] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10786), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3259), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227155] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10788), 1, + sym_word, + ACTIONS(10790), 1, + sym__special_character, + ACTIONS(10794), 1, + sym_test_operator, + STATE(4294), 1, + aux_sym__literal_repeat1, + STATE(4861), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10792), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227227] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8268), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + aux_sym_number_token1, + ACTIONS(8280), 1, + aux_sym_number_token2, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8298), 1, + sym__brace_start, + ACTIONS(10480), 1, + sym_word, + ACTIONS(10486), 1, + sym__comment_word, + ACTIONS(10796), 1, + anon_sym_DOLLAR, + ACTIONS(8264), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8290), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10482), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10484), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1465), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227295] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10798), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2773), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227369] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10800), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3296), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227443] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10802), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2774), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227517] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10790), 1, + sym__special_character, + ACTIONS(10804), 1, + sym_word, + ACTIONS(10808), 1, + sym_test_operator, + STATE(4347), 1, + aux_sym__literal_repeat1, + STATE(4617), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10806), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4452), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227589] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10810), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3261), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227663] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9200), 1, + sym__special_character, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10812), 1, + sym_word, + ACTIONS(10816), 1, + sym_test_operator, + STATE(1436), 1, + aux_sym__literal_repeat1, + STATE(1543), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10814), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1273), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227735] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9200), 1, + sym__special_character, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10818), 1, + sym_word, + ACTIONS(10822), 1, + sym_test_operator, + STATE(1401), 1, + aux_sym__literal_repeat1, + STATE(1573), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10820), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1276), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227807] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10824), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3293), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [227881] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4643), 1, + aux_sym_number_token1, + ACTIONS(4645), 1, + aux_sym_number_token2, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4649), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4659), 1, + sym__brace_start, + ACTIONS(9330), 1, + sym_word, + ACTIONS(9338), 1, + sym__comment_word, + ACTIONS(10826), 1, + anon_sym_DOLLAR, + ACTIONS(4631), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9334), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9336), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227949] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10828), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3263), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228023] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10830), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3264), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228097] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10832), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3265), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228171] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(10236), 1, + sym_word, + ACTIONS(10242), 1, + sym__comment_word, + ACTIONS(10834), 1, + anon_sym_DOLLAR, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10238), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10240), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5461), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228239] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10836), 1, + aux_sym__simple_variable_name_token1, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3266), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228313] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10838), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2775), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228387] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10840), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2858), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228461] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10842), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3373), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228535] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10844), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2937), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228609] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2044), 1, + aux_sym_number_token1, + ACTIONS(2046), 1, + aux_sym_number_token2, + ACTIONS(2050), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8344), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8348), 1, + anon_sym_DQUOTE, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_BQUOTE, + ACTIONS(8356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10846), 1, + sym_word, + ACTIONS(10852), 1, + sym__comment_word, + ACTIONS(8340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8358), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10850), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1493), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228677] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3811), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3365), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228751] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10854), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3350), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228825] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10856), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2936), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228899] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10858), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3446), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [228973] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10860), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2923), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229047] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + aux_sym_number_token1, + ACTIONS(1839), 1, + aux_sym_number_token2, + ACTIONS(1843), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1857), 1, + sym__brace_start, + ACTIONS(8232), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8242), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10488), 1, + sym_word, + ACTIONS(10494), 1, + sym__comment_word, + ACTIONS(10862), 1, + anon_sym_DOLLAR, + ACTIONS(8228), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8246), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10490), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10492), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229115] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10864), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2922), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229189] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10866), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2921), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229263] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10868), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3289), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229337] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + aux_sym_number_token1, + ACTIONS(1839), 1, + aux_sym_number_token2, + ACTIONS(1843), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1857), 1, + sym__brace_start, + ACTIONS(8232), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8242), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10488), 1, + sym_word, + ACTIONS(10494), 1, + sym__comment_word, + ACTIONS(10870), 1, + anon_sym_DOLLAR, + ACTIONS(8228), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8246), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10490), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10492), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1440), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229405] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2777), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229479] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5321), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + aux_sym_number_token1, + ACTIONS(5327), 1, + aux_sym_number_token2, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(10236), 1, + sym_word, + ACTIONS(10242), 1, + sym__comment_word, + ACTIONS(10872), 1, + anon_sym_DOLLAR, + ACTIONS(5313), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5337), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10238), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10240), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5461), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229547] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9760), 1, + anon_sym_DOLLAR, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(10052), 1, + sym__special_character, + ACTIONS(10874), 1, + sym_word, + ACTIONS(10878), 1, + sym_test_operator, + STATE(6223), 1, + aux_sym__literal_repeat1, + STATE(6374), 1, + sym_concatenation, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10876), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6202), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229619] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10880), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3284), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229693] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(10882), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229761] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10020), 1, + sym__comment_word, + ACTIONS(10884), 1, + anon_sym_DOLLAR, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10018), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229829] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10886), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2778), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229903] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10888), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3447), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [229977] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10890), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2917), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230051] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10892), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3449), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230125] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(10720), 1, + sym_word, + ACTIONS(10728), 1, + sym__comment_word, + ACTIONS(10894), 1, + anon_sym_DOLLAR, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230193] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9754), 1, + sym_word, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9782), 1, + sym__comment_word, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(10896), 1, + anon_sym_DOLLAR, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9762), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9766), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6225), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230261] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 1, + aux_sym_number_token1, + ACTIONS(5878), 1, + aux_sym_number_token2, + ACTIONS(5882), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5892), 1, + sym__brace_start, + ACTIONS(9546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10300), 1, + sym_word, + ACTIONS(10306), 1, + sym__comment_word, + ACTIONS(10898), 1, + anon_sym_DOLLAR, + ACTIONS(9544), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10302), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10304), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5680), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230329] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9620), 1, + sym_word, + ACTIONS(9626), 1, + sym__comment_word, + ACTIONS(10900), 1, + anon_sym_DOLLAR, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2344), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230397] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10902), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2916), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230471] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10904), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2915), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230545] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(9356), 1, + sym_word, + ACTIONS(9362), 1, + sym__comment_word, + ACTIONS(10906), 1, + anon_sym_DOLLAR, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9358), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9360), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3510), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230613] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10908), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2899), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230687] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + aux_sym_number_token1, + ACTIONS(3193), 1, + aux_sym_number_token2, + ACTIONS(3197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3209), 1, + sym__brace_start, + ACTIONS(9674), 1, + sym_word, + ACTIONS(9678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9682), 1, + anon_sym_DQUOTE, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9694), 1, + sym__comment_word, + ACTIONS(10910), 1, + anon_sym_DOLLAR, + ACTIONS(9676), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9684), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1733), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230755] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 1, + aux_sym_number_token1, + ACTIONS(5878), 1, + aux_sym_number_token2, + ACTIONS(5882), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5892), 1, + sym__brace_start, + ACTIONS(9546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10300), 1, + sym_word, + ACTIONS(10306), 1, + sym__comment_word, + ACTIONS(10912), 1, + anon_sym_DOLLAR, + ACTIONS(9544), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10302), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10304), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5680), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230823] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3586), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2840), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [230897] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5632), 1, + sym__brace_start, + ACTIONS(8944), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8948), 1, + anon_sym_DQUOTE, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10290), 1, + sym_word, + ACTIONS(10296), 1, + sym__comment_word, + ACTIONS(10914), 1, + anon_sym_DOLLAR, + ACTIONS(8942), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10292), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10294), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230965] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10916), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2894), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231039] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8577), 1, + anon_sym_DQUOTE, + ACTIONS(8581), 1, + aux_sym_number_token1, + ACTIONS(8583), 1, + aux_sym_number_token2, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, + sym__brace_start, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10020), 1, + sym__comment_word, + ACTIONS(10918), 1, + anon_sym_DOLLAR, + ACTIONS(8567), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8593), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10018), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231107] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2792), 1, + aux_sym_number_token1, + ACTIONS(2794), 1, + aux_sym_number_token2, + ACTIONS(2798), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2810), 1, + sym__brace_start, + ACTIONS(10500), 1, + sym_word, + ACTIONS(10504), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10508), 1, + anon_sym_DQUOTE, + ACTIONS(10512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10514), 1, + anon_sym_BQUOTE, + ACTIONS(10516), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10520), 1, + sym__comment_word, + ACTIONS(10920), 1, + anon_sym_DOLLAR, + ACTIONS(10502), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10506), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10518), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10510), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231175] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10922), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3273), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231249] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(4048), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2848), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231323] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10924), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2779), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231397] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2792), 1, + aux_sym_number_token1, + ACTIONS(2794), 1, + aux_sym_number_token2, + ACTIONS(2798), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2810), 1, + sym__brace_start, + ACTIONS(10500), 1, + sym_word, + ACTIONS(10504), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10508), 1, + anon_sym_DQUOTE, + ACTIONS(10512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10514), 1, + anon_sym_BQUOTE, + ACTIONS(10516), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10520), 1, + sym__comment_word, + ACTIONS(10926), 1, + anon_sym_DOLLAR, + ACTIONS(10502), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10506), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10518), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10510), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231465] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(8006), 1, + aux_sym_number_token1, + ACTIONS(8008), 1, + aux_sym_number_token2, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8012), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8026), 1, + sym__brace_start, + ACTIONS(9356), 1, + sym_word, + ACTIONS(9362), 1, + sym__comment_word, + ACTIONS(10928), 1, + anon_sym_DOLLAR, + ACTIONS(7992), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8018), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9358), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9360), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3510), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231533] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + aux_sym_number_token1, + ACTIONS(3443), 1, + aux_sym_number_token2, + ACTIONS(3447), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + sym__brace_start, + ACTIONS(10930), 1, + sym_word, + ACTIONS(10934), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10936), 1, + anon_sym_DOLLAR, + ACTIONS(10940), 1, + anon_sym_DQUOTE, + ACTIONS(10944), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10946), 1, + anon_sym_BQUOTE, + ACTIONS(10948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10952), 1, + sym__comment_word, + ACTIONS(10932), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10938), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10942), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1859), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231601] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10954), 1, + sym_word, + ACTIONS(10958), 1, + sym_test_operator, + STATE(1738), 1, + aux_sym__literal_repeat1, + STATE(1952), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10956), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2325), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231673] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10960), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3017), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231747] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(10962), 1, + sym_word, + ACTIONS(10966), 1, + sym_test_operator, + STATE(1741), 1, + aux_sym__literal_repeat1, + STATE(1958), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10964), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1344), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231819] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(4046), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2843), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231893] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10968), 1, + sym_word, + ACTIONS(10972), 1, + sym_test_operator, + STATE(1741), 1, + aux_sym__literal_repeat1, + STATE(1958), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10970), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2283), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231965] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(10974), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3268), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232039] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4528), 1, + sym__brace_start, + ACTIONS(10256), 1, + sym_word, + ACTIONS(10262), 1, + sym__comment_word, + ACTIONS(10976), 1, + anon_sym_DOLLAR, + ACTIONS(4500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10258), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10260), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2450), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232107] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10978), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2781), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232181] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(10980), 1, + sym_word, + ACTIONS(10984), 1, + sym_test_operator, + STATE(1738), 1, + aux_sym__literal_repeat1, + STATE(1952), 1, + sym_concatenation, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10982), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1330), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232253] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(10986), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232321] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4508), 1, + anon_sym_DQUOTE, + ACTIONS(4512), 1, + aux_sym_number_token1, + ACTIONS(4514), 1, + aux_sym_number_token2, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4518), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4528), 1, + sym__brace_start, + ACTIONS(10256), 1, + sym_word, + ACTIONS(10262), 1, + sym__comment_word, + ACTIONS(10988), 1, + anon_sym_DOLLAR, + ACTIONS(4500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10258), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10260), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2450), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232389] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10990), 1, + sym_word, + ACTIONS(10992), 1, + sym__special_character, + ACTIONS(10996), 1, + sym_test_operator, + STATE(4500), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10994), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4992), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232461] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10992), 1, + sym__special_character, + ACTIONS(10998), 1, + sym_word, + ACTIONS(11002), 1, + sym_test_operator, + STATE(4421), 1, + aux_sym__literal_repeat1, + STATE(4869), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11000), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4896), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232533] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3759), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3278), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232607] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3600), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3281), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232681] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9760), 1, + anon_sym_DOLLAR, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(10052), 1, + sym__special_character, + ACTIONS(11004), 1, + sym_word, + ACTIONS(11008), 1, + sym_test_operator, + STATE(6220), 1, + aux_sym__literal_repeat1, + STATE(6376), 1, + sym_concatenation, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11006), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6198), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232753] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3604), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3283), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232827] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4042), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9898), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_BANG, + ACTIONS(9906), 1, + anon_sym_TILDE, + ACTIONS(9908), 1, + anon_sym_DOLLAR, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9912), 1, + aux_sym_number_token1, + ACTIONS(9914), 1, + aux_sym_number_token2, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3359), 1, + sym__arithmetic_postfix_expression, + STATE(3361), 1, + sym__arithmetic_unary_expression, + STATE(3367), 1, + sym__arithmetic_ternary_expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + ACTIONS(9902), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9904), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3368), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [232901] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11010), 1, + sym_word, + ACTIONS(11012), 1, + sym__special_character, + ACTIONS(11016), 1, + sym_test_operator, + STATE(4294), 1, + aux_sym__literal_repeat1, + STATE(4861), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11014), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4806), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232973] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11012), 1, + sym__special_character, + ACTIONS(11018), 1, + sym_word, + ACTIONS(11022), 1, + sym_test_operator, + STATE(4347), 1, + aux_sym__literal_repeat1, + STATE(4617), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11020), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4750), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233045] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_DOLLAR, + ACTIONS(3441), 1, + aux_sym_number_token1, + ACTIONS(3443), 1, + aux_sym_number_token2, + ACTIONS(3447), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + sym__brace_start, + ACTIONS(10930), 1, + sym_word, + ACTIONS(10934), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10940), 1, + anon_sym_DQUOTE, + ACTIONS(10944), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10946), 1, + anon_sym_BQUOTE, + ACTIONS(10948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10952), 1, + sym__comment_word, + ACTIONS(10932), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10938), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10942), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1859), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233113] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4826), 1, + anon_sym_DQUOTE, + ACTIONS(4830), 1, + aux_sym_number_token1, + ACTIONS(4832), 1, + aux_sym_number_token2, + ACTIONS(4834), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4838), 1, + anon_sym_BQUOTE, + ACTIONS(4840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4848), 1, + sym__brace_start, + ACTIONS(9534), 1, + sym_word, + ACTIONS(9540), 1, + sym__comment_word, + ACTIONS(11024), 1, + anon_sym_DOLLAR, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9536), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9538), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2707), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233181] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10522), 1, + sym_word, + ACTIONS(10528), 1, + sym__comment_word, + ACTIONS(11026), 1, + anon_sym_DOLLAR, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10524), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10526), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1120), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233249] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11028), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3434), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233323] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11030), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3433), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233397] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11032), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3432), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233471] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(8878), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10522), 1, + sym_word, + ACTIONS(10528), 1, + sym__comment_word, + ACTIONS(11034), 1, + anon_sym_DOLLAR, + ACTIONS(8876), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8892), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10524), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10526), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1120), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233539] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11036), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3431), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233613] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11038), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3260), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233687] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2782), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233761] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11040), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2845), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233835] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9262), 1, + sym__special_character, + ACTIONS(11042), 1, + sym_word, + ACTIONS(11046), 1, + sym_test_operator, + STATE(1436), 1, + aux_sym__literal_repeat1, + STATE(1543), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11044), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1752), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233907] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 1, + aux_sym_number_token1, + ACTIONS(5618), 1, + aux_sym_number_token2, + ACTIONS(5622), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5632), 1, + sym__brace_start, + ACTIONS(8944), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8948), 1, + anon_sym_DQUOTE, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10290), 1, + sym_word, + ACTIONS(10296), 1, + sym__comment_word, + ACTIONS(11048), 1, + anon_sym_DOLLAR, + ACTIONS(8942), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10292), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10294), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(3415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233975] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2642), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + aux_sym_number_token1, + ACTIONS(2648), 1, + aux_sym_number_token2, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2652), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2664), 1, + sym__brace_start, + ACTIONS(9620), 1, + sym_word, + ACTIONS(9626), 1, + sym__comment_word, + ACTIONS(11050), 1, + anon_sym_DOLLAR, + ACTIONS(2630), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2658), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2344), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [234043] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + aux_sym_number_token1, + ACTIONS(3443), 1, + aux_sym_number_token2, + ACTIONS(3447), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + sym__brace_start, + ACTIONS(10930), 1, + sym_word, + ACTIONS(10934), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10940), 1, + anon_sym_DQUOTE, + ACTIONS(10944), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10946), 1, + anon_sym_BQUOTE, + ACTIONS(10948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10952), 1, + sym__comment_word, + ACTIONS(11052), 1, + anon_sym_DOLLAR, + ACTIONS(10932), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10938), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10942), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1859), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [234111] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11054), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3430), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234185] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11056), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3429), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234259] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11058), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3257), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234333] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11060), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3428), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234407] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11062), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3425), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234481] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8460), 1, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11064), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3421), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234555] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11066), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3413), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234629] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11068), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3412), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234703] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11070), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3410), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234777] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11072), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3409), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234851] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + aux_sym_number_token1, + ACTIONS(1559), 1, + aux_sym_number_token2, + ACTIONS(1563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1575), 1, + sym__brace_start, + ACTIONS(9198), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9262), 1, + sym__special_character, + ACTIONS(11074), 1, + sym_word, + ACTIONS(11078), 1, + sym_test_operator, + STATE(1401), 1, + aux_sym__literal_repeat1, + STATE(1573), 1, + sym_concatenation, + ACTIONS(9196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9212), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11076), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1745), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [234923] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(320), 1, + anon_sym_DQUOTE, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(344), 1, + sym__brace_start, + ACTIONS(9400), 1, + sym_word, + ACTIONS(9406), 1, + sym__comment_word, + ACTIONS(11080), 1, + anon_sym_DOLLAR, + ACTIONS(312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9402), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9404), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1037), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [234991] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2836), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235065] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11082), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3325), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235139] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + aux_sym_number_token1, + ACTIONS(1155), 1, + aux_sym_number_token2, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym__brace_start, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(10188), 1, + sym_word, + ACTIONS(10196), 1, + sym__comment_word, + ACTIONS(11084), 1, + anon_sym_DOLLAR, + ACTIONS(1129), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10192), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10194), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235207] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(10264), 1, + sym_word, + ACTIONS(10270), 1, + sym__comment_word, + ACTIONS(11086), 1, + anon_sym_DOLLAR, + ACTIONS(4765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10266), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10268), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235275] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9046), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10530), 1, + sym_word, + ACTIONS(10536), 1, + sym__comment_word, + ACTIONS(11088), 1, + anon_sym_DOLLAR, + ACTIONS(9044), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10532), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10534), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1827), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235343] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4773), 1, + anon_sym_DQUOTE, + ACTIONS(4777), 1, + aux_sym_number_token1, + ACTIONS(4779), 1, + aux_sym_number_token2, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4783), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4793), 1, + sym__brace_start, + ACTIONS(10264), 1, + sym_word, + ACTIONS(10270), 1, + sym__comment_word, + ACTIONS(11090), 1, + anon_sym_DOLLAR, + ACTIONS(4765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4789), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10266), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10268), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235411] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9754), 1, + sym_word, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9764), 1, + anon_sym_DQUOTE, + ACTIONS(9768), 1, + aux_sym_number_token1, + ACTIONS(9770), 1, + aux_sym_number_token2, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9782), 1, + sym__comment_word, + ACTIONS(9784), 1, + sym__brace_start, + ACTIONS(11092), 1, + anon_sym_DOLLAR, + ACTIONS(9756), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9762), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9780), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9766), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6225), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235479] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + aux_sym_number_token1, + ACTIONS(2046), 1, + aux_sym_number_token2, + ACTIONS(2050), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8344), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8348), 1, + anon_sym_DQUOTE, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_BQUOTE, + ACTIONS(8356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10846), 1, + sym_word, + ACTIONS(10852), 1, + sym__comment_word, + ACTIONS(11094), 1, + anon_sym_DOLLAR, + ACTIONS(8340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8358), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10850), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1493), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235547] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9046), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10530), 1, + sym_word, + ACTIONS(10536), 1, + sym__comment_word, + ACTIONS(11096), 1, + anon_sym_DOLLAR, + ACTIONS(9044), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10532), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10534), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1827), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235615] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + aux_sym_number_token1, + ACTIONS(2046), 1, + aux_sym_number_token2, + ACTIONS(2050), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8344), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8348), 1, + anon_sym_DQUOTE, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_BQUOTE, + ACTIONS(8356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10846), 1, + sym_word, + ACTIONS(10852), 1, + sym__comment_word, + ACTIONS(11098), 1, + anon_sym_DOLLAR, + ACTIONS(8340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8358), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10850), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1493), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235683] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11100), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2783), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235757] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11102), 1, + sym_word, + ACTIONS(11104), 1, + sym__special_character, + ACTIONS(11108), 1, + sym_test_operator, + STATE(4500), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11106), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4622), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235829] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11110), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3252), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235903] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11104), 1, + sym__special_character, + ACTIONS(11112), 1, + sym_word, + ACTIONS(11116), 1, + sym_test_operator, + STATE(4421), 1, + aux_sym__literal_repeat1, + STATE(4869), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11114), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4684), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [235975] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8474), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_number_token1, + ACTIONS(8486), 1, + aux_sym_number_token2, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8490), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8504), 1, + sym__brace_start, + ACTIONS(10720), 1, + sym_word, + ACTIONS(10728), 1, + sym__comment_word, + ACTIONS(8470), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10724), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236043] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11118), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2310), 9, + STATE(2784), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216116,49 +272937,251 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [181364] = 20, + [236117] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11120), 1, + sym_word, + ACTIONS(11122), 1, + sym__special_character, + ACTIONS(11126), 1, + sym_test_operator, + STATE(4294), 1, + aux_sym__literal_repeat1, + STATE(4861), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11124), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4463), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236189] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9872), 1, + sym_word, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(11128), 1, + anon_sym_DOLLAR, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9876), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4337), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236257] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(11130), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236325] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(9860), 1, + sym_word, + ACTIONS(9868), 1, + sym__comment_word, + ACTIONS(11132), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9864), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9866), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236393] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(6953), 1, - sym__special_character, - ACTIONS(6955), 1, - anon_sym_DQUOTE, - ACTIONS(6959), 1, + ACTIONS(3793), 1, aux_sym_number_token1, - ACTIONS(6961), 1, + ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, anon_sym_BQUOTE, - ACTIONS(6969), 1, + ACTIONS(9648), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(8462), 1, + ACTIONS(11122), 1, + sym__special_character, + ACTIONS(11134), 1, sym_word, - ACTIONS(8466), 1, + ACTIONS(11138), 1, sym_test_operator, - STATE(2975), 1, + STATE(4347), 1, aux_sym__literal_repeat1, - STATE(3036), 1, + STATE(4617), 1, sym_concatenation, - ACTIONS(6945), 2, + ACTIONS(9634), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, + ACTIONS(9650), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8464), 2, + ACTIONS(11136), 2, sym_raw_string, sym_ansi_c_string, - STATE(2924), 9, + STATE(4513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216168,50 +273191,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181436] = 21, + [236465] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8468), 1, + ACTIONS(11140), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2305), 9, + STATE(2820), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216221,49 +273244,352 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [181510] = 20, + [236539] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11142), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3274), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [236613] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4826), 1, + anon_sym_DQUOTE, + ACTIONS(4830), 1, + aux_sym_number_token1, + ACTIONS(4832), 1, + aux_sym_number_token2, + ACTIONS(4834), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4838), 1, + anon_sym_BQUOTE, + ACTIONS(4840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4848), 1, + sym__brace_start, + ACTIONS(9534), 1, + sym_word, + ACTIONS(9540), 1, + sym__comment_word, + ACTIONS(11144), 1, + anon_sym_DOLLAR, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9536), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9538), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2707), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236681] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(9720), 1, + sym_word, + ACTIONS(9728), 1, + sym__comment_word, + ACTIONS(11146), 1, anon_sym_DOLLAR, - ACTIONS(6823), 1, + ACTIONS(8174), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9724), 2, + sym_test_operator, sym__special_character, - ACTIONS(6825), 1, + ACTIONS(9726), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1590), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236749] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(6829), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(6831), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(6833), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(8470), 1, + ACTIONS(10448), 1, sym_word, - ACTIONS(8474), 1, + ACTIONS(10456), 1, + sym__comment_word, + ACTIONS(11148), 1, + anon_sym_DOLLAR, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10452), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10454), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1083), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236817] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8140), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8146), 1, + anon_sym_DQUOTE, + ACTIONS(8150), 1, + aux_sym_number_token1, + ACTIONS(8152), 1, + aux_sym_number_token2, + ACTIONS(8154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8158), 1, + anon_sym_BQUOTE, + ACTIONS(8160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8170), 1, + sym__brace_start, + ACTIONS(10564), 1, + sym_word, + ACTIONS(10570), 1, + sym__comment_word, + ACTIONS(11150), 1, + anon_sym_DOLLAR, + ACTIONS(8136), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10566), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10568), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236885] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8140), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8146), 1, + anon_sym_DQUOTE, + ACTIONS(8150), 1, + aux_sym_number_token1, + ACTIONS(8152), 1, + aux_sym_number_token2, + ACTIONS(8154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8158), 1, + anon_sym_BQUOTE, + ACTIONS(8160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8170), 1, + sym__brace_start, + ACTIONS(10564), 1, + sym_word, + ACTIONS(10570), 1, + sym__comment_word, + ACTIONS(11152), 1, + anon_sym_DOLLAR, + ACTIONS(8136), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10566), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10568), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [236953] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, + sym__brace_start, + ACTIONS(9310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9316), 1, + anon_sym_DQUOTE, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11154), 1, + sym_word, + ACTIONS(11156), 1, + sym__special_character, + ACTIONS(11160), 1, sym_test_operator, - STATE(1499), 1, + STATE(4500), 1, aux_sym__literal_repeat1, - STATE(1655), 1, + STATE(5029), 1, sym_concatenation, - ACTIONS(6815), 2, + ACTIONS(9308), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, + ACTIONS(9326), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8472), 2, + ACTIONS(11158), 2, sym_raw_string, sym_ansi_c_string, - STATE(1137), 9, + STATE(5306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216273,50 +273599,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181582] = 21, + [237025] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9364), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9366), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9372), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9376), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9382), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8476), 1, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11162), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(3391), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(3396), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(3398), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(3400), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9368), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9370), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2301), 9, + STATE(3244), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216326,50 +273652,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [181656] = 21, + [237099] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8478), 1, + ACTIONS(11164), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2288), 9, + STATE(2785), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216379,47 +273705,152 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [181730] = 18, - ACTIONS(3), 1, + [237173] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1537), 1, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(1543), 1, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(1545), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(1549), 1, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1563), 1, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11166), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3379), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [237247] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4086), 1, + aux_sym_number_token1, + ACTIONS(4088), 1, + aux_sym_number_token2, + ACTIONS(4092), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4102), 1, sym__brace_start, - ACTIONS(6747), 1, + ACTIONS(9310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6751), 1, + ACTIONS(9316), 1, anon_sym_DQUOTE, - ACTIONS(6755), 1, + ACTIONS(9320), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6757), 1, + ACTIONS(9322), 1, anon_sym_BQUOTE, - ACTIONS(6759), 1, + ACTIONS(9324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(11156), 1, + sym__special_character, + ACTIONS(11168), 1, + sym_word, + ACTIONS(11172), 1, + sym_test_operator, + STATE(4421), 1, + aux_sym__literal_repeat1, + STATE(4869), 1, + sym_concatenation, + ACTIONS(9308), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9326), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11170), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5286), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [237319] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + aux_sym_number_token1, + ACTIONS(3683), 1, + aux_sym_number_token2, + ACTIONS(3687), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3697), 1, + sym__brace_start, + ACTIONS(10062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10540), 1, sym_word, - ACTIONS(8228), 1, + ACTIONS(10546), 1, sym__comment_word, - ACTIONS(6743), 2, + ACTIONS(11174), 1, + anon_sym_DOLLAR, + ACTIONS(10060), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6761), 2, + ACTIONS(10076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8224), 2, + ACTIONS(10542), 2, sym_test_operator, sym__special_character, - ACTIONS(8226), 3, + ACTIONS(10544), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1042), 9, + STATE(4831), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216429,49 +273860,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181798] = 20, + [237387] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, + ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, + ACTIONS(3793), 1, aux_sym_number_token1, - ACTIONS(449), 1, + ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, + ACTIONS(3809), 1, + sym__brace_start, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, anon_sym_BQUOTE, - ACTIONS(457), 1, + ACTIONS(9648), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, + ACTIONS(11176), 1, + sym_word, + ACTIONS(11178), 1, + sym__special_character, + ACTIONS(11182), 1, + sym_test_operator, + STATE(4294), 1, + aux_sym__literal_repeat1, + STATE(4861), 1, + sym_concatenation, + ACTIONS(9634), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9650), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11180), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [237459] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_DOLLAR, + ACTIONS(3793), 1, + aux_sym_number_token1, + ACTIONS(3795), 1, + aux_sym_number_token2, + ACTIONS(3799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3809), 1, sym__brace_start, - ACTIONS(7622), 1, + ACTIONS(9636), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9640), 1, + anon_sym_DQUOTE, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11178), 1, sym__special_character, - ACTIONS(8480), 1, + ACTIONS(11184), 1, sym_word, - ACTIONS(8484), 1, + ACTIONS(11188), 1, sym_test_operator, - STATE(880), 1, + STATE(4347), 1, aux_sym__literal_repeat1, - STATE(967), 1, + STATE(4617), 1, sym_concatenation, - ACTIONS(435), 2, + ACTIONS(9634), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, + ACTIONS(9650), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8482), 2, + ACTIONS(11186), 2, sym_raw_string, sym_ansi_c_string, - STATE(722), 9, + STATE(5128), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216481,47 +273964,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181870] = 18, - ACTIONS(3), 1, + [237531] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(3419), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(6587), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(6589), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(6591), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(6597), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2811), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [237605] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + aux_sym_number_token1, + ACTIONS(3683), 1, + aux_sym_number_token2, + ACTIONS(3687), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3697), 1, sym__brace_start, - ACTIONS(7690), 1, + ACTIONS(10062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10540), 1, sym_word, - ACTIONS(7696), 1, + ACTIONS(10546), 1, sym__comment_word, - ACTIONS(8486), 1, + ACTIONS(11190), 1, anon_sym_DOLLAR, - ACTIONS(6573), 2, + ACTIONS(10060), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, + ACTIONS(10076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7692), 2, + ACTIONS(10542), 2, sym_test_operator, sym__special_character, - ACTIONS(7694), 3, + ACTIONS(10544), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3627), 9, + STATE(4831), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216531,50 +274067,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181938] = 21, + [237673] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11192), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3235), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [237747] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8488), 1, + ACTIONS(11194), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2286), 9, + STATE(2786), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216584,47 +274173,206 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182012] = 18, - ACTIONS(3), 1, + [237821] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11196), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3239), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [237895] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11198), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3224), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [237969] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(6587), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(6589), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(6591), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(6597), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, + ACTIONS(11200), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2787), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238043] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + aux_sym_number_token1, + ACTIONS(3034), 1, + aux_sym_number_token2, + ACTIONS(3038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3048), 1, sym__brace_start, - ACTIONS(7690), 1, + ACTIONS(10134), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10138), 1, + anon_sym_DQUOTE, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, + anon_sym_BQUOTE, + ACTIONS(10146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10556), 1, sym_word, - ACTIONS(7696), 1, + ACTIONS(10562), 1, sym__comment_word, - ACTIONS(8490), 1, + ACTIONS(11202), 1, anon_sym_DOLLAR, - ACTIONS(6573), 2, + ACTIONS(10132), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, + ACTIONS(10148), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7692), 2, + ACTIONS(10558), 2, sym_test_operator, sym__special_character, - ACTIONS(7694), 3, + ACTIONS(10560), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3627), 9, + STATE(4493), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216634,49 +274382,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [182080] = 20, - ACTIONS(71), 1, + [238111] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, + ACTIONS(3032), 1, aux_sym_number_token1, - ACTIONS(6831), 1, + ACTIONS(3034), 1, aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, + ACTIONS(3038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(3048), 1, + sym__brace_start, + ACTIONS(10134), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10138), 1, + anon_sym_DQUOTE, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, + ACTIONS(10146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7024), 1, - sym__special_character, - ACTIONS(8492), 1, + ACTIONS(10556), 1, sym_word, - ACTIONS(8496), 1, - sym_test_operator, - STATE(1499), 1, - aux_sym__literal_repeat1, - STATE(1655), 1, - sym_concatenation, - ACTIONS(6815), 2, + ACTIONS(10562), 1, + sym__comment_word, + ACTIONS(11204), 1, + anon_sym_DOLLAR, + ACTIONS(10132), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, + ACTIONS(10148), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8494), 2, + ACTIONS(10558), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10560), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1307), 9, + STATE(4493), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216686,47 +274432,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [182152] = 18, + [238179] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, - anon_sym_DOLLAR, - ACTIONS(6863), 1, + ACTIONS(8312), 1, anon_sym_DQUOTE, - ACTIONS(6867), 1, + ACTIONS(8316), 1, aux_sym_number_token1, - ACTIONS(6869), 1, + ACTIONS(8318), 1, aux_sym_number_token2, - ACTIONS(6871), 1, + ACTIONS(8320), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, + ACTIONS(8322), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, + ACTIONS(8324), 1, anon_sym_BQUOTE, - ACTIONS(6877), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, + ACTIONS(8336), 1, sym__brace_start, - ACTIONS(8072), 1, + ACTIONS(10282), 1, sym_word, - ACTIONS(8080), 1, + ACTIONS(10288), 1, sym__comment_word, - ACTIONS(6853), 2, + ACTIONS(11206), 1, + anon_sym_DOLLAR, + ACTIONS(8302), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, + ACTIONS(8328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8076), 2, + ACTIONS(10284), 2, sym_test_operator, sym__special_character, - ACTIONS(8078), 3, + ACTIONS(10286), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(999), 9, + STATE(5428), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216736,102 +274482,418 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [182220] = 20, + [238247] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(6825), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(6829), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(6831), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(6833), 1, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11208), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2804), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238321] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11210), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3212), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238395] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11212), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2788), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238469] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8312), 1, + anon_sym_DQUOTE, + ACTIONS(8316), 1, + aux_sym_number_token1, + ACTIONS(8318), 1, + aux_sym_number_token2, + ACTIONS(8320), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, + ACTIONS(8322), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(8324), 1, anon_sym_BQUOTE, - ACTIONS(6839), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, + ACTIONS(8336), 1, sym__brace_start, - ACTIONS(7024), 1, - sym__special_character, - ACTIONS(8498), 1, + ACTIONS(10282), 1, sym_word, - ACTIONS(8502), 1, - sym_test_operator, - STATE(1441), 1, - aux_sym__literal_repeat1, - STATE(1761), 1, - sym_concatenation, - ACTIONS(6815), 2, + ACTIONS(10288), 1, + sym__comment_word, + ACTIONS(11214), 1, + anon_sym_DOLLAR, + ACTIONS(8302), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, + ACTIONS(8328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8500), 2, + ACTIONS(10284), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10286), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1297), 9, + STATE(5428), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, - sym_translated_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [238537] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11216), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3209), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238611] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9280), 1, + anon_sym_BANG, + ACTIONS(9286), 1, + anon_sym_TILDE, + ACTIONS(9288), 1, + anon_sym_DOLLAR, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9292), 1, + aux_sym_number_token1, + ACTIONS(9294), 1, + aux_sym_number_token2, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11218), 1, + aux_sym__simple_variable_name_token1, + STATE(2801), 1, + sym__arithmetic_binary_expression, + STATE(2803), 1, + sym__arithmetic_ternary_expression, + STATE(2809), 1, + sym__arithmetic_unary_expression, + STATE(2825), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9282), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9284), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2800), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238685] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, + anon_sym_DOLLAR, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + ACTIONS(9378), 1, + aux_sym_number_token1, + ACTIONS(9380), 1, + aux_sym_number_token2, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11220), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3185), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [182292] = 21, + [238759] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, + ACTIONS(11222), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2422), 9, + STATE(2795), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216841,50 +274903,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182366] = 21, + [238833] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9364), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9366), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9372), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9376), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9382), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8506), 1, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11224), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(3391), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(3396), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(3398), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(3400), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9368), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9370), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2706), 9, + STATE(3204), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216894,100 +274956,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182440] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8508), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182508] = 21, + [238907] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, + ACTIONS(9364), 1, anon_sym_LPAREN, - ACTIONS(7912), 1, + ACTIONS(9366), 1, anon_sym_BANG, - ACTIONS(7918), 1, + ACTIONS(9372), 1, anon_sym_TILDE, - ACTIONS(7920), 1, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(7922), 1, + ACTIONS(9376), 1, anon_sym_DQUOTE, - ACTIONS(7924), 1, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(7926), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(7928), 1, + ACTIONS(9382), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(9392), 1, sym_variable_name, - ACTIONS(8510), 1, + ACTIONS(11226), 1, aux_sym__simple_variable_name_token1, - STATE(2811), 1, + STATE(3391), 1, sym__arithmetic_binary_expression, - STATE(2812), 1, + STATE(3396), 1, sym__arithmetic_ternary_expression, - STATE(2818), 1, + STATE(3398), 1, sym__arithmetic_unary_expression, - STATE(2820), 1, + STATE(3400), 1, sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, + ACTIONS(9368), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7916), 2, + ACTIONS(9370), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2786), 9, + STATE(3165), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -216997,100 +275009,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182582] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8302), 1, - sym_word, - ACTIONS(8308), 1, - sym__comment_word, - ACTIONS(8512), 1, - anon_sym_DOLLAR, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8304), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8306), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3675), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182650] = 21, + [238981] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, + ACTIONS(3064), 1, + sym_variable_name, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7912), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7918), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7920), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7922), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7924), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7926), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7928), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8514), 1, + ACTIONS(11228), 1, aux_sym__simple_variable_name_token1, - STATE(2811), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2812), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2818), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2820), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7916), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2750), 9, + STATE(2789), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -217100,50 +275062,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182724] = 21, + [239055] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3064), 1, sym_variable_name, - ACTIONS(7708), 1, + ACTIONS(9278), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, + ACTIONS(9280), 1, anon_sym_BANG, - ACTIONS(7716), 1, + ACTIONS(9286), 1, anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(9288), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(9292), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(9294), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(9296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(9298), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(9300), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(9302), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8516), 1, + ACTIONS(11230), 1, aux_sym__simple_variable_name_token1, - STATE(2336), 1, + STATE(2801), 1, sym__arithmetic_binary_expression, - STATE(2338), 1, + STATE(2803), 1, sym__arithmetic_ternary_expression, - STATE(2340), 1, + STATE(2809), 1, sym__arithmetic_unary_expression, - STATE(2341), 1, + STATE(2825), 1, sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, + ACTIONS(9282), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7714), 2, + ACTIONS(9284), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2357), 9, + STATE(2791), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -217153,197 +275115,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182798] = 18, - ACTIONS(3), 1, + [239129] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4420), 1, + ACTIONS(9364), 1, + anon_sym_LPAREN, + ACTIONS(9366), 1, + anon_sym_BANG, + ACTIONS(9372), 1, + anon_sym_TILDE, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(4424), 1, + ACTIONS(9376), 1, anon_sym_DQUOTE, - ACTIONS(4428), 1, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(4430), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(4432), 1, + ACTIONS(9382), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4436), 1, - anon_sym_BQUOTE, - ACTIONS(4438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4444), 1, - sym__brace_start, - ACTIONS(7860), 1, - sym_word, - ACTIONS(7868), 1, - sym__comment_word, - ACTIONS(4416), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4440), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7864), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7866), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182866] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(8118), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8302), 1, - sym_word, - ACTIONS(8308), 1, - sym__comment_word, - ACTIONS(8518), 1, - anon_sym_DOLLAR, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8304), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8306), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3675), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9392), 1, + sym_variable_name, + ACTIONS(11232), 1, + aux_sym__simple_variable_name_token1, + STATE(3391), 1, + sym__arithmetic_binary_expression, + STATE(3396), 1, + sym__arithmetic_ternary_expression, + STATE(3398), 1, + sym__arithmetic_unary_expression, + STATE(3400), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9368), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9370), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3182), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [182934] = 18, + [239203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4100), 1, - anon_sym_DOLLAR, - ACTIONS(4104), 1, - anon_sym_DQUOTE, - ACTIONS(4108), 1, + ACTIONS(2580), 1, aux_sym_number_token1, - ACTIONS(4110), 1, + ACTIONS(2582), 1, aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, + ACTIONS(2586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4124), 1, + ACTIONS(2596), 1, sym__brace_start, - ACTIONS(7746), 1, - sym_word, - ACTIONS(7754), 1, - sym__comment_word, - ACTIONS(4096), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7750), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7752), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2377), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183002] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, + ACTIONS(9064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6715), 1, + ACTIONS(9068), 1, anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, + ACTIONS(9072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, + ACTIONS(9074), 1, anon_sym_BQUOTE, - ACTIONS(6729), 1, + ACTIONS(9076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, - sym__brace_start, - ACTIONS(7698), 1, + ACTIONS(10548), 1, sym_word, - ACTIONS(7706), 1, + ACTIONS(10554), 1, sym__comment_word, - ACTIONS(8520), 1, + ACTIONS(11234), 1, anon_sym_DOLLAR, - ACTIONS(6705), 2, + ACTIONS(9062), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, + ACTIONS(9078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7702), 2, + ACTIONS(10550), 2, sym_test_operator, sym__special_character, - ACTIONS(7704), 3, + ACTIONS(10552), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3632), 9, + STATE(1669), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -217353,97 +275218,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [183070] = 18, + [239271] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6715), 1, - anon_sym_DQUOTE, - ACTIONS(6719), 1, + ACTIONS(2580), 1, aux_sym_number_token1, - ACTIONS(6721), 1, + ACTIONS(2582), 1, aux_sym_number_token2, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, + ACTIONS(2586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, - anon_sym_BQUOTE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, + ACTIONS(2596), 1, sym__brace_start, - ACTIONS(7698), 1, - sym_word, - ACTIONS(7706), 1, - sym__comment_word, - ACTIONS(8522), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7702), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7704), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3632), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183138] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(675), 1, + ACTIONS(9064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(9068), 1, anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, + ACTIONS(9072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, + ACTIONS(9074), 1, anon_sym_BQUOTE, - ACTIONS(695), 1, + ACTIONS(9076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(8294), 1, + ACTIONS(10548), 1, sym_word, - ACTIONS(8300), 1, + ACTIONS(10554), 1, sym__comment_word, - ACTIONS(8524), 1, + ACTIONS(11236), 1, anon_sym_DOLLAR, - ACTIONS(673), 2, + ACTIONS(9062), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, + ACTIONS(9078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8296), 2, + ACTIONS(10550), 2, sym_test_operator, sym__special_character, - ACTIONS(8298), 3, + ACTIONS(10552), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(795), 9, + STATE(1669), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -217453,50 +275268,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [183206] = 21, + [239339] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7910), 1, + ACTIONS(9364), 1, anon_sym_LPAREN, - ACTIONS(7912), 1, + ACTIONS(9366), 1, anon_sym_BANG, - ACTIONS(7918), 1, + ACTIONS(9372), 1, anon_sym_TILDE, - ACTIONS(7920), 1, + ACTIONS(9374), 1, anon_sym_DOLLAR, - ACTIONS(7922), 1, + ACTIONS(9376), 1, anon_sym_DQUOTE, - ACTIONS(7924), 1, + ACTIONS(9378), 1, aux_sym_number_token1, - ACTIONS(7926), 1, + ACTIONS(9380), 1, aux_sym_number_token2, - ACTIONS(7928), 1, + ACTIONS(9382), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(9386), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, + ACTIONS(9388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(9392), 1, sym_variable_name, - ACTIONS(8526), 1, + ACTIONS(11238), 1, aux_sym__simple_variable_name_token1, - STATE(2811), 1, + STATE(3391), 1, sym__arithmetic_binary_expression, - STATE(2812), 1, + STATE(3396), 1, sym__arithmetic_ternary_expression, - STATE(2818), 1, + STATE(3398), 1, sym__arithmetic_unary_expression, - STATE(2820), 1, + STATE(3400), 1, sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, + ACTIONS(9368), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(7916), 2, + ACTIONS(9370), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2755), 9, + STATE(3192), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -217506,2479 +275321,3021 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183280] = 20, - ACTIONS(71), 1, + [239413] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7804), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(5874), 1, + anon_sym_DQUOTE, + ACTIONS(11244), 1, + sym_variable_name, + STATE(5696), 1, + sym_string, + ACTIONS(11242), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11240), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7806), 1, - sym__special_character, - ACTIONS(7808), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [239460] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(7812), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(7814), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(7816), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(7822), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7828), 1, - sym__brace_start, - ACTIONS(8528), 1, - sym_word, - ACTIONS(8532), 1, - sym_test_operator, - STATE(4999), 1, - aux_sym__literal_repeat1, - STATE(5127), 1, - sym_concatenation, - ACTIONS(7800), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7824), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8530), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4948), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4243), 1, + sym__c_terminator, + STATE(6365), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + STATE(7061), 1, + sym__for_body, + ACTIONS(11246), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [183352] = 18, + [239535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [239578] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7786), 1, - sym__comment_word, - ACTIONS(8534), 1, - anon_sym_DOLLAR, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7782), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7784), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(830), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4243), 1, + sym__c_terminator, + STATE(6365), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + STATE(6952), 1, + sym__for_body, + ACTIONS(11246), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [183420] = 18, + [239653] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(685), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(687), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(689), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(695), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(8294), 1, - sym_word, - ACTIONS(8300), 1, - sym__comment_word, - ACTIONS(8536), 1, - anon_sym_DOLLAR, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8296), 2, - sym_test_operator, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4243), 1, + sym__c_terminator, + STATE(6365), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + STATE(6886), 1, + sym__for_body, + ACTIONS(11246), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [239728] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_SLASH, + ACTIONS(8032), 1, + anon_sym_PERCENT, + ACTIONS(8034), 1, + anon_sym_COLON, + ACTIONS(8546), 1, + anon_sym_AT, + ACTIONS(8922), 1, + anon_sym_LBRACK, + STATE(7238), 1, + sym__expansion_operator, + STATE(7239), 1, + sym__expansion_max_length, + STATE(7240), 1, + sym__expansion_regex_removal, + STATE(7241), 1, + sym__expansion_regex_replacement, + STATE(7242), 1, + sym__expansion_regex, + STATE(7243), 1, + sym__expansion_expression, + ACTIONS(8028), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8048), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8036), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8046), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8044), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [239793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11276), 1, + aux_sym_concatenation_token1, + ACTIONS(11278), 1, + sym__concat, + STATE(4251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(8298), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(795), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [239836] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + ACTIONS(11286), 1, + sym_file_descriptor, + STATE(4866), 1, + sym_herestring_redirect, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4338), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2719), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [239893] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + STATE(4866), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [239938] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + ACTIONS(11286), 1, + sym_file_descriptor, + STATE(4866), 1, + sym_herestring_redirect, + ACTIONS(4249), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [239995] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11258), 1, + anon_sym_DQUOTE, + ACTIONS(11260), 1, + aux_sym_number_token1, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(11264), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11266), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11268), 1, + anon_sym_BQUOTE, + ACTIONS(11270), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4243), 1, + sym__c_terminator, + STATE(6365), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + STATE(7326), 1, + sym__for_body, + ACTIONS(11246), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [183488] = 20, - ACTIONS(71), 1, + [240070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + STATE(4866), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(5874), 1, + anon_sym_DQUOTE, + ACTIONS(11244), 1, + sym_variable_name, + STATE(5696), 1, + sym_string, + ACTIONS(11242), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11240), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [240160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11276), 1, + aux_sym_concatenation_token1, + ACTIONS(11278), 1, + sym__concat, + STATE(4251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11292), 1, + sym_variable_name, + STATE(6726), 1, + sym_subscript, + ACTIONS(11290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11295), 1, + aux_sym_concatenation_token1, + ACTIONS(11298), 1, + sym__concat, + STATE(4232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [240370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + STATE(5069), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240412] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11317), 1, + anon_sym_LT_LT_LT, + ACTIONS(11320), 1, + sym_file_descriptor, + ACTIONS(11312), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4235), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11309), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [240458] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(310), 1, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(316), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(318), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(324), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7632), 1, - sym__special_character, - ACTIONS(8538), 1, - sym_word, - ACTIONS(8542), 1, - sym_test_operator, - STATE(1097), 1, - aux_sym__literal_repeat1, - STATE(1290), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8540), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1019), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11325), 1, + aux_sym_heredoc_redirect_token1, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4743), 1, + sym__c_terminator, + STATE(6270), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11323), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [183560] = 20, - ACTIONS(71), 1, + [240530] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7632), 1, - sym__special_character, - ACTIONS(8544), 1, - sym_word, - ACTIONS(8548), 1, - sym_test_operator, - STATE(1081), 1, - aux_sym__literal_repeat1, - STATE(1271), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8546), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183632] = 21, - ACTIONS(71), 1, + ACTIONS(11331), 1, + sym_variable_name, + STATE(6726), 1, + sym_subscript, + ACTIONS(11329), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240572] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11276), 1, + aux_sym_concatenation_token1, + ACTIONS(11278), 1, + sym__concat, + STATE(4258), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240614] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + ACTIONS(11337), 1, + sym_file_descriptor, + STATE(5069), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4257), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [240670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240712] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(7720), 1, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(7722), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(7724), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(7726), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8550), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2353), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(11341), 1, + aux_sym_heredoc_redirect_token1, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4721), 1, + sym__c_terminator, + STATE(6300), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11339), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [183706] = 18, + [240784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8302), 1, - sym_word, - ACTIONS(8308), 1, - sym__comment_word, - ACTIONS(8552), 1, - anon_sym_DOLLAR, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8304), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8306), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3675), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183774] = 18, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240826] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(113), 1, + ACTIONS(11250), 1, + anon_sym_LPAREN, + ACTIONS(11252), 1, + aux_sym__c_word_token1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(117), 1, + ACTIONS(11258), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(11260), 1, aux_sym_number_token1, - ACTIONS(123), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(125), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(11266), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, + ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(11270), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(8034), 1, - sym_word, - ACTIONS(8042), 1, - sym__comment_word, - ACTIONS(109), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8038), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8040), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(386), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11345), 1, + aux_sym_heredoc_redirect_token1, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(4757), 1, + sym__c_terminator, + STATE(6330), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + ACTIONS(11248), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11343), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [183842] = 18, + [240898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, - anon_sym_DOLLAR, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, + ACTIONS(11347), 1, + aux_sym_concatenation_token1, + ACTIONS(11350), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7950), 1, - sym__comment_word, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7946), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7948), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183910] = 18, + [240940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11353), 1, + sym__concat, + STATE(4232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241066] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11355), 1, + sym__concat, + STATE(4232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241108] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + ACTIONS(11337), 1, + sym_file_descriptor, + STATE(5069), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4378), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2719), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [241164] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11363), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11365), 1, + anon_sym_LT_LT_LT, + ACTIONS(11367), 1, + sym_file_descriptor, + ACTIONS(11361), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4235), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11359), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11357), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [241210] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11276), 1, + aux_sym_concatenation_token1, + ACTIONS(11369), 1, + sym__concat, + STATE(4256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [241252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11371), 1, + aux_sym_concatenation_token1, + ACTIONS(11374), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8554), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, + [241336] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + STATE(5069), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [241380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11377), 1, + aux_sym_concatenation_token1, + ACTIONS(11379), 1, + sym__concat, + STATE(4380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183978] = 20, - ACTIONS(71), 1, + [241422] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, - anon_sym_DOLLAR, - ACTIONS(6861), 1, + ACTIONS(11381), 1, + aux_sym_concatenation_token1, + ACTIONS(11384), 1, + sym__concat, + STATE(4256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [241464] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11276), 1, + aux_sym_concatenation_token1, + ACTIONS(11387), 1, + sym__concat, + STATE(4256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [241548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, - aux_sym_number_token1, - ACTIONS(6869), 1, - aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(8556), 1, - sym_word, - ACTIONS(8560), 1, - sym_test_operator, - STATE(1109), 1, - aux_sym__literal_repeat1, - STATE(1387), 1, - sym_concatenation, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8558), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(833), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184050] = 18, + [241590] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11272), 1, + aux_sym_concatenation_token1, + ACTIONS(11274), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8562), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, + ACTIONS(11393), 1, sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184118] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + STATE(4261), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(8564), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2775), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184192] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8302), 1, - sym_word, - ACTIONS(8308), 1, - sym__comment_word, - ACTIONS(8566), 1, - anon_sym_DOLLAR, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8304), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8306), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3675), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184260] = 20, - ACTIONS(71), 1, + [241671] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6859), 1, - anon_sym_DOLLAR, - ACTIONS(6861), 1, + ACTIONS(11396), 1, sym__special_character, - ACTIONS(6863), 1, - anon_sym_DQUOTE, - ACTIONS(6867), 1, - aux_sym_number_token1, - ACTIONS(6869), 1, - aux_sym_number_token2, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6873), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6875), 1, - anon_sym_BQUOTE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6887), 1, - sym__brace_start, - ACTIONS(8568), 1, - sym_word, - ACTIONS(8572), 1, - sym_test_operator, - STATE(1053), 1, + STATE(4324), 1, aux_sym__literal_repeat1, - STATE(1399), 1, - sym_concatenation, - ACTIONS(6853), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6879), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8570), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(843), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184332] = 18, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(4264), 1, - aux_sym_number_token1, - ACTIONS(4266), 1, - aux_sym_number_token2, - ACTIONS(4268), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, - anon_sym_BQUOTE, - ACTIONS(4274), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(8390), 1, - sym_word, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8574), 1, - anon_sym_DOLLAR, - ACTIONS(4252), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8394), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184400] = 18, + ACTIONS(1350), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8576), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184468] = 18, + [241780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(8578), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184536] = 18, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(8580), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184604] = 18, + ACTIONS(11398), 1, + aux_sym_concatenation_token1, + ACTIONS(11401), 1, + sym__concat, + STATE(4266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, - anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, - anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(8294), 1, - sym_word, - ACTIONS(8300), 1, - sym__comment_word, - ACTIONS(8582), 1, - anon_sym_DOLLAR, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8296), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8298), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(795), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184672] = 21, - ACTIONS(71), 1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241891] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(11404), 1, + aux_sym_concatenation_token1, + ACTIONS(11407), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8584), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2339), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184746] = 21, - ACTIONS(71), 1, + [241932] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8586), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2777), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184820] = 21, - ACTIONS(71), 1, + [241973] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8588), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2333), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184894] = 18, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, - anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, - anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(8294), 1, - sym_word, - ACTIONS(8300), 1, - sym__comment_word, - ACTIONS(8590), 1, - anon_sym_DOLLAR, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8296), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8298), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(795), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184962] = 20, - ACTIONS(71), 1, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242055] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8592), 1, - sym_word, - ACTIONS(8594), 1, - sym__special_character, - ACTIONS(8598), 1, - sym_test_operator, - STATE(3684), 1, - aux_sym__literal_repeat1, - STATE(4020), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8596), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185034] = 18, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242096] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7950), 1, - sym__comment_word, - ACTIONS(8600), 1, - anon_sym_DOLLAR, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7946), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7948), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185102] = 18, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + ACTIONS(11414), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11416), 1, + sym_file_descriptor, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4985), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11412), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [242141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - aux_sym_number_token1, - ACTIONS(449), 1, - aux_sym_number_token2, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(457), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7950), 1, - sym__comment_word, - ACTIONS(8602), 1, - anon_sym_DOLLAR, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7946), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7948), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185170] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [242182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8604), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185238] = 20, - ACTIONS(71), 1, + [242217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [242258] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8594), 1, + ACTIONS(11418), 1, sym__special_character, - ACTIONS(8606), 1, - sym_word, - ACTIONS(8610), 1, - sym_test_operator, - STATE(3659), 1, + STATE(4394), 1, aux_sym__literal_repeat1, - STATE(3967), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8608), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3867), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185310] = 18, + ACTIONS(5723), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [242297] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(4264), 1, - aux_sym_number_token1, - ACTIONS(4266), 1, - aux_sym_number_token2, - ACTIONS(4268), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, - anon_sym_BQUOTE, - ACTIONS(4274), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(8390), 1, - sym_word, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8612), 1, - anon_sym_DOLLAR, - ACTIONS(4252), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8394), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185378] = 21, - ACTIONS(71), 1, + ACTIONS(11431), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11433), 1, + sym_file_descriptor, + ACTIONS(11425), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11428), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4278), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11422), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11420), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [242342] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8614), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2496), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [185452] = 18, + ACTIONS(11315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11442), 1, + anon_sym_LT_LT_LT, + ACTIONS(11445), 1, + sym_file_descriptor, + ACTIONS(11439), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4279), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11436), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [242387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(7756), 1, - sym_word, - ACTIONS(7764), 1, - sym__comment_word, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7762), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1700), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185520] = 20, - ACTIONS(71), 1, + [242422] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7114), 1, - sym__special_character, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(8616), 1, - sym_word, - ACTIONS(8620), 1, - sym_test_operator, - STATE(2214), 1, - aux_sym__literal_repeat1, - STATE(2373), 1, - sym_concatenation, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8618), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1946), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185592] = 18, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7808), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - aux_sym_number_token1, - ACTIONS(7814), 1, - aux_sym_number_token2, - ACTIONS(7816), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, - anon_sym_BQUOTE, - ACTIONS(7822), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7828), 1, - sym__brace_start, - ACTIONS(8370), 1, - sym_word, - ACTIONS(8376), 1, - sym__comment_word, - ACTIONS(8622), 1, - anon_sym_DOLLAR, - ACTIONS(7800), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7824), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8374), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185660] = 20, - ACTIONS(71), 1, + ACTIONS(11450), 1, + sym_variable_name, + STATE(6772), 1, + sym_subscript, + ACTIONS(11290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4282), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242506] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8624), 1, - sym_word, - ACTIONS(8626), 1, - sym__special_character, - ACTIONS(8630), 1, - sym_test_operator, - STATE(3703), 1, - aux_sym__literal_repeat1, - STATE(4003), 1, - sym_concatenation, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8628), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3656), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185732] = 18, + ACTIONS(11455), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11457), 1, + sym_file_descriptor, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4278), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11453), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [242551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_DOLLAR, - ACTIONS(4877), 1, - aux_sym_number_token1, - ACTIONS(4879), 1, - aux_sym_number_token2, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4893), 1, - sym__brace_start, - ACTIONS(8046), 1, - sym_word, - ACTIONS(8050), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8056), 1, - anon_sym_DQUOTE, - ACTIONS(8060), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8062), 1, - anon_sym_BQUOTE, - ACTIONS(8064), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8068), 1, - sym__comment_word, - ACTIONS(8048), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8054), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8066), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8058), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4574), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185800] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11459), 1, + sym__concat, + STATE(4266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [242592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8632), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185868] = 18, + ACTIONS(1253), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [242627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8634), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185936] = 20, - ACTIONS(71), 1, + ACTIONS(11461), 1, + aux_sym_concatenation_token1, + ACTIONS(11464), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242668] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8626), 1, + ACTIONS(11467), 1, sym__special_character, - ACTIONS(8636), 1, - sym_word, - ACTIONS(8640), 1, - sym_test_operator, - STATE(3696), 1, + STATE(4261), 1, aux_sym__literal_repeat1, - STATE(4002), 1, - sym_concatenation, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8638), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3654), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186008] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, + ACTIONS(5069), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7454), 1, - sym__comment_word, - ACTIONS(8642), 1, - anon_sym_DOLLAR, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7458), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186076] = 18, + [242707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7808), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - aux_sym_number_token1, - ACTIONS(7814), 1, - aux_sym_number_token2, - ACTIONS(7816), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7822), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7828), 1, - sym__brace_start, - ACTIONS(8370), 1, - sym_word, - ACTIONS(8376), 1, - sym__comment_word, - ACTIONS(8644), 1, - anon_sym_DOLLAR, - ACTIONS(7800), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7824), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8374), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186144] = 21, - ACTIONS(71), 1, + [242742] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8646), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2297), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [186218] = 20, - ACTIONS(71), 1, + [242785] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - aux_sym_number_token1, - ACTIONS(2944), 1, - aux_sym_number_token2, - ACTIONS(2948), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - sym__brace_start, - ACTIONS(8106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8108), 1, + ACTIONS(11396), 1, sym__special_character, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8116), 1, - anon_sym_BQUOTE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8648), 1, - sym_word, - ACTIONS(8652), 1, - sym_test_operator, - STATE(3703), 1, + STATE(4324), 1, aux_sym__literal_repeat1, - STATE(4003), 1, - sym_concatenation, - ACTIONS(8104), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8650), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3594), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186290] = 18, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [242824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3436), 1, - anon_sym_DOLLAR, - ACTIONS(3440), 1, - anon_sym_DQUOTE, - ACTIONS(3444), 1, - aux_sym_number_token1, - ACTIONS(3446), 1, - aux_sym_number_token2, - ACTIONS(3448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3450), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3452), 1, - anon_sym_BQUOTE, - ACTIONS(3454), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3464), 1, - sym__brace_start, - ACTIONS(7788), 1, - sym_word, - ACTIONS(7796), 1, - sym__comment_word, - ACTIONS(3432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3456), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7792), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7794), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2044), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186358] = 18, + ACTIONS(11469), 1, + sym__concat, + ACTIONS(6844), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6842), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [242861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8654), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186426] = 18, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [242902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(8656), 1, - sym_word, - ACTIONS(8658), 1, - anon_sym_DOLLAR, - ACTIONS(8664), 1, - sym__comment_word, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8660), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8662), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4111), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186494] = 18, + ACTIONS(11471), 1, + sym__concat, + ACTIONS(6838), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6836), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [242939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, - anon_sym_DOLLAR, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(7978), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, - sym_test_operator, + ACTIONS(11418), 1, sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186562] = 18, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [242978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8666), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186630] = 7, + ACTIONS(1334), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, sym_file_descriptor, - ACTIONS(8670), 1, - anon_sym_DQUOTE, - STATE(4392), 1, - sym_string, - ACTIONS(8672), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8668), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 16, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -219988,7659 +278345,5927 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [186676] = 18, + [243054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, - anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(8656), 1, - sym_word, - ACTIONS(8664), 1, - sym__comment_word, - ACTIONS(8674), 1, - anon_sym_DOLLAR, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8660), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8662), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4111), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186744] = 18, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11473), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [243095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, - anon_sym_DOLLAR, - ACTIONS(4670), 1, - aux_sym_number_token1, - ACTIONS(4672), 1, - aux_sym_number_token2, - ACTIONS(4676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4686), 1, - sym__brace_start, - ACTIONS(7434), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7438), 1, - anon_sym_DQUOTE, - ACTIONS(7442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7444), 1, - anon_sym_BQUOTE, - ACTIONS(7446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8236), 1, - sym_word, - ACTIONS(8244), 1, - sym__comment_word, - ACTIONS(7432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7448), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8242), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2912), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186812] = 18, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(6993), 1, - anon_sym_DQUOTE, - ACTIONS(6997), 1, - aux_sym_number_token1, - ACTIONS(6999), 1, - aux_sym_number_token2, - ACTIONS(7001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7005), 1, - anon_sym_BQUOTE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7017), 1, - sym__brace_start, - ACTIONS(8360), 1, - sym_word, - ACTIONS(8368), 1, - sym__comment_word, - ACTIONS(6983), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8364), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8366), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4337), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186880] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [243171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6715), 1, - anon_sym_DQUOTE, - ACTIONS(6719), 1, - aux_sym_number_token1, - ACTIONS(6721), 1, - aux_sym_number_token2, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6727), 1, - anon_sym_BQUOTE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, - sym__brace_start, - ACTIONS(7698), 1, - sym_word, - ACTIONS(7706), 1, - sym__comment_word, - ACTIONS(8676), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7702), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7704), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3632), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186948] = 18, + ACTIONS(1338), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8678), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187016] = 18, + ACTIONS(1342), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8680), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187084] = 18, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(6587), 1, - aux_sym_number_token1, - ACTIONS(6589), 1, - aux_sym_number_token2, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - ACTIONS(6597), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6607), 1, - sym__brace_start, - ACTIONS(7690), 1, - sym_word, - ACTIONS(7696), 1, - sym__comment_word, - ACTIONS(8682), 1, - anon_sym_DOLLAR, - ACTIONS(6573), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6599), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187152] = 20, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [243311] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7528), 1, - sym__special_character, - ACTIONS(8684), 1, - sym_word, - ACTIONS(8688), 1, - sym_test_operator, - STATE(1138), 1, - aux_sym__literal_repeat1, - STATE(1332), 1, - sym_concatenation, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8686), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(928), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187224] = 18, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11475), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [243352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3810), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - aux_sym_number_token1, - ACTIONS(3816), 1, - aux_sym_number_token2, - ACTIONS(3818), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3822), 1, - anon_sym_BQUOTE, - ACTIONS(3824), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3832), 1, - sym__brace_start, - ACTIONS(7736), 1, - sym_word, - ACTIONS(7744), 1, - sym__comment_word, - ACTIONS(8690), 1, - anon_sym_DOLLAR, - ACTIONS(3802), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3826), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7740), 2, - sym_test_operator, + ACTIONS(11418), 1, sym__special_character, - ACTIONS(7742), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2134), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187292] = 18, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [243391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - aux_sym_number_token1, - ACTIONS(3860), 1, - aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3874), 1, - sym__brace_start, - ACTIONS(8692), 1, - sym_word, - ACTIONS(8694), 1, - anon_sym_DOLLAR, - ACTIONS(8700), 1, - sym__comment_word, - ACTIONS(3846), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3870), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8696), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8698), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2177), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187360] = 20, - ACTIONS(71), 1, + ACTIONS(1354), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243426] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7684), 1, - sym__special_character, - ACTIONS(8702), 1, - sym_word, - ACTIONS(8706), 1, - sym_test_operator, - STATE(1081), 1, - aux_sym__literal_repeat1, - STATE(1271), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8704), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(883), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187432] = 18, + ACTIONS(1346), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - aux_sym_number_token1, - ACTIONS(3860), 1, - aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, - anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3874), 1, - sym__brace_start, - ACTIONS(8692), 1, - sym_word, - ACTIONS(8700), 1, - sym__comment_word, - ACTIONS(8708), 1, - anon_sym_DOLLAR, - ACTIONS(3846), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3870), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8696), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8698), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2177), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187500] = 20, - ACTIONS(71), 1, + ACTIONS(1358), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243496] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7114), 1, - sym__special_character, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(8710), 1, - sym_word, - ACTIONS(8714), 1, - sym_test_operator, - STATE(2231), 1, - aux_sym__literal_repeat1, - STATE(2321), 1, - sym_concatenation, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8712), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1951), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187572] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11477), 1, + sym__concat, + STATE(4266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [243537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8716), 1, - sym_word, - ACTIONS(8718), 1, - anon_sym_DOLLAR, - ACTIONS(8724), 1, - sym__comment_word, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8720), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8722), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187640] = 21, - ACTIONS(71), 1, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [243578] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8726), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2788), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [187714] = 18, + [243613] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - aux_sym_number_token1, - ACTIONS(203), 1, - aux_sym_number_token2, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(8728), 1, - sym_word, - ACTIONS(8730), 1, - anon_sym_DOLLAR, - ACTIONS(8736), 1, - sym__comment_word, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8734), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(404), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187782] = 18, + ACTIONS(2721), 1, + ts_builtin_sym_end, + ACTIONS(5051), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11483), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5049), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [243668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(3854), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - aux_sym_number_token1, - ACTIONS(3860), 1, - aux_sym_number_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3866), 1, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(3868), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3874), 1, - sym__brace_start, - ACTIONS(8692), 1, - sym_word, - ACTIONS(8700), 1, - sym__comment_word, - ACTIONS(3846), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3870), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8696), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8698), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2177), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187850] = 18, + [243703] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, + ACTIONS(4257), 1, anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8738), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, + ACTIONS(5379), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + ACTIONS(11489), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5377), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [243758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187918] = 21, - ACTIONS(71), 1, + [243799] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(3047), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7878), 1, - anon_sym_LPAREN, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7888), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - ACTIONS(7892), 1, - aux_sym_number_token1, - ACTIONS(7894), 1, - aux_sym_number_token2, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7898), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7900), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7902), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2778), 1, - sym__arithmetic_postfix_expression, - STATE(2781), 1, - sym__arithmetic_unary_expression, - STATE(2783), 1, - sym__arithmetic_ternary_expression, - STATE(2785), 1, - sym__arithmetic_binary_expression, - ACTIONS(7882), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7884), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2675), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [187992] = 18, + [243834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7112), 1, - anon_sym_DOLLAR, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(8740), 1, - sym_word, - ACTIONS(8746), 1, - sym__comment_word, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8742), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8744), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2029), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188060] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8748), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2697), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [188134] = 21, - ACTIONS(71), 1, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243869] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8750), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2328), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [188208] = 18, + [243904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8752), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188276] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [243945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8716), 1, - sym_word, - ACTIONS(8724), 1, - sym__comment_word, - ACTIONS(8754), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8720), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8722), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188344] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8756), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2633), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [188418] = 20, - ACTIONS(71), 1, + [243980] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7804), 1, - anon_sym_DOLLAR, - ACTIONS(7806), 1, - sym__special_character, - ACTIONS(7808), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - aux_sym_number_token1, - ACTIONS(7814), 1, - aux_sym_number_token2, - ACTIONS(7816), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7818), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7820), 1, - anon_sym_BQUOTE, - ACTIONS(7822), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7828), 1, - sym__brace_start, - ACTIONS(8758), 1, - sym_word, - ACTIONS(8762), 1, - sym_test_operator, - STATE(5004), 1, - aux_sym__literal_repeat1, - STATE(5142), 1, - sym_concatenation, - ACTIONS(7800), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7824), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8760), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4938), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188490] = 20, - ACTIONS(71), 1, + ACTIONS(4686), 1, + ts_builtin_sym_end, + ACTIONS(4694), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11483), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4688), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [244035] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(8764), 1, - sym_word, - ACTIONS(8768), 1, - sym_test_operator, - STATE(1998), 1, - aux_sym__literal_repeat1, - STATE(2027), 1, - sym_concatenation, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8766), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1706), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188562] = 18, + ACTIONS(1350), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188630] = 18, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(8286), 1, - sym_word, - ACTIONS(8292), 1, - sym__comment_word, - ACTIONS(8770), 1, - anon_sym_DOLLAR, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8288), 2, - sym_test_operator, + ACTIONS(11495), 1, sym__special_character, - ACTIONS(8290), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1163), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188698] = 18, + STATE(4324), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [244144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(8740), 1, - sym_word, - ACTIONS(8746), 1, - sym__comment_word, - ACTIONS(8772), 1, - anon_sym_DOLLAR, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8742), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8744), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2029), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188766] = 18, + ACTIONS(1338), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8774), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188834] = 18, + ACTIONS(1342), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8716), 1, - sym_word, - ACTIONS(8724), 1, - sym__comment_word, - ACTIONS(8776), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8720), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8722), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188902] = 18, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(8286), 1, - sym_word, - ACTIONS(8292), 1, - sym__comment_word, - ACTIONS(8778), 1, - anon_sym_DOLLAR, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8288), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8290), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1163), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188970] = 18, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [244284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8780), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189038] = 18, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [244319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8002), 1, - sym_word, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - sym__comment_word, - ACTIONS(8782), 1, - anon_sym_DOLLAR, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8014), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3649), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189106] = 18, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [244354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(7756), 1, - sym_word, - ACTIONS(7764), 1, - sym__comment_word, - ACTIONS(8784), 1, - anon_sym_DOLLAR, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7762), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1700), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189174] = 18, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [244395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, - anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(7756), 1, - sym_word, - ACTIONS(7764), 1, - sym__comment_word, - ACTIONS(8786), 1, - anon_sym_DOLLAR, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7762), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1700), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189242] = 18, + ACTIONS(1354), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - aux_sym_number_token1, - ACTIONS(203), 1, - aux_sym_number_token2, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(1342), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(8728), 1, - sym_word, - ACTIONS(8736), 1, - sym__comment_word, - ACTIONS(8788), 1, - anon_sym_DOLLAR, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8734), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(404), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189310] = 18, + [244465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7116), 1, - anon_sym_DQUOTE, - ACTIONS(7120), 1, - aux_sym_number_token1, - ACTIONS(7122), 1, - aux_sym_number_token2, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7140), 1, - sym__brace_start, - ACTIONS(8740), 1, - sym_word, - ACTIONS(8746), 1, - sym__comment_word, - ACTIONS(8790), 1, - anon_sym_DOLLAR, - ACTIONS(7106), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8742), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8744), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2029), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189378] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, + ACTIONS(1314), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8792), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2361), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [189452] = 18, + [244500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8794), 1, - sym_word, - ACTIONS(8800), 1, - sym__comment_word, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8796), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8798), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5175), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189520] = 18, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_DOLLAR, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189588] = 18, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, + ACTIONS(1253), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8802), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189656] = 20, - ACTIONS(71), 1, + [244605] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(7564), 1, - sym__special_character, - ACTIONS(8804), 1, - sym_word, - ACTIONS(8808), 1, - sym_test_operator, - STATE(1049), 1, - aux_sym__literal_repeat1, - STATE(1057), 1, - sym_concatenation, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8806), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(801), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189728] = 18, + [244640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(8810), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189796] = 18, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6949), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6951), 1, - anon_sym_DOLLAR, - ACTIONS(6955), 1, - anon_sym_DQUOTE, - ACTIONS(6959), 1, - aux_sym_number_token1, - ACTIONS(6961), 1, - aux_sym_number_token2, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6967), 1, - anon_sym_BQUOTE, - ACTIONS(6969), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__brace_start, - ACTIONS(8142), 1, - sym_word, - ACTIONS(8150), 1, - sym__comment_word, - ACTIONS(6945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6971), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8146), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8148), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2966), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189864] = 18, + ACTIONS(1334), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244712] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, - anon_sym_DOLLAR, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, - anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8716), 1, - sym_word, - ACTIONS(8724), 1, - sym__comment_word, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8720), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8722), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189932] = 18, + ACTIONS(4340), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11457), 1, + sym_file_descriptor, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4338), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2719), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [244763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(8812), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190000] = 21, - ACTIONS(71), 1, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244802] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8814), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2822), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190074] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244837] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8816), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2823), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190148] = 21, - ACTIONS(71), 1, + ACTIONS(11498), 1, + sym__concat, + ACTIONS(6820), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6818), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [244874] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(8818), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2824), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190222] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8820), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2830), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190296] = 21, - ACTIONS(71), 1, + [244915] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8822), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2831), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190370] = 21, - ACTIONS(71), 1, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + ACTIONS(11416), 1, + sym_file_descriptor, + ACTIONS(11506), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4949), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11504), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [244960] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11418), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8824), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2673), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190444] = 18, + [244999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - aux_sym_number_token1, - ACTIONS(3506), 1, - aux_sym_number_token2, - ACTIONS(3510), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - sym__brace_start, - ACTIONS(7478), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7488), 1, + ACTIONS(1338), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8716), 1, - sym_word, - ACTIONS(8724), 1, - sym__comment_word, - ACTIONS(8826), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8720), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8722), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190512] = 21, - ACTIONS(71), 1, + [245034] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8828), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2838), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190586] = 21, - ACTIONS(71), 1, + ACTIONS(4259), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11457), 1, + sym_file_descriptor, + ACTIONS(4249), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4251), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [245085] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(8830), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2840), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190660] = 18, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [245126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, - aux_sym_number_token1, - ACTIONS(1752), 1, - aux_sym_number_token2, - ACTIONS(1756), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1770), 1, - sym__brace_start, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6907), 1, - anon_sym_DQUOTE, - ACTIONS(6911), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6913), 1, - anon_sym_BQUOTE, - ACTIONS(6915), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8278), 1, - sym_word, - ACTIONS(8284), 1, - sym__comment_word, - ACTIONS(8832), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6917), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8280), 2, - sym_test_operator, + ACTIONS(11396), 1, sym__special_character, - ACTIONS(8282), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1120), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190728] = 21, - ACTIONS(71), 1, + STATE(4324), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [245165] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8834), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2843), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190802] = 21, - ACTIONS(71), 1, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [245206] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8836), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2846), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190876] = 21, - ACTIONS(71), 1, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245247] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8838), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2751), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [190950] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [245282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, - aux_sym_number_token1, - ACTIONS(1752), 1, - aux_sym_number_token2, - ACTIONS(1756), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1770), 1, - sym__brace_start, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6907), 1, - anon_sym_DQUOTE, - ACTIONS(6911), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6913), 1, - anon_sym_BQUOTE, - ACTIONS(6915), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8278), 1, - sym_word, - ACTIONS(8284), 1, - sym__comment_word, - ACTIONS(8840), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6917), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8280), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8282), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1120), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191018] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8842), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2872), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191092] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [245317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_DOLLAR, - ACTIONS(1957), 1, - aux_sym_number_token1, - ACTIONS(1959), 1, - aux_sym_number_token2, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1977), 1, - sym__brace_start, - ACTIONS(6791), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6801), 1, - anon_sym_BQUOTE, - ACTIONS(6803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8844), 1, - sym_word, - ACTIONS(8850), 1, - sym__comment_word, - ACTIONS(6787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1261), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191160] = 21, - ACTIONS(71), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [245352] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8852), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2379), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191234] = 18, + [245387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(193), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - aux_sym_number_token1, - ACTIONS(203), 1, - aux_sym_number_token2, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(8728), 1, - sym_word, - ACTIONS(8736), 1, - sym__comment_word, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8734), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(404), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191302] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11510), 1, sym_variable_name, - ACTIONS(8854), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2772), 9, + STATE(6772), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191376] = 18, + ACTIONS(11329), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4282), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(8856), 1, - sym_word, - ACTIONS(8858), 1, - anon_sym_DOLLAR, - ACTIONS(8864), 1, - sym__comment_word, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8860), 2, - sym_test_operator, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - ACTIONS(8862), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191444] = 18, + [245469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8794), 1, - sym_word, - ACTIONS(8800), 1, - sym__comment_word, - ACTIONS(8866), 1, - anon_sym_DOLLAR, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8796), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8798), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5175), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191512] = 21, - ACTIONS(71), 1, + [245504] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4586), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(8868), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2874), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191586] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7684), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(8870), 1, - sym_word, - ACTIONS(8874), 1, - sym_test_operator, - STATE(1097), 1, - aux_sym__literal_repeat1, - STATE(1290), 1, - sym_concatenation, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8872), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(895), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191658] = 18, + [245545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5309), 1, - sym__brace_start, - ACTIONS(6048), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6052), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6058), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8794), 1, - sym_word, - ACTIONS(8800), 1, - sym__comment_word, - ACTIONS(8876), 1, - anon_sym_DOLLAR, - ACTIONS(6044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6062), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8796), 2, - sym_test_operator, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - ACTIONS(8798), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5175), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191726] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8878), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2677), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191800] = 18, + [245586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, - aux_sym_number_token1, - ACTIONS(1959), 1, - aux_sym_number_token2, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1977), 1, - sym__brace_start, - ACTIONS(6791), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6801), 1, - anon_sym_BQUOTE, - ACTIONS(6803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8844), 1, - sym_word, - ACTIONS(8850), 1, - sym__comment_word, - ACTIONS(8880), 1, - anon_sym_DOLLAR, - ACTIONS(6787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1261), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191868] = 21, - ACTIONS(71), 1, + ACTIONS(11516), 1, + sym__concat, + ACTIONS(6829), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6827), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [245623] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8882), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2380), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191942] = 20, - ACTIONS(71), 1, + [245699] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4256), 1, - anon_sym_DOLLAR, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(4264), 1, - aux_sym_number_token1, - ACTIONS(4266), 1, - aux_sym_number_token2, - ACTIONS(4268), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, + ACTIONS(1346), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(4274), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(8884), 1, - sym_word, - ACTIONS(8886), 1, - sym__special_character, - ACTIONS(8890), 1, - sym_test_operator, - STATE(4357), 1, - aux_sym__literal_repeat1, - STATE(4459), 1, - sym_concatenation, - ACTIONS(4252), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8888), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4288), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192014] = 18, + [245734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, - anon_sym_DOLLAR, - ACTIONS(2678), 1, - aux_sym_number_token1, - ACTIONS(2680), 1, - aux_sym_number_token2, - ACTIONS(2684), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2696), 1, - sym__brace_start, - ACTIONS(8892), 1, - sym_word, - ACTIONS(8896), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(1358), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(8908), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8912), 1, - sym__comment_word, - ACTIONS(8894), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8898), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8910), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8902), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1544), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192082] = 18, + [245769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(8856), 1, - sym_word, - ACTIONS(8864), 1, - sym__comment_word, - ACTIONS(8914), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1145), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8860), 2, - sym_test_operator, + ACTIONS(11518), 1, sym__special_character, - ACTIONS(8862), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192150] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + STATE(4368), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(8916), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2701), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192224] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245808] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8918), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2680), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192298] = 18, + [245843] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245884] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11363), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11525), 1, + anon_sym_LT_LT_LT, + ACTIONS(11527), 1, + sym_file_descriptor, + ACTIONS(11523), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4279), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11521), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11357), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [245929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4104), 1, - anon_sym_DQUOTE, - ACTIONS(4108), 1, - aux_sym_number_token1, - ACTIONS(4110), 1, - aux_sym_number_token2, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4114), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4116), 1, + ACTIONS(1346), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4124), 1, - sym__brace_start, - ACTIONS(7746), 1, - sym_word, - ACTIONS(7754), 1, - sym__comment_word, - ACTIONS(8920), 1, - anon_sym_DOLLAR, - ACTIONS(4096), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4120), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7750), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7752), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2377), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192366] = 21, - ACTIONS(71), 1, + [245999] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8922), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2836), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192440] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8924), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2834), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192514] = 21, - ACTIONS(71), 1, + [246034] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8926), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2832), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192588] = 21, - ACTIONS(71), 1, + ACTIONS(11301), 1, + aux_sym_concatenation_token1, + ACTIONS(11303), 1, + sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [246075] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [246118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8928), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2386), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [192662] = 18, + [246153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3105), 1, - aux_sym_number_token1, - ACTIONS(3107), 1, - aux_sym_number_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3121), 1, - sym__brace_start, - ACTIONS(7588), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7592), 1, - anon_sym_DQUOTE, - ACTIONS(7596), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7600), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8210), 1, - sym_word, - ACTIONS(8218), 1, - sym__comment_word, - ACTIONS(7586), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7602), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8214), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8216), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1572), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192730] = 18, + [246188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - aux_sym_number_token1, - ACTIONS(2357), 1, - aux_sym_number_token2, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2373), 1, - sym__brace_start, - ACTIONS(8180), 1, - sym_word, - ACTIONS(8184), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8188), 1, - anon_sym_DQUOTE, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(1342), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(8196), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8200), 1, - sym__comment_word, - ACTIONS(8930), 1, - anon_sym_DOLLAR, - ACTIONS(8182), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8186), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8198), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8190), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1340), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192798] = 20, - ACTIONS(71), 1, + [246223] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(677), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_DQUOTE, - ACTIONS(685), 1, - aux_sym_number_token1, - ACTIONS(687), 1, - aux_sym_number_token2, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(693), 1, - anon_sym_BQUOTE, - ACTIONS(695), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(705), 1, - sym__brace_start, - ACTIONS(7564), 1, - sym__special_character, - ACTIONS(8932), 1, - sym_word, - ACTIONS(8936), 1, - sym_test_operator, - STATE(1028), 1, - aux_sym__literal_repeat1, - STATE(1080), 1, - sym_concatenation, - ACTIONS(673), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(697), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8934), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(754), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192870] = 20, - ACTIONS(71), 1, + ACTIONS(11377), 1, + aux_sym_concatenation_token1, + ACTIONS(11529), 1, + sym__concat, + STATE(4413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [246264] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(6927), 1, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4348), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [246305] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11396), 1, sym__special_character, - ACTIONS(8938), 1, - sym_word, - ACTIONS(8942), 1, - sym_test_operator, - STATE(1499), 1, + STATE(4324), 1, aux_sym__literal_repeat1, - STATE(1655), 1, - sym_concatenation, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8940), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [192942] = 20, - ACTIONS(71), 1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [246344] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, - anon_sym_DOLLAR, - ACTIONS(7076), 1, + ACTIONS(11531), 1, sym__special_character, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, - anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(8944), 1, - sym_word, - ACTIONS(8948), 1, - sym_test_operator, - STATE(1226), 1, + STATE(4368), 1, aux_sym__literal_repeat1, - STATE(1512), 1, - sym_concatenation, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8946), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1004), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193014] = 18, + ACTIONS(5069), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [246383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - aux_sym_number_token1, - ACTIONS(2357), 1, - aux_sym_number_token2, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2373), 1, - sym__brace_start, - ACTIONS(8180), 1, - sym_word, - ACTIONS(8184), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8188), 1, - anon_sym_DQUOTE, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, - anon_sym_BQUOTE, - ACTIONS(8196), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8200), 1, - sym__comment_word, - ACTIONS(8950), 1, - anon_sym_DOLLAR, - ACTIONS(8182), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8186), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8198), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8190), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1340), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193082] = 21, - ACTIONS(71), 1, + ACTIONS(1346), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [246418] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1358), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8952), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2684), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [193156] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [246453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7169), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - aux_sym_number_token1, - ACTIONS(7175), 1, - aux_sym_number_token2, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7179), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7181), 1, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7183), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7189), 1, - sym__brace_start, - ACTIONS(8656), 1, - sym_word, - ACTIONS(8664), 1, - sym__comment_word, - ACTIONS(7159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7185), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8660), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8662), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4111), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193224] = 18, + [246488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(8954), 1, - anon_sym_DOLLAR, - ACTIONS(7978), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193292] = 18, + ACTIONS(11284), 1, + anon_sym_LT_LT_LT, + ACTIONS(11416), 1, + sym_file_descriptor, + ACTIONS(11535), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4889), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11280), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11533), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [246533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(7976), 1, - sym_word, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7986), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_BQUOTE, - ACTIONS(7994), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7998), 1, - sym__comment_word, - ACTIONS(8956), 1, - anon_sym_DOLLAR, - ACTIONS(7978), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7984), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7988), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1478), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193360] = 18, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [246568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, - anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8958), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193428] = 21, - ACTIONS(71), 1, + ACTIONS(1350), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [246603] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11377), 1, + aux_sym_concatenation_token1, + ACTIONS(11379), 1, + sym__concat, + STATE(4380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8960), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2258), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [193502] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [246644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3091), 1, - sym__brace_start, - ACTIONS(7502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7506), 1, - anon_sym_DQUOTE, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7512), 1, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7514), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym_word, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8962), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7516), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8326), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8328), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1720), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193570] = 18, + [246679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1055), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym_number_token1, - ACTIONS(1065), 1, - aux_sym_number_token2, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1073), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1079), 1, - sym__brace_start, - ACTIONS(2838), 1, + ACTIONS(1334), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7830), 1, - sym_word, - ACTIONS(7838), 1, - sym__comment_word, - ACTIONS(1039), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1075), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7834), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7836), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1970), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193638] = 18, + [246714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7406), 1, - anon_sym_DOLLAR, - ACTIONS(7410), 1, - anon_sym_DQUOTE, - ACTIONS(7414), 1, - aux_sym_number_token1, - ACTIONS(7416), 1, - aux_sym_number_token2, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7422), 1, - anon_sym_BQUOTE, - ACTIONS(7424), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7430), 1, - sym__brace_start, - ACTIONS(8086), 1, - sym_word, - ACTIONS(8094), 1, - sym__comment_word, - ACTIONS(7402), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8090), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8092), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2003), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193706] = 20, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(1350), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + [246749] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(7528), 1, + ACTIONS(11537), 1, sym__special_character, - ACTIONS(8964), 1, - sym_word, - ACTIONS(8968), 1, - sym_test_operator, - STATE(1130), 1, + STATE(4394), 1, aux_sym__literal_repeat1, - STATE(1321), 1, - sym_concatenation, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8966), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(879), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193778] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6821), 1, - anon_sym_DOLLAR, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(1364), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(6927), 1, - sym__special_character, - ACTIONS(8970), 1, - sym_word, - ACTIONS(8974), 1, - sym_test_operator, - STATE(1441), 1, - aux_sym__literal_repeat1, - STATE(1761), 1, - sym_concatenation, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1879), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [193850] = 21, - ACTIONS(71), 1, + [246788] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8976), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2685), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [193924] = 21, - ACTIONS(71), 1, + [246823] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8978), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2436), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [193998] = 21, - ACTIONS(71), 1, + ACTIONS(2719), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + ACTIONS(11544), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4378), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [246878] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(2719), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(8980), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2792), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [194072] = 21, - ACTIONS(71), 1, + ACTIONS(5357), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + ACTIONS(11489), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5353), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [246933] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1326), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8982), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2686), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [194146] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8984), 1, - sym_word, - ACTIONS(8986), 1, - sym__special_character, - ACTIONS(8990), 1, - sym_test_operator, - STATE(3684), 1, - aux_sym__literal_repeat1, - STATE(4020), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8988), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4030), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194218] = 21, - ACTIONS(71), 1, + [246968] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2984), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2434), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [194292] = 20, - ACTIONS(71), 1, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247003] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8986), 1, - sym__special_character, - ACTIONS(8992), 1, - sym_word, - ACTIONS(8996), 1, - sym_test_operator, - STATE(3659), 1, - aux_sym__literal_repeat1, - STATE(3967), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8994), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4036), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194364] = 20, - ACTIONS(71), 1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + ACTIONS(11544), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4409), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [247058] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4256), 1, - anon_sym_DOLLAR, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(4264), 1, - aux_sym_number_token1, - ACTIONS(4266), 1, - aux_sym_number_token2, - ACTIONS(4268), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4272), 1, - anon_sym_BQUOTE, - ACTIONS(4274), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4280), 1, - sym__brace_start, - ACTIONS(8886), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - ACTIONS(8998), 1, - sym_word, - ACTIONS(9002), 1, - sym_test_operator, - STATE(4375), 1, - aux_sym__literal_repeat1, - STATE(4458), 1, - sym_concatenation, - ACTIONS(4252), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9000), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4263), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194436] = 18, + [247099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, + ACTIONS(1306), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7454), 1, - sym__comment_word, - ACTIONS(9004), 1, - anon_sym_DOLLAR, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7458), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194504] = 18, + [247134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, - aux_sym_number_token1, - ACTIONS(2910), 1, - aux_sym_number_token2, - ACTIONS(2914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2924), 1, - sym__brace_start, - ACTIONS(7384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7388), 1, - anon_sym_DQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7394), 1, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8128), 1, - sym_word, - ACTIONS(8134), 1, - sym__comment_word, - ACTIONS(9006), 1, - anon_sym_DOLLAR, - ACTIONS(7382), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8130), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8132), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194572] = 21, - ACTIONS(71), 1, + [247169] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(2960), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2415), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [194646] = 21, - ACTIONS(71), 1, + ACTIONS(1253), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247204] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(9008), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2702), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [194720] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [247239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, - aux_sym_number_token1, - ACTIONS(2910), 1, - aux_sym_number_token2, - ACTIONS(2914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2924), 1, - sym__brace_start, - ACTIONS(7384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7388), 1, - anon_sym_DQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7394), 1, - anon_sym_BQUOTE, - ACTIONS(7396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8128), 1, - sym_word, - ACTIONS(8134), 1, - sym__comment_word, - ACTIONS(9010), 1, - anon_sym_DOLLAR, - ACTIONS(7382), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8130), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8132), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194788] = 20, - ACTIONS(71), 1, + ACTIONS(11389), 1, + aux_sym_concatenation_token1, + ACTIONS(11391), 1, + sym__concat, + STATE(4304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [247280] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7074), 1, - anon_sym_DOLLAR, - ACTIONS(7076), 1, - sym__special_character, - ACTIONS(7078), 1, - anon_sym_DQUOTE, - ACTIONS(7082), 1, - aux_sym_number_token1, - ACTIONS(7084), 1, - aux_sym_number_token2, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7090), 1, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7102), 1, - sym__brace_start, - ACTIONS(9012), 1, - sym_word, - ACTIONS(9016), 1, - sym_test_operator, - STATE(1281), 1, - aux_sym__literal_repeat1, - STATE(1470), 1, - sym_concatenation, - ACTIONS(7068), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9014), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1008), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194860] = 20, - ACTIONS(71), 1, + [247315] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(981), 1, - anon_sym_DOLLAR, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(989), 1, - aux_sym_number_token1, - ACTIONS(991), 1, - aux_sym_number_token2, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(995), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(997), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1007), 1, - sym__brace_start, - ACTIONS(2488), 1, - sym__special_character, - ACTIONS(9018), 1, - sym_word, - ACTIONS(9022), 1, - sym_test_operator, - STATE(1985), 1, - aux_sym__literal_repeat1, - STATE(2035), 1, - sym_concatenation, - ACTIONS(977), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9020), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1716), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194932] = 21, - ACTIONS(71), 1, + [247350] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9024), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2687), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195006] = 21, - ACTIONS(71), 1, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247385] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11377), 1, + aux_sym_concatenation_token1, + ACTIONS(11379), 1, + sym__concat, + STATE(4414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9026), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2433), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195080] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [247426] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + [247461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(9028), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2690), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195154] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [247496] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11546), 1, + aux_sym_concatenation_token1, + ACTIONS(11549), 1, + sym__concat, + STATE(4413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9030), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2432), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195228] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [247537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, - aux_sym_number_token1, - ACTIONS(1959), 1, - aux_sym_number_token2, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1977), 1, - sym__brace_start, - ACTIONS(6791), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6801), 1, - anon_sym_BQUOTE, - ACTIONS(6803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8844), 1, - sym_word, - ACTIONS(8850), 1, - sym__comment_word, - ACTIONS(9032), 1, - anon_sym_DOLLAR, - ACTIONS(6787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1261), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195296] = 20, - ACTIONS(71), 1, + ACTIONS(11377), 1, + aux_sym_concatenation_token1, + ACTIONS(11552), 1, + sym__concat, + STATE(4413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [247578] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym_word, - ACTIONS(9036), 1, - sym__special_character, - ACTIONS(9040), 1, - sym_test_operator, - STATE(3684), 1, - aux_sym__literal_repeat1, - STATE(4020), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9038), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3772), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195368] = 21, - ACTIONS(71), 1, + ACTIONS(5142), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5140), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [247630] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9042), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2691), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195442] = 20, - ACTIONS(71), 1, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11562), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4257), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [247680] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, - anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9036), 1, - sym__special_character, - ACTIONS(9044), 1, - sym_word, - ACTIONS(9048), 1, - sym_test_operator, - STATE(3659), 1, - aux_sym__literal_repeat1, - STATE(3967), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9046), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3768), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195514] = 18, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [247714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, - aux_sym_number_token1, - ACTIONS(2680), 1, - aux_sym_number_token2, - ACTIONS(2684), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2696), 1, - sym__brace_start, - ACTIONS(8892), 1, - sym_word, - ACTIONS(8896), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, - anon_sym_BQUOTE, - ACTIONS(8908), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8912), 1, - sym__comment_word, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - ACTIONS(8894), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8898), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8910), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8902), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1544), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195582] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [247754] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9052), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2329), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195656] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [247788] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9054), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2790), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [195730] = 20, - ACTIONS(71), 1, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + ACTIONS(11535), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11564), 1, + sym_file_descriptor, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5043), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11533), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [247832] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, - aux_sym_number_token1, - ACTIONS(3321), 1, - aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, + ACTIONS(11566), 1, + sym__special_character, + STATE(4485), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(8020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9056), 1, - sym_word, - ACTIONS(9058), 1, - sym__special_character, - ACTIONS(9062), 1, + [247870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11570), 1, + sym__concat, + STATE(4520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, sym_test_operator, - STATE(3684), 1, - aux_sym__literal_repeat1, - STATE(4020), 1, - sym_concatenation, - ACTIONS(8004), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 20, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9060), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(4321), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195802] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3313), 1, - anon_sym_DOLLAR, - ACTIONS(3319), 1, aux_sym_number_token1, - ACTIONS(3321), 1, aux_sym_number_token2, - ACTIONS(3325), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3335), 1, - sym__brace_start, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8012), 1, - anon_sym_DQUOTE, - ACTIONS(8016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8018), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(8020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9058), 1, - sym__special_character, - ACTIONS(9064), 1, - sym_word, - ACTIONS(9068), 1, - sym_test_operator, - STATE(3659), 1, - aux_sym__literal_repeat1, - STATE(3967), 1, - sym_concatenation, - ACTIONS(8004), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9066), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4265), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195874] = 18, + sym_word, + [247910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, - aux_sym_number_token1, - ACTIONS(2680), 1, - aux_sym_number_token2, - ACTIONS(2684), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2696), 1, - sym__brace_start, - ACTIONS(8892), 1, - sym_word, - ACTIONS(8896), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(1263), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, anon_sym_BQUOTE, - ACTIONS(8908), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8912), 1, - sym__comment_word, - ACTIONS(9070), 1, - anon_sym_DOLLAR, - ACTIONS(8894), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8898), 2, - sym_test_operator, + [247944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [248116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [248190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11572), 1, sym__special_character, - ACTIONS(8910), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8902), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1544), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [195942] = 21, - ACTIONS(71), 1, + STATE(4533), 1, + aux_sym__literal_repeat1, + ACTIONS(5069), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [248228] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2842), 1, + ACTIONS(1354), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248262] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11562), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4378), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2719), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [248312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2423), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196016] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248346] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1338), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(9072), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2850), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196090] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248380] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1342), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9074), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2283), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196164] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248414] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(9076), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2817), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11574), 1, + sym_variable_name, + STATE(6786), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196238] = 21, - ACTIONS(71), 1, + ACTIONS(11290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4439), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [248522] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [248562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [248766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [248868] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [248908] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9078), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2385), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196312] = 21, - ACTIONS(71), 1, + [248942] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9080), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2776), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196386] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [248982] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9082), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2281), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196460] = 21, - ACTIONS(71), 1, + ACTIONS(11577), 1, + aux_sym_concatenation_token1, + ACTIONS(11580), 1, + sym__concat, + STATE(4453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249022] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [249056] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11455), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11562), 1, + sym_file_descriptor, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4465), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11453), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [249100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9084), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2735), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196534] = 21, - ACTIONS(71), 1, + [249134] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1350), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9086), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2408), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196608] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [249168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(357), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(4422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5395), 3, + sym_test_operator, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7454), 1, - sym__comment_word, - ACTIONS(342), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 20, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7458), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7456), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [196676] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, aux_sym_number_token1, - ACTIONS(7926), 1, aux_sym_number_token2, - ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9088), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2669), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196750] = 21, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249208] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9090), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2303), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196824] = 20, - ACTIONS(71), 1, + [249248] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(437), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(4558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5391), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5389), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(439), 1, anon_sym_DOLLAR, - ACTIONS(443), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(447), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(449), 1, aux_sym_number_token2, - ACTIONS(451), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(453), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, anon_sym_BQUOTE, - ACTIONS(457), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(467), 1, - sym__brace_start, - ACTIONS(7622), 1, - sym__special_character, - ACTIONS(9092), 1, - sym_word, - ACTIONS(9096), 1, - sym_test_operator, - STATE(905), 1, - aux_sym__literal_repeat1, - STATE(959), 1, - sym_concatenation, - ACTIONS(435), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9094), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(705), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [196896] = 21, - ACTIONS(71), 1, + sym_word, + [249288] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9098), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2431), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [196970] = 21, - ACTIONS(71), 1, + ACTIONS(1334), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [249322] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11585), 1, + sym__special_character, + STATE(4483), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9100), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2692), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197044] = 21, - ACTIONS(71), 1, + [249400] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(1334), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [249434] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11431), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11596), 1, + sym_file_descriptor, + ACTIONS(11590), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11593), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4465), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11587), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11420), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [249478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9102), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2429), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197118] = 18, + [249518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [249558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11599), 1, + sym__concat, + STATE(4453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [249632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [249666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11601), 1, + sym__concat, + STATE(4453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(9104), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [197186] = 7, + [249746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, + ACTIONS(1294), 3, sym_file_descriptor, - ACTIONS(8670), 1, - anon_sym_DQUOTE, - STATE(4392), 1, - sym_string, - ACTIONS(8672), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8668), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 16, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -227650,2282 +284275,2018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [197232] = 18, + aux_sym_concatenation_token1, + [249814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - aux_sym_number_token1, - ACTIONS(2017), 1, - aux_sym_number_token2, - ACTIONS(2021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2035), 1, - sym__brace_start, - ACTIONS(6681), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6691), 1, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7956), 1, - sym_word, - ACTIONS(7964), 1, - sym__comment_word, - ACTIONS(9106), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7960), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7962), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [197300] = 21, - ACTIONS(71), 1, + [249848] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9108), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2875), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197374] = 21, - ACTIONS(71), 1, + [249888] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [249928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9110), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2270), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197448] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [249962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(9112), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [197516] = 18, + [250002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6825), 1, - anon_sym_DQUOTE, - ACTIONS(6829), 1, - aux_sym_number_token1, - ACTIONS(6831), 1, - aux_sym_number_token2, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6835), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6837), 1, - anon_sym_BQUOTE, - ACTIONS(6839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6849), 1, - sym__brace_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7876), 1, - sym__comment_word, - ACTIONS(9114), 1, - anon_sym_DOLLAR, - ACTIONS(6815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6841), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7872), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7874), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1358), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [197584] = 21, - ACTIONS(71), 1, + ACTIONS(11363), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11607), 1, + anon_sym_LT_LT_LT, + ACTIONS(11609), 1, + sym_file_descriptor, + ACTIONS(11605), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4517), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11603), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11357), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [250046] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9116), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2718), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197658] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [250086] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9118), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2435), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197732] = 21, - ACTIONS(71), 1, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250120] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9120), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2782), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197806] = 21, - ACTIONS(71), 1, + ACTIONS(11611), 1, + sym__special_character, + STATE(4483), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [250158] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9122), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2275), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [197880] = 18, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [250198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, - sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7454), 1, - sym__comment_word, - ACTIONS(9124), 1, - anon_sym_DOLLAR, - ACTIONS(342), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7458), 2, - sym_test_operator, + ACTIONS(11614), 1, sym__special_character, - ACTIONS(7456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [197948] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + STATE(4485), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9126), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2809), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198022] = 21, - ACTIONS(71), 1, + [250236] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9128), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2291), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198096] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [250276] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(9130), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2825), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198170] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [250316] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9132), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2317), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198244] = 21, - ACTIONS(71), 1, + [250356] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9134), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2855), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198318] = 21, - ACTIONS(71), 1, + ACTIONS(5101), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5097), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [250408] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(2962), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2424), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198392] = 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - aux_sym_number_token1, - ACTIONS(367), 1, - aux_sym_number_token2, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(381), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(4422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_test_operator, sym__brace_start, - ACTIONS(4640), 1, - anon_sym_BQUOTE, - ACTIONS(7450), 1, - sym_word, - ACTIONS(7454), 1, - sym__comment_word, - ACTIONS(9136), 1, - anon_sym_DOLLAR, - ACTIONS(342), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 20, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(377), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7458), 2, - sym_test_operator, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7456), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2180), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [198460] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, aux_sym_number_token1, - ACTIONS(7926), 1, aux_sym_number_token2, - ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9138), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2864), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198534] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(248), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_number_token1, - ACTIONS(256), 1, - aux_sym_number_token2, - ACTIONS(260), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(274), 1, - sym__brace_start, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - ACTIONS(8856), 1, - sym_word, - ACTIONS(8864), 1, - sym__comment_word, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8860), 2, - sym_test_operator, + sym_word, + [250482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11617), 1, sym__special_character, - ACTIONS(8862), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [198602] = 21, - ACTIONS(71), 1, + STATE(4498), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [250520] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9140), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2414), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198676] = 21, - ACTIONS(71), 1, + ACTIONS(1253), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250554] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9142), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2868), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198750] = 21, - ACTIONS(71), 1, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250588] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4776), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [250628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11619), 1, + sym__special_character, + STATE(4498), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [250734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2388), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198824] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250768] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11566), 1, + sym__special_character, + STATE(4485), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9146), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2728), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198898] = 21, - ACTIONS(71), 1, + [250806] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1342), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [250874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(2970), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2360), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [198972] = 21, - ACTIONS(71), 1, + [250908] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9148), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2859), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199046] = 21, - ACTIONS(71), 1, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [250948] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11622), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9150), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2257), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199120] = 21, - ACTIONS(71), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [250988] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11585), 1, + sym__special_character, + STATE(4483), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(9152), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2848), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199194] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [251100] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(6829), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6827), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [251134] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11624), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11626), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9154), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2262), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199268] = 21, - ACTIONS(71), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251214] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1350), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [251248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9156), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2833), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199342] = 21, - ACTIONS(71), 1, + [251288] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9158), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2300), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199416] = 21, - ACTIONS(71), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5067), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251328] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(1338), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + [251362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [251396] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11634), 1, + anon_sym_LT_LT_LT, + ACTIONS(11637), 1, + sym_file_descriptor, + ACTIONS(11631), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4517), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11628), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [251440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11640), 1, sym_variable_name, - ACTIONS(9160), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2628), 9, + STATE(6757), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199490] = 18, + STATE(4519), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11290), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11288), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, + ACTIONS(11643), 1, + aux_sym_concatenation_token1, + ACTIONS(11646), 1, + sym__concat, + STATE(4520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 3, + sym_test_operator, sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(9162), 1, - anon_sym_DOLLAR, - ACTIONS(302), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 20, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, - sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [199558] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(304), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - aux_sym_number_token1, - ACTIONS(316), 1, - aux_sym_number_token2, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(320), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(322), 1, - anon_sym_BQUOTE, - ACTIONS(324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(334), 1, - sym__brace_start, - ACTIONS(7842), 1, - sym_word, - ACTIONS(7850), 1, - sym__comment_word, - ACTIONS(9164), 1, anon_sym_DOLLAR, - ACTIONS(302), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7846), 2, - sym_test_operator, sym__special_character, - ACTIONS(7848), 3, - sym__bare_dollar, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [199626] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, aux_sym_number_token1, - ACTIONS(7724), 1, aux_sym_number_token2, - ACTIONS(7726), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, anon_sym_BQUOTE, - ACTIONS(7732), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9166), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2306), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199700] = 21, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [251560] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, + ACTIONS(11566), 1, + sym__special_character, + STATE(4485), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9168), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2821), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199774] = 21, - ACTIONS(71), 1, + [251598] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9170), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2307), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199848] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251638] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9172), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2807), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199922] = 21, - ACTIONS(71), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11649), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251678] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9174), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2315), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [199996] = 21, - ACTIONS(71), 1, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [251718] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(9176), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2797), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200070] = 21, - ACTIONS(71), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251758] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1253), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9178), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2318), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200144] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [251792] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - anon_sym_BANG, - ACTIONS(7918), 1, - anon_sym_TILDE, - ACTIONS(7920), 1, - anon_sym_DOLLAR, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - aux_sym_number_token2, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7932), 1, - anon_sym_BQUOTE, - ACTIONS(7934), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7938), 1, - sym_variable_name, - ACTIONS(9180), 1, - aux_sym__simple_variable_name_token1, - STATE(2811), 1, - sym__arithmetic_binary_expression, - STATE(2812), 1, - sym__arithmetic_ternary_expression, - STATE(2818), 1, - sym__arithmetic_unary_expression, - STATE(2820), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7914), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7916), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2795), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200218] = 21, - ACTIONS(71), 1, + ACTIONS(11617), 1, + sym__special_character, + STATE(4498), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251830] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - sym_variable_name, - ACTIONS(7708), 1, - anon_sym_LPAREN, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_TILDE, - ACTIONS(7718), 1, - anon_sym_DOLLAR, - ACTIONS(7720), 1, - anon_sym_DQUOTE, - ACTIONS(7722), 1, - aux_sym_number_token1, - ACTIONS(7724), 1, - aux_sym_number_token2, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7728), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7730), 1, - anon_sym_BQUOTE, - ACTIONS(7732), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9182), 1, - aux_sym__simple_variable_name_token1, - STATE(2336), 1, - sym__arithmetic_binary_expression, - STATE(2338), 1, - sym__arithmetic_ternary_expression, - STATE(2340), 1, - sym__arithmetic_unary_expression, - STATE(2341), 1, - sym__arithmetic_postfix_expression, - ACTIONS(7712), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(7714), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2325), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200292] = 13, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9188), 1, + ACTIONS(5721), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(9190), 1, + [251908] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11661), 1, + anon_sym_LT_LT_LT, + ACTIONS(11664), 1, sym_file_descriptor, - STATE(4004), 1, + ACTIONS(11315), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11658), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4530), 3, + sym_file_redirect, sym_herestring_redirect, - ACTIONS(3584), 2, + aux_sym_redirected_statement_repeat2, + ACTIONS(11655), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [251952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11667), 1, + sym__special_character, + STATE(4533), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(3595), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [252064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11670), 1, + sym_variable_name, + STATE(6786), 1, + sym_subscript, + ACTIONS(11329), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4439), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3638), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3640), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [200349] = 7, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [252104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9188), 1, - anon_sym_LT_LT_LT, - STATE(4004), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4586), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 20, + ACTIONS(5067), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -229934,73 +286295,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [200394] = 22, + [252144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9200), 1, + ACTIONS(1342), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9204), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_number_token1, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, - anon_sym_BQUOTE, - ACTIONS(9216), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3537), 1, - sym__c_terminator, - STATE(5018), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - STATE(5870), 1, - sym__for_body, - ACTIONS(9192), 2, + ACTIONS(1340), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200469] = 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9220), 1, - sym__concat, - STATE(3532), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(1346), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 23, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230010,10 +286344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -230023,22 +286355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [200512] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9188), 1, - anon_sym_LT_LT_LT, - STATE(4004), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, + ACTIONS(11585), 1, + sym__special_character, + STATE(4483), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 22, + ACTIONS(4467), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230061,143 +286390,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [200555] = 13, + [252250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9188), 1, - anon_sym_LT_LT_LT, - ACTIONS(9190), 1, + ACTIONS(1326), 3, sym_file_descriptor, - STATE(4004), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3593), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 23, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3595), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3597), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2534), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [200612] = 22, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9200), 1, + ACTIONS(1358), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9204), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_number_token1, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, - anon_sym_BQUOTE, - ACTIONS(9216), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3537), 1, - sym__c_terminator, - STATE(5018), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - STATE(5967), 1, - sym__for_body, - ACTIONS(9192), 2, + ACTIONS(1356), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200687] = 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, + ACTIONS(7166), 5, + anon_sym_COMMA, + anon_sym_CARET, anon_sym_SLASH, - ACTIONS(6655), 1, anon_sym_PERCENT, - ACTIONS(6657), 1, anon_sym_COLON, - ACTIONS(7146), 1, - anon_sym_AT, - ACTIONS(7462), 1, - anon_sym_LBRACK, - STATE(5929), 1, - sym__expansion_operator, - STATE(5930), 1, - sym__expansion_max_length, - STATE(5931), 1, - sym__expansion_regex_removal, - STATE(5932), 1, - sym__expansion_regex_replacement, - STATE(5933), 1, - sym__expansion_regex, - STATE(5934), 1, - sym__expansion_expression, - ACTIONS(6651), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(6671), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(6659), 3, + ACTIONS(7164), 21, sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, anon_sym_PERCENT_PERCENT, - ACTIONS(6669), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(6667), 8, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [252352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7162), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7160), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -230206,94 +286508,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [200752] = 22, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [252386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9200), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9204), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_number_token1, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(9216), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3537), 1, - sym__c_terminator, - STATE(5018), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - STATE(5676), 1, - sym__for_body, - ACTIONS(9192), 2, + [252420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [200827] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11566), 1, + sym__special_character, + STATE(4485), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [252526] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11315), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9226), 1, + ACTIONS(11678), 1, anon_sym_LT_LT_LT, - ACTIONS(9228), 1, + ACTIONS(11681), 1, sym_file_descriptor, - STATE(4004), 1, + ACTIONS(11675), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4547), 3, + sym_file_redirect, sym_herestring_redirect, - ACTIONS(3584), 2, + aux_sym_redirected_statement_repeat2, + ACTIONS(11672), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3597), 2, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(3663), 2, + anon_sym_BQUOTE, + [252570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3665), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9224), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [252604] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + ACTIONS(11506), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11564), 1, + sym_file_descriptor, + ACTIONS(11335), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2534), 3, + STATE(5113), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11504), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [252648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4603), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5373), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [252688] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5383), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5381), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -230302,20 +286817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [200883] = 6, + [252740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9230), 1, - sym__concat, - STATE(3544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, + ACTIONS(1310), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230338,19 +286847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [200925] = 6, + aux_sym_concatenation_token1, + [252774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3603), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230373,21 +286878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [200967] = 6, + aux_sym_concatenation_token1, + [252808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9220), 1, - sym__concat, - STATE(3532), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, + ACTIONS(11585), 1, + sym__special_character, + STATE(4483), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 22, + ACTIONS(5695), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230410,20 +286912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201009] = 6, + [252846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, + ACTIONS(11491), 1, aux_sym_concatenation_token1, - ACTIONS(9220), 1, + ACTIONS(11493), 1, sym__concat, - STATE(3543), 1, + STATE(4468), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + ACTIONS(2096), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 22, + ACTIONS(2094), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230433,7 +286934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -230446,20 +286946,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201051] = 6, + [252886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9220), 1, + ACTIONS(1346), 4, + sym_file_descriptor, sym__concat, - STATE(3617), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230481,73 +287007,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [201093] = 21, + aux_sym_concatenation_token1, + [252954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9202), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11684), 1, + sym__concat, + STATE(4520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(9204), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9206), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(9208), 1, aux_sym_number_token2, - ACTIONS(9210), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, anon_sym_BQUOTE, - ACTIONS(9216), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9238), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [252994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(4594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3913), 1, - sym__c_terminator, - STATE(5029), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(9236), 2, + ACTIONS(5067), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [201165] = 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [253034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, - anon_sym_LT_LT_LT, - STATE(4004), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 21, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230557,6 +287093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -230569,35 +287106,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201207] = 7, + aux_sym_concatenation_token1, + [253068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, - anon_sym_LT_LT_LT, - STATE(4004), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [253102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [253142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [253176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [253210] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3741), 3, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 19, + ACTIONS(4253), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -230606,20 +287268,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201251] = 6, + [253250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, + ACTIONS(1253), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [253284] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5387), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5385), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [253336] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11686), 1, sym_variable_name, - STATE(5432), 1, + STATE(6758), 1, sym_subscript, - ACTIONS(9242), 2, + ACTIONS(11329), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3547), 2, + STATE(4581), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 22, + ACTIONS(11327), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230629,10 +287362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -230642,114 +287372,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201293] = 21, + anon_sym_BQUOTE, + [253376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9204), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_number_token1, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, - anon_sym_BQUOTE, - ACTIONS(9216), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9248), 1, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3830), 1, - sym__c_terminator, - STATE(5015), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(9246), 2, + ACTIONS(1296), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [201365] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [253410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9226), 1, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [253452] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11692), 1, anon_sym_LT_LT_LT, - ACTIONS(9228), 1, + ACTIONS(11694), 1, sym_file_descriptor, - STATE(4004), 1, + ACTIONS(11363), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11690), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4530), 3, + sym_file_redirect, sym_herestring_redirect, - ACTIONS(3584), 2, + aux_sym_redirected_statement_repeat2, + ACTIONS(11688), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11357), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(3597), 2, + anon_sym_LT_LT_DASH, + [253496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(3665), 2, + aux_sym_concatenation_token1, + [253530] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11363), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11700), 1, + anon_sym_LT_LT_LT, + ACTIONS(11702), 1, + sym_file_descriptor, + ACTIONS(11698), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4547), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11696), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11357), 10, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3759), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [253574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11704), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + STATE(4519), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11329), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11327), 19, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3640), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [201421] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [253614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9250), 1, - sym__concat, - STATE(3544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, + ACTIONS(1318), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 22, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230759,7 +287593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -230772,20 +287605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201463] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [253648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9252), 1, - aux_sym_concatenation_token1, - ACTIONS(9255), 1, - sym__concat, - STATE(3544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 3, + ACTIONS(1330), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 22, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230795,7 +287624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -230808,72 +287636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201505] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - aux_sym__c_word_token1, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9204), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_number_token1, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9210), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9214), 1, - anon_sym_BQUOTE, - ACTIONS(9216), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9260), 1, - aux_sym_heredoc_redirect_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(3866), 1, - sym__c_terminator, - STATE(5045), 1, - sym__c_expression, - STATE(5177), 1, - sym__c_variable_assignment, - ACTIONS(9194), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(9258), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [201577] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [253682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 1, - aux_sym_concatenation_token1, - ACTIONS(9265), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 4, + ACTIONS(1263), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 21, + ACTIONS(1261), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230883,8 +287654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -230894,21 +287667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [201619] = 6, + anon_sym_LT_LT_LT, + sym__special_character, + [253716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9272), 1, - sym_variable_name, - STATE(5432), 1, - sym_subscript, - ACTIONS(9270), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3547), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 22, + ACTIONS(1261), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230918,10 +287691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -230931,19 +287701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201661] = 6, + sym__special_character, + anon_sym_BQUOTE, + [253756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11491), 1, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11493), 1, sym__concat, - STATE(3603), 1, + STATE(4468), 1, aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + ACTIONS(4372), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 22, + ACTIONS(4370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230953,7 +287725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -230966,20 +287737,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201702] = 6, + [253796] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + anon_sym_LT_LT_LT, + ACTIONS(11414), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11564), 1, + sym_file_descriptor, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5084), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11412), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [253840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9275), 1, + ACTIONS(11706), 1, sym_variable_name, - STATE(5389), 1, + STATE(6758), 1, sym_subscript, - ACTIONS(9270), 2, + ACTIONS(11290), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3549), 2, + STATE(4581), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 21, + ACTIONS(11288), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -230990,8 +287797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231001,15 +287806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [201743] = 3, + anon_sym_BQUOTE, + [253880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, - sym_variable_name, + STATE(4591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(2072), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231019,10 +287829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231032,17 +287840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [201778] = 3, + anon_sym_LT_LT_LT, + [253920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11709), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1265), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231052,7 +287863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231063,36 +287873,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [201813] = 7, + [253960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11711), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, - ACTIONS(4875), 1, - anon_sym_DQUOTE, - STATE(4568), 1, - sym_string, - ACTIONS(9280), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9278), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1173), 13, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231100,17 +287906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - [201856] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11713), 1, sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231131,35 +287943,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [201891] = 7, + [254040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11715), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 18, + ACTIONS(1265), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231168,35 +287977,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [201934] = 7, + [254080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, + ACTIONS(1318), 4, sym_file_descriptor, - ACTIONS(4875), 1, - anon_sym_DQUOTE, - STATE(4568), 1, - sym_string, - ACTIONS(9280), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9278), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1163), 13, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231204,16 +288006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - [201977] = 3, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [254114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231223,7 +288025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -231236,35 +288037,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [202012] = 7, + [254148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9284), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, + sym__concat, + STATE(4471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 18, + ACTIONS(4467), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231273,15 +288073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [202055] = 3, + [254188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1358), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 23, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231291,7 +288090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -231304,16 +288102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [202090] = 3, + [254222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 4, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11717), 1, sym__concat, - sym_variable_name, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 23, + ACTIONS(1286), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231323,10 +288126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231336,17 +288137,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [202125] = 3, + anon_sym_LT_LT_LT, + [254262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 5, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11719), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 22, + ACTIONS(1265), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231367,23 +288171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202160] = 6, + anon_sym_LT_LT_LT, + [254302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4634), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 20, + ACTIONS(1261), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231393,6 +288194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231403,17 +288205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [202201] = 3, + sym__special_character, + [254342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, - sym_file_descriptor, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11721), 1, sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 22, + ACTIONS(1265), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231423,7 +288229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231434,17 +288239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [202236] = 3, + [254382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 23, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231454,7 +288258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -231468,17 +288271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [202271] = 4, + [254416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 2, + ACTIONS(11617), 1, + sym__special_character, + STATE(4498), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 22, + ACTIONS(5695), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231488,7 +288291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -231501,32 +288303,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [202308] = 5, + anon_sym_LT_LT_LT, + [254454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(11617), 1, + sym__special_character, + STATE(4498), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 20, + ACTIONS(5721), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231535,20 +288336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [202347] = 6, + anon_sym_LT_LT_LT, + [254492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(1294), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231558,6 +288355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231568,18 +288366,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [202388] = 3, + [254526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, - sym_variable_name, + STATE(4523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(5695), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231589,7 +288391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231600,18 +288401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202423] = 3, + anon_sym_LT_LT_LT, + [254566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 22, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231621,8 +288419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231633,17 +288433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202458] = 3, + [254600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(11491), 1, + aux_sym_concatenation_token1, + ACTIONS(11493), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(4564), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231653,8 +288455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231664,18 +288467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202493] = 3, + [254640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, - sym_variable_name, + STATE(4523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(4564), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231685,7 +288490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231696,17 +288500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202528] = 3, + anon_sym_LT_LT_LT, + [254680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11723), 1, sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231716,10 +288524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231729,17 +288534,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [202563] = 3, + anon_sym_BQUOTE, + [254720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, - sym_variable_name, + STATE(4510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(4552), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231749,7 +288558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231760,17 +288568,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [202598] = 3, + anon_sym_LT_LT_LT, + [254760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6820), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6818), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [254794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1350), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231780,10 +288618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -231794,211 +288630,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [202633] = 8, + anon_sym_BQUOTE, + [254828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9294), 1, + ACTIONS(11727), 2, sym_file_descriptor, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3578), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9184), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9290), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(11725), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [202678] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9294), 1, - sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3595), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3597), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3638), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3640), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [202729] = 13, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4272), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4049), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9300), 1, - anon_sym_LT_LT_LT, - ACTIONS(9302), 1, - sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4047), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, + STATE(4650), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, + ACTIONS(4270), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [202784] = 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [254896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9294), 1, + ACTIONS(11729), 3, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3593), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11731), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3595), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2534), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [202835] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9317), 1, - sym_file_descriptor, - ACTIONS(9309), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9312), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3578), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9306), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9304), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [202880] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(11733), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(11735), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232008,10 +288739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232021,82 +288750,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [202915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9320), 1, - sym__concat, - ACTIONS(5538), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5536), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [202952] = 4, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11737), 1, sym__concat, - ACTIONS(5532), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5530), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [202989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 4, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 23, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232106,10 +288775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232119,23 +288785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [203024] = 6, + [255001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9300), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3636), 3, + ACTIONS(11727), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 19, + ACTIONS(11725), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232145,6 +288802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232155,15 +288813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203065] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [255034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(11733), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(11735), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232186,50 +288844,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [203100] = 4, + anon_sym_LT_LT_LT, + [255067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9324), 1, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - ACTIONS(5517), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5515), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [203137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 5, + STATE(4611), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 22, + ACTIONS(2072), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232239,7 +288868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232250,18 +288878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [203172] = 3, + [255106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(11739), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(11741), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232282,30 +288906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [203207] = 3, + [255139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + STATE(5602), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11745), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11748), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 22, + ACTIONS(11743), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -232314,98 +288940,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [203242] = 13, + [255176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9284), 1, - anon_sym_LT_LT_LT, - ACTIONS(9330), 1, + ACTIONS(4554), 3, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3663), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [203297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9332), 1, - sym__concat, - ACTIONS(5511), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5509), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [203334] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [255209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9284), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, + ACTIONS(1298), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 20, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232415,8 +288987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232426,16 +288999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203375] = 3, + aux_sym_concatenation_token1, + [255242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 22, + ACTIONS(4467), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232445,7 +289022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232456,42 +289032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [203410] = 13, + [255281] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_BQUOTE, - ACTIONS(4242), 1, + ACTIONS(4259), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9282), 1, - anon_sym_LT_LT_LT, - ACTIONS(9338), 1, + ACTIONS(11457), 1, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, + ACTIONS(4249), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9336), 2, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11282), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4238), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, + STATE(4283), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, + ACTIONS(4257), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -232500,19 +289070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [203465] = 6, + [255328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3609), 1, + STATE(4634), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, + ACTIONS(5723), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 22, + ACTIONS(5721), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232522,10 +289092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232535,18 +289103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203506] = 5, + [255367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9340), 1, - sym__special_character, - STATE(3595), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 3, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(4370), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232556,10 +289125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232569,19 +289135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203545] = 6, + anon_sym_BQUOTE, + [255406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3603), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + ACTIONS(11750), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 22, + ACTIONS(11752), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232591,10 +289153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232604,19 +289164,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203586] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [255439] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11758), 1, + anon_sym_RBRACE3, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6908), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255498] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11774), 1, + sym_file_descriptor, + ACTIONS(11414), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11412), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [255541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3609), 1, + STATE(4674), 1, aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, + ACTIONS(5697), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 22, + ACTIONS(5695), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232626,10 +289266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232639,15 +289276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203627] = 3, + anon_sym_BQUOTE, + [255580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, + STATE(4669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(2094), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232657,10 +289299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232670,62 +289309,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [255619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [203662] = 13, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255652] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11776), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7521), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255711] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11778), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9300), 1, - anon_sym_LT_LT_LT, - ACTIONS(9302), 1, - sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, + ACTIONS(1265), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4014), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [203717] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [255750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3603), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, + ACTIONS(11782), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 22, + ACTIONS(11780), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232748,16 +289475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203758] = 3, + anon_sym_LT_LT_LT, + [255816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(5721), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232767,7 +289498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232778,21 +289508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [203793] = 5, + [255855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9343), 1, - sym__special_character, - STATE(3602), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 4, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11784), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 21, + ACTIONS(1265), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232813,20 +289542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [203832] = 6, + [255894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9346), 1, + ACTIONS(11786), 1, sym__concat, - STATE(3610), 1, + STATE(4268), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 22, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232836,10 +289564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232849,21 +289575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [203873] = 6, + [255933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3670), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 4, + ACTIONS(5772), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, + ACTIONS(5770), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232873,6 +289593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232883,16 +289604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [203914] = 3, + anon_sym_BQUOTE, + [255966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 23, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232902,7 +289622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -232916,15 +289635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [203949] = 3, + [255999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1358), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232934,7 +289652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -232948,15 +289665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [203984] = 3, + [256032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(5375), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 23, + ACTIONS(5373), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232979,16 +289695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [204019] = 3, + [256065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, + STATE(4669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232998,10 +289717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233011,20 +289727,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [204054] = 6, + anon_sym_BQUOTE, + [256104] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9348), 1, - sym__concat, - STATE(3610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11788), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6810), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11790), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 22, + ACTIONS(11792), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233034,10 +289788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233047,19 +289799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204095] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [256196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 1, - aux_sym_concatenation_token1, - ACTIONS(9353), 1, - sym__concat, - STATE(3610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 2, + ACTIONS(11729), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 22, + ACTIONS(11731), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233082,40 +289830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204136] = 13, + anon_sym_LT_LT_LT, + [256229] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_BQUOTE, - ACTIONS(4316), 1, + ACTIONS(11363), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9282), 1, + ACTIONS(11798), 1, anon_sym_LT_LT_LT, - ACTIONS(9338), 1, + ACTIONS(11800), 1, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9336), 2, + ACTIONS(11796), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, + STATE(4665), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11794), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -233124,62 +289856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [204191] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9284), 1, - anon_sym_LT_LT_LT, - ACTIONS(9330), 1, - sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, + ACTIONS(11357), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3759), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [204246] = 6, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [256272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3677), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(11802), 1, + sym__special_character, + STATE(4855), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, + ACTIONS(4564), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233189,8 +289886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233200,20 +289898,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [204287] = 6, + [256309] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11804), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6702), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, + ACTIONS(11790), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, + ACTIONS(11792), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233223,6 +289960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -233235,20 +289973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [204328] = 6, + anon_sym_LT_LT_LT, + [256407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3609), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, + ACTIONS(11830), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 22, + ACTIONS(11828), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233271,52 +290003,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204369] = 3, + anon_sym_LT_LT_LT, + [256440] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(11832), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6984), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256499] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11834), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11455), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 23, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4734), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11453), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11479), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [204404] = 6, + [256542] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11836), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6665), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256607] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9356), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11838), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7433), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, sym__concat, - STATE(3544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, - sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256699] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(11840), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7146), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 21, + ACTIONS(11844), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233326,9 +290261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233338,20 +290272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204445] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [256791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9358), 1, - sym__concat, - STATE(3544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, + ACTIONS(1302), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233373,131 +290303,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204486] = 5, + aux_sym_concatenation_token1, + [256824] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9360), 1, - sym__special_character, - STATE(3595), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11846), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7089), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256883] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(11848), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7105), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256942] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11506), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + ACTIONS(11850), 1, + sym_file_descriptor, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5017), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11504), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [204525] = 3, + [256985] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, - ts_builtin_sym_end, + ACTIONS(11852), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7261), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257044] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11854), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7112), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257103] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_BQUOTE, + ACTIONS(5379), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, - anon_sym_SEMI, + ACTIONS(11856), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5377), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [204560] = 3, + [257152] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(2721), 1, ts_builtin_sym_end, + ACTIONS(5051), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, - anon_sym_SEMI, + ACTIONS(11834), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5049), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [204595] = 6, + [257201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - aux_sym_concatenation_token1, - ACTIONS(9220), 1, - sym__concat, - STATE(3618), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + STATE(4664), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 21, + ACTIONS(11858), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -233506,15 +290619,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204636] = 3, + [257238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(11315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11867), 1, + anon_sym_LT_LT_LT, + ACTIONS(11870), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(11864), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4665), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11861), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11307), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [257281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11782), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(11780), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233524,10 +290671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233537,20 +290682,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [204671] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [257314] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11774), 1, + sym_file_descriptor, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11535), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4877), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11533), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [257357] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11873), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6860), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11875), 1, sym__concat, - STATE(3603), 1, + STATE(4268), 1, aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 22, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233560,10 +290784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233573,19 +290794,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204712] = 6, + anon_sym_BQUOTE, + [257455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(1302), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [257488] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11877), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7126), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257547] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11879), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7135), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - STATE(3609), 1, + STATE(4611), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(4554), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 22, + ACTIONS(4552), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233595,10 +290934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233608,16 +290944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204753] = 3, + [257645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11881), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1265), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233627,7 +290966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -233638,18 +290976,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [204788] = 3, + [257684] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11883), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7141), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257743] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11885), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7163), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257802] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11887), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7170), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257861] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11889), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7179), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257920] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11891), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7187), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257979] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11893), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7196), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258038] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11895), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7207), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258097] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11897), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7219), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4634), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 22, + ACTIONS(4467), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233670,22 +291354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [204823] = 6, + [258195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9220), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3617), 1, + STATE(4669), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, + ACTIONS(4554), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 21, + ACTIONS(4552), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233696,8 +291377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233707,86 +291386,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [204864] = 5, + anon_sym_BQUOTE, + [258234] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9362), 1, - sym__special_character, - STATE(3602), 1, - aux_sym__literal_repeat1, - ACTIONS(4086), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(11414), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + ACTIONS(11850), 1, + sym_file_descriptor, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [204903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1246), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 22, + ACTIONS(11412), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + [258277] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [204938] = 6, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11899), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7245), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9367), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3631), 1, + STATE(4635), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 3, + ACTIONS(4372), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 21, + ACTIONS(4370), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233807,16 +291498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [204979] = 3, + [258375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, + ACTIONS(5768), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 23, + ACTIONS(5766), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233826,10 +291516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233839,16 +291527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [205014] = 3, + anon_sym_BQUOTE, + [258408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - sym_variable_name, + STATE(4634), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(5695), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233858,10 +291550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233871,57 +291561,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [205049] = 7, + [258447] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9300), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [205092] = 6, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11901), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7257), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258506] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, - STATE(5389), 1, + ACTIONS(11903), 1, + anon_sym_RBRACE3, + STATE(3532), 1, sym_subscript, - ACTIONS(9242), 2, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6900), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258565] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3549), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 21, + ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233931,9 +291669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -233943,14 +291680,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205133] = 3, + [258604] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11905), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7271), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258663] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(11907), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7082), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258722] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11802), 1, + sym__special_character, + STATE(4855), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 23, + ACTIONS(5721), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233960,7 +291786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -233973,39 +291798,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [205167] = 12, + [258759] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11909), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7284), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [258818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(11455), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - ACTIONS(9378), 1, + ACTIONS(11856), 1, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(11487), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4126), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, + STATE(4725), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(11453), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_BQUOTE, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -234014,17 +291876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [205219] = 5, + [258861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - sym__special_character, - STATE(3668), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4634), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 22, + ACTIONS(4564), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234034,10 +291898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234047,15 +291909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205257] = 3, + [258900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, - ts_builtin_sym_end, + STATE(4635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 22, + ACTIONS(4552), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234076,63 +291942,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + [258939] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, - [205291] = 12, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11911), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6618), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [259004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - ACTIONS(9378), 1, + ACTIONS(1330), 3, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4305), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [205343] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [259037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, - sym_variable_name, - STATE(5434), 1, - sym_subscript, - STATE(3641), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9270), 3, + ACTIONS(11830), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9268), 19, + ACTIONS(11828), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234142,6 +292035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -234152,20 +292046,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205383] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [259070] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3677), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(11913), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7296), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11802), 1, + sym__special_character, + STATE(4855), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 20, + ACTIONS(4467), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234175,8 +292111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234186,20 +292123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205423] = 6, + [259166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3676), 1, + STATE(4611), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + ACTIONS(2096), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 20, + ACTIONS(2094), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234209,7 +292146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -234220,14 +292156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205463] = 3, + [259205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234237,7 +292173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -234251,19 +292186,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [205497] = 6, + [259238] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11915), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7317), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, sym__concat, - STATE(3674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 21, + ACTIONS(4552), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234273,6 +292275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -234285,53 +292288,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205537] = 6, + anon_sym_LT_LT_LT, + [259363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, - sym_file_descriptor, + ACTIONS(11431), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 21, + ACTIONS(11926), 1, + sym_file_descriptor, + ACTIONS(11920), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11923), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4710), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11420), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11917), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [205577] = 6, + [259406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9234), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3674), 1, + STATE(4630), 1, aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(4566), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 21, + ACTIONS(4564), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234342,8 +292348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234353,21 +292357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205617] = 6, + [259445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 4, + ACTIONS(11931), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 19, + ACTIONS(11929), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234377,7 +292373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234387,15 +292386,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205657] = 3, + anon_sym_LT_LT_LT, + [259478] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11933), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6922), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259537] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11935), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7373), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259596] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11937), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7332), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, + ACTIONS(4272), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 22, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234416,34 +292547,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [205691] = 6, + [259690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 21, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -234452,94 +292579,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205731] = 3, + [259727] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11939), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7345), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259786] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + ACTIONS(11535), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11941), 1, + sym_file_descriptor, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4877), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [205765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 23, + ACTIONS(11533), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [205799] = 6, + anon_sym_BQUOTE, + [259829] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11943), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6891), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [259888] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11945), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6658), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [259953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 21, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -234548,53 +292777,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205839] = 6, + anon_sym_BQUOTE, + [259990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, - sym_file_descriptor, + ACTIONS(11508), 1, + anon_sym_LT_LT_LT, + ACTIONS(11535), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11850), 1, + sym_file_descriptor, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4877), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11533), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [205879] = 6, + [260033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + ACTIONS(4272), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 21, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234605,8 +292834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234616,55 +292843,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205919] = 6, + anon_sym_BQUOTE, + [260068] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9234), 1, - sym__concat, - STATE(3673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, - sym_file_descriptor, + ACTIONS(11431), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 21, + ACTIONS(11953), 1, + sym_file_descriptor, + ACTIONS(11920), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11950), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4725), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11420), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_BQUOTE, + ACTIONS(11947), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [205959] = 6, + [260111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3670), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 4, + ACTIONS(1263), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 19, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234675,6 +292897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234684,14 +292908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [205999] = 3, + sym__special_character, + [260144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(11956), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(11958), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234701,10 +292926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -234714,19 +292937,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [206033] = 5, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [260177] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, - sym__special_character, - STATE(3686), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 3, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11960), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7601), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260236] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11962), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7361), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260295] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11964), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7046), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260354] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11966), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7374), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260413] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11968), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7162), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 21, + ACTIONS(5721), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234736,7 +293177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -234747,83 +293187,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [206071] = 6, + [260511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9387), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 4, + ACTIONS(11976), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(11431), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 19, + ACTIONS(11920), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11973), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4734), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11420), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11970), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [206111] = 5, + [260554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, - sym__special_character, - STATE(3686), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1314), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 21, + ACTIONS(1312), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [206149] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(2074), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(2072), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234844,16 +293280,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [260620] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11979), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7386), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260679] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [206183] = 3, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11981), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7461), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 3, + ACTIONS(1354), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 23, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234863,7 +293385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -234877,93 +293398,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [206217] = 7, + [260771] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9399), 1, - sym_file_descriptor, - ACTIONS(9394), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3664), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9391), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9389), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [206259] = 6, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11983), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7395), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260830] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11985), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6713), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [260895] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11987), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6678), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [260960] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11989), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6632), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [261025] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [206299] = 7, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11991), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7412), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(4272), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3975), 3, + STATE(4650), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 17, + ACTIONS(4270), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234981,152 +293654,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206341] = 11, + [261121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(11455), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9402), 1, + ACTIONS(11993), 1, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3597), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3663), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3665), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9224), 2, + ACTIONS(11542), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2534), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, + STATE(4710), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [206391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 1, - sym__special_character, - STATE(3668), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(11453), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [206429] = 3, + [261164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + ACTIONS(11414), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11941), 1, + sym_file_descriptor, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [206463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9407), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 19, + ACTIONS(11412), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206503] = 3, + anon_sym_BQUOTE, + [261207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, + STATE(4630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(4467), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235136,7 +293747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235147,19 +293757,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + [261246] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [206537] = 5, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11995), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7422), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - sym__special_character, - STATE(3668), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 2, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 22, + ACTIONS(4552), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235169,10 +293822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235182,19 +293832,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206575] = 6, + anon_sym_LT_LT_LT, + [261344] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - aux_sym_concatenation_token1, - ACTIONS(9409), 1, - sym__concat, - STATE(3610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11997), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7184), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261403] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(11999), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7437), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 21, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235216,19 +293948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206615] = 6, + aux_sym_concatenation_token1, + [261495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(11512), 1, aux_sym_concatenation_token1, - ACTIONS(9411), 1, + ACTIONS(11514), 1, sym__concat, - STATE(3610), 1, + STATE(4776), 1, aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + ACTIONS(4566), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 21, + ACTIONS(4564), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235239,8 +293972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235250,14 +293981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206655] = 3, + anon_sym_LT_LT_LT, + [261534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, + ACTIONS(12003), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 23, + ACTIONS(12001), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235280,84 +294011,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [206689] = 6, + anon_sym_LT_LT_LT, + [261567] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9413), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, + ACTIONS(12005), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7449), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261626] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12007), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6675), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [261691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11410), 1, + anon_sym_LT_LT_LT, + ACTIONS(11506), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11941), 1, + sym_file_descriptor, + ACTIONS(11487), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5017), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [206729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9415), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 20, + ACTIONS(11504), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [206769] = 3, + anon_sym_BQUOTE, + [261734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(5375), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 22, + ACTIONS(5373), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235378,21 +294165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [206803] = 6, + [261767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9419), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3844), 1, + STATE(4611), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, + ACTIONS(4372), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, + ACTIONS(4370), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235402,7 +294189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235413,21 +294199,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [206843] = 6, + [261806] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12009), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7464), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235438,6 +294260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235447,27 +294271,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [206883] = 6, + aux_sym_concatenation_token1, + [261898] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9423), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12011), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7255), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261957] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12013), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7476), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262016] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12015), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7331), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 4, sym__concat, - STATE(3691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 20, + ACTIONS(1336), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -235482,45 +294431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [206923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5515), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [206957] = 3, + [262108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(11802), 1, + sym__special_character, + STATE(4855), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(5695), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235530,7 +294451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -235543,19 +294463,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [206991] = 5, + [262145] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, - sym__special_character, - STATE(3686), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 3, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12017), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7493), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12003), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 21, + ACTIONS(12001), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235576,53 +294534,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [207029] = 6, + [262237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9425), 1, + ACTIONS(1342), 3, + sym_file_descriptor, sym__concat, - STATE(3691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 20, - anon_sym_LPAREN_LPAREN, + ACTIONS(1340), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [207069] = 5, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [262270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9427), 1, - sym__special_character, - STATE(3686), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 3, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(4674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 21, + ACTIONS(4564), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235632,7 +294588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235644,15 +294599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [207107] = 3, + [262309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1263), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1261), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235662,8 +294615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235673,22 +294627,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [207141] = 6, + anon_sym_LT_LT_LT, + sym__special_character, + [262342] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9430), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, - STATE(5455), 1, + ACTIONS(12019), 1, + anon_sym_RBRACE3, + STATE(3532), 1, sym_subscript, - ACTIONS(9270), 2, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7501), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5031), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3688), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 20, + ACTIONS(1261), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235698,7 +294694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235709,15 +294704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207181] = 3, + sym__special_character, + [262440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, sym__concat, - ts_builtin_sym_end, + STATE(4781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(5067), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235727,7 +294728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235738,17 +294738,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [207215] = 3, + [262479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 4, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(12021), 1, sym__concat, - ts_builtin_sym_end, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 22, + ACTIONS(1265), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235758,7 +294760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235769,56 +294770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [207249] = 6, + anon_sym_LT_LT_LT, + [262518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9433), 1, + ACTIONS(11512), 1, aux_sym_concatenation_token1, - ACTIONS(9436), 1, + ACTIONS(12023), 1, sym__concat, - STATE(3691), 1, + STATE(4253), 1, aux_sym_concatenation_repeat1, - ACTIONS(1200), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [207289] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9439), 1, - sym_variable_name, - STATE(5455), 1, - sym_subscript, - ACTIONS(9242), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3688), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 20, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235828,7 +294793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -235839,15 +294803,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207329] = 3, + anon_sym_LT_LT_LT, + [262557] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11993), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4378), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [262606] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12025), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7348), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235857,8 +294902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235869,22 +294915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [207363] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9441), 1, - sym_variable_name, - STATE(5434), 1, - sym_subscript, - STATE(3641), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9242), 3, + [262698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(12027), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(9240), 19, + ACTIONS(1265), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235904,15 +294948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207403] = 3, + [262737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(2096), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 22, + ACTIONS(2094), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235933,19 +294976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [207437] = 5, + [262770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - sym__special_character, - STATE(3668), 1, - aux_sym__literal_repeat1, - ACTIONS(3681), 2, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(12029), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 22, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235955,10 +295001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -235968,18 +295011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207475] = 5, + [262809] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, - sym__special_character, - STATE(3686), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 3, + ACTIONS(12031), 1, + sym_variable_name, + STATE(6727), 1, + sym_subscript, + ACTIONS(11290), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 21, + STATE(4784), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235989,7 +295034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -236000,18 +295044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [207513] = 4, + [262848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 2, + ACTIONS(12036), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 21, + ACTIONS(12034), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236021,6 +295060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -236033,14 +295073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207549] = 3, + anon_sym_LT_LT_LT, + [262881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(11956), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(11958), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236063,32 +295103,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [207583] = 5, + anon_sym_LT_LT_LT, + [262914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(12038), 1, + sym_variable_name, + STATE(6727), 1, + sym_subscript, + ACTIONS(11329), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 19, + STATE(4784), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -236097,49 +295137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207621] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, - sym__concat, - STATE(3681), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4232), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [207661] = 3, + [262953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1263), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1261), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236149,8 +295153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -236160,19 +295166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [207695] = 5, + sym__special_character, + [262986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - sym__special_character, - STATE(3668), 1, - aux_sym__literal_repeat1, - ACTIONS(3765), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 22, + ACTIONS(2072), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236195,235 +295196,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207733] = 12, + anon_sym_LT_LT_LT, + [263019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - ACTIONS(9378), 1, + ACTIONS(1334), 3, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4226), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [207785] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [263052] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5644), 21, - sym__immediate_double_hash, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12040), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7510), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [207819] = 6, + anon_sym_0, + anon_sym__, + [263111] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, - sym__concat, - STATE(3685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4236), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(4340), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4234), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [207859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 4, + ACTIONS(11457), 1, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, - anon_sym_SEMI, + ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4338), 2, + anon_sym_SEMI, anon_sym_AMP, + ACTIONS(11282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2719), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11280), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [207893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5642), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5640), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [207927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(5509), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [207961] = 11, + [263158] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(2719), 1, + anon_sym_BQUOTE, + ACTIONS(5357), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9402), 1, + ACTIONS(11856), 1, sym_file_descriptor, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3597), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3665), 2, + ACTIONS(5355), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3759), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(9224), 2, + ACTIONS(11487), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3640), 3, + ACTIONS(5353), 3, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, + STATE(4697), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -236432,19 +295345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [208011] = 3, + [263207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 4, + STATE(5602), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11745), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11748), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 22, + ACTIONS(11743), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -236452,7 +295368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -236461,17 +295376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [208045] = 3, + [263244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, - sym_file_descriptor, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, sym__concat, + STATE(4630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(5695), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236481,7 +295400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -236492,22 +295410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [208079] = 6, + [263283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 1, - sym_variable_name, - STATE(5485), 1, - sym_subscript, - ACTIONS(9242), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3715), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 20, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236518,6 +295428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -236527,39 +295439,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [208119] = 12, + aux_sym_concatenation_token1, + [263316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4411), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9376), 1, - anon_sym_LT_LT_LT, - ACTIONS(9378), 1, + ACTIONS(11993), 1, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ACTIONS(4809), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(11542), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4071), 3, + ACTIONS(4409), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3975), 3, + STATE(4746), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -236568,54 +295478,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [208171] = 6, + [263365] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12042), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7128), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [263424] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12044), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6925), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [263483] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9447), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, - STATE(5485), 1, + ACTIONS(12046), 1, + anon_sym_RBRACE3, + STATE(3532), 1, sym_subscript, - ACTIONS(9270), 2, - sym_file_descriptor, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7533), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [263542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(3715), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 20, + ACTIONS(1292), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [208211] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11500), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(11502), 1, sym__concat, - STATE(3731), 1, + STATE(4783), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, + ACTIONS(5375), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 20, + ACTIONS(5373), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236635,16 +295670,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [263614] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, - [208251] = 3, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12048), 1, + anon_sym_RPAREN_RPAREN, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6648), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [263679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(5768), 3, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(5766), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236654,8 +295733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -236665,16 +295746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [208285] = 3, + [263712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 3, + ACTIONS(1326), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 23, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236684,7 +295763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -236698,20 +295776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [208319] = 6, + [263745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11512), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(11514), 1, sym__concat, - STATE(3732), 1, + STATE(4777), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + ACTIONS(4372), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 20, + ACTIONS(4370), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236731,83 +295808,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [263784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [208359] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263850] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12050), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6807), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [263909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 4, sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1251), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [208393] = 3, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 3, - sym_file_descriptor, + ACTIONS(1326), 4, sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 23, + ACTIONS(1324), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [208427] = 6, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [264008] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12052), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7398), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264067] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12054), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7113), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264126] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12056), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7524), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264185] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(11514), 1, sym__concat, - STATE(3800), 1, + STATE(4776), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(5723), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, + ACTIONS(5721), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236827,16 +296163,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [208467] = 3, + anon_sym_LT_LT_LT, + [264224] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12058), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7313), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11750), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(11752), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236846,8 +296223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -236857,17 +296236,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, + [264316] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [208501] = 3, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12060), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7380), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(2096), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(2094), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236877,8 +296296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -236888,16 +296309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [208535] = 3, + anon_sym_LT_LT_LT, + [264408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(11842), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 23, + ACTIONS(11844), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236920,16 +296339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [208569] = 3, + anon_sym_LT_LT_LT, + [264441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 4, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, - ts_builtin_sym_end, + STATE(4776), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 22, + ACTIONS(4467), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236939,7 +296362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -236950,20 +296372,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, + [264480] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [208603] = 3, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12062), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7298), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 3, + STATE(4664), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12066), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12068), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 23, + ACTIONS(12064), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -236973,7 +296440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -236982,16 +296448,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [264576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [208637] = 3, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [264609] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12070), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7197), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(4372), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(4370), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237001,8 +296537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237012,21 +296550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [208671] = 6, + anon_sym_LT_LT_LT, + [264701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9419), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3779), 1, + STATE(4635), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, + ACTIONS(2094), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237036,6 +296573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -237046,22 +296584,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [208711] = 7, + [264740] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9454), 1, + ACTIONS(11448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11774), 1, sym_file_descriptor, - ACTIONS(9186), 2, + ACTIONS(11481), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3664), 2, + ACTIONS(11506), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(5017), 2, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9184), 8, + sym_herestring_redirect, + ACTIONS(11479), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -237070,96 +296609,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9450), 12, + ACTIONS(11504), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [208753] = 6, + [264783] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9456), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [208793] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9458), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, - sym_file_descriptor, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [208833] = 3, + ACTIONS(12072), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7308), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1253), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 22, + ACTIONS(1251), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237169,8 +296679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237181,27 +296692,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, + [264875] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, anon_sym_BQUOTE, - [208867] = 6, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12074), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7137), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, + ACTIONS(1334), 4, sym__concat, - STATE(3681), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, + ACTIONS(1332), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -237216,14 +296765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [208907] = 3, + [264967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(2094), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237233,10 +296787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237246,15 +296797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [208941] = 3, + anon_sym_LT_LT_LT, + [265006] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 3, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, + STATE(4776), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 23, + ACTIONS(5695), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237264,10 +296820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237277,46 +296830,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [208975] = 3, + anon_sym_LT_LT_LT, + [265045] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12076), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6904), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1316), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [209009] = 3, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [265137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237326,10 +296926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237339,15 +296936,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [209043] = 3, + anon_sym_LT_LT_LT, + [265176] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12078), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(6895), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(5772), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(5770), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237370,177 +297010,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [209077] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9466), 1, - sym_file_descriptor, - ACTIONS(9309), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9463), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3740), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9460), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9304), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [209121] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9402), 1, - sym_file_descriptor, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3740), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9290), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [209165] = 16, + [265268] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9473), 1, - anon_sym_RBRACE3, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - STATE(2981), 1, + ACTIONS(12080), 1, + anon_sym_RBRACE3, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5570), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(7377), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209224] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9489), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5326), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209289] = 3, + [265327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1342), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 21, + ACTIONS(1340), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -237562,201 +297083,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [209322] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [209359] = 16, + [265360] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9513), 1, + ACTIONS(12082), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(6036), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(7260), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209418] = 16, + [265419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11739), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11741), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [265452] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9515), 1, + ACTIONS(12084), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5991), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(7131), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209477] = 11, + [265511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(1263), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4049), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9517), 1, - sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, + ACTIONS(1261), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4047), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [209526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [209559] = 3, + [265544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1322), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 21, + ACTIONS(1320), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -237778,60 +297259,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [209592] = 16, + [265577] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9519), 1, + ACTIONS(12086), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5516), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(6842), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209651] = 4, + [265636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 20, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -237841,8 +297319,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237852,513 +297331,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [209686] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9521), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3859), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9290), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(9326), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [209729] = 16, + aux_sym_concatenation_token1, + [265669] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9523), 1, + ACTIONS(12088), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(6038), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(7104), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209788] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9525), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5278), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209853] = 16, + [265728] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9527), 1, + ACTIONS(12090), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5857), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(6800), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [209912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [209945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [209978] = 3, + [265787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1306), 3, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1304), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210011] = 3, + [265820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 4, + ACTIONS(1310), 3, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1308), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210044] = 16, + [265853] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9529), 1, + ACTIONS(12092), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5505), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(6832), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [210103] = 3, + [265912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12094), 1, + sym__special_character, + STATE(4855), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1362), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [265949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11931), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11929), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210136] = 16, + [265982] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(11760), 1, anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(11764), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, + ACTIONS(11770), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, + ACTIONS(11772), 1, sym_variable_name, - ACTIONS(9531), 1, + ACTIONS(12097), 1, anon_sym_RBRACE3, - STATE(2981), 1, + STATE(3532), 1, sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, + STATE(6428), 1, aux_sym__expansion_body_repeat1, - STATE(5956), 1, + STATE(6472), 1, + sym_command_substitution, + STATE(6841), 1, sym__expansion_body, - ACTIONS(9477), 2, + ACTIONS(11762), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(9469), 4, + ACTIONS(11754), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(9471), 5, + ACTIONS(11756), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [210195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210261] = 3, + [266041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12036), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12034), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [210294] = 6, + [266074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 3, + ACTIONS(1350), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 19, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238369,6 +297674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238378,19 +297685,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [210333] = 6, + aux_sym_concatenation_token1, + [266107] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, + ACTIONS(4686), 1, + ts_builtin_sym_end, + ACTIONS(4694), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11834), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4688), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [266156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 20, + ACTIONS(4370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238400,6 +297741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238410,20 +297752,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [210372] = 6, + [266189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, + ACTIONS(1330), 4, sym__concat, - STATE(3779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [266222] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11760), 1, + anon_sym_BANG2, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11770), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11772), 1, + sym_variable_name, + ACTIONS(12099), 1, + anon_sym_RBRACE3, + STATE(3532), 1, + sym_subscript, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(6472), 1, + sym_command_substitution, + STATE(7051), 1, + sym__expansion_body, + ACTIONS(11762), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11754), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11756), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [266281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11931), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 20, + ACTIONS(11929), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238434,6 +297844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238443,20 +297855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [210411] = 6, + anon_sym_LT_LT_LT, + [266313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(11830), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 20, + ACTIONS(11828), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238466,6 +297873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238477,19 +297885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [210450] = 6, + [266345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(12103), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 20, + ACTIONS(12101), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238499,7 +297901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238509,20 +297914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [210489] = 6, + [266377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, + ACTIONS(12107), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 20, + ACTIONS(12105), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238532,7 +297930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238542,20 +297943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [210528] = 6, + [266409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, + ACTIONS(12109), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 20, + ACTIONS(12111), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238565,6 +297960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238576,19 +297972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [210567] = 6, + [266441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, + ACTIONS(4554), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 20, + ACTIONS(4552), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238598,6 +297989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238609,62 +298001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [210606] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9533), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5542), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [210665] = 6, + [266473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + ACTIONS(5768), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 20, + ACTIONS(5766), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238675,6 +298019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238684,20 +298030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [210704] = 6, + [266505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9535), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(12113), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 20, + ACTIONS(12115), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238707,6 +298047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238718,62 +298059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [210743] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9537), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5962), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [210802] = 6, + [266537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9539), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + ACTIONS(12119), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 20, + ACTIONS(12117), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238783,7 +298075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -238793,101 +298088,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [210841] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9541), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5575), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [210900] = 10, + [266569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9294), 1, + ACTIONS(12121), 3, sym_file_descriptor, - ACTIONS(3595), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12123), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3638), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3640), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [210947] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [266601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 3, + ACTIONS(12125), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 19, + ACTIONS(12127), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -238897,6 +298134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -238907,123 +298145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [210986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211019] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9543), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5897), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [211078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211111] = 6, + [266633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3796), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + ACTIONS(11931), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 19, + ACTIONS(11929), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239033,6 +298163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -239043,20 +298174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211150] = 6, + anon_sym_BQUOTE, + [266665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9288), 1, - sym__concat, - STATE(3800), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, + ACTIONS(12129), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 19, + ACTIONS(12131), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239066,6 +298192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -239076,177 +298203,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1246), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211255] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9545), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5596), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [211314] = 3, + [266697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12133), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12135), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211347] = 3, + [266729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12139), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12137), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211380] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(2096), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, + ACTIONS(2094), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239256,8 +298278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239267,46 +298291,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [211413] = 3, + [266793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12143), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12141), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [211446] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9547), 3, + ACTIONS(12119), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9549), 22, + ACTIONS(12117), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239316,8 +298336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239327,22 +298349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [211479] = 6, + [266857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9551), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, + ACTIONS(12147), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 19, + ACTIONS(12145), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239352,7 +298365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239362,112 +298378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211518] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9553), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5212), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [211583] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9555), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5211), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [211648] = 6, + [266889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 3, + ACTIONS(12151), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 19, + ACTIONS(12149), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239477,7 +298394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239487,20 +298407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211687] = 6, + [266921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(9557), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, + ACTIONS(12155), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 19, + ACTIONS(12153), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239510,7 +298423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239520,19 +298436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211726] = 6, + [266953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, + ACTIONS(4554), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, + ACTIONS(4552), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239543,6 +298453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239552,150 +298464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [211765] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9559), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5614), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [211824] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9561), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5849), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [211883] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9563), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5859), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [211942] = 6, + anon_sym_LT_LT_LT, + [266985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9565), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, + ACTIONS(12157), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 19, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239705,6 +298482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -239715,98 +298493,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [211981] = 8, + anon_sym_BQUOTE, + [267017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9517), 1, + ACTIONS(12157), 3, sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9292), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3899), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9290), 7, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(9296), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [212024] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9567), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5616), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212083] = 6, + [267049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9569), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, + ACTIONS(4554), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 19, + ACTIONS(4552), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239816,7 +298539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -239826,14 +298552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [212122] = 3, + [267081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 3, + ACTIONS(12133), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 22, + ACTIONS(12135), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -239856,213 +298581,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [212155] = 11, + [267113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9521), 1, + ACTIONS(12163), 2, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12161), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3663), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [212204] = 16, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267145] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12169), 1, + aux_sym__c_word_token1, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(12183), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9571), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + STATE(6605), 1, + sym__c_expression, + STATE(6762), 1, + sym__c_variable_assignment, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3441), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5744), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212263] = 11, + [267207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9521), 1, + ACTIONS(12187), 3, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12189), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3759), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [212312] = 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [267239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9294), 1, + ACTIONS(4372), 2, sym_file_descriptor, - ACTIONS(3593), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3595), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3597), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2534), 4, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9184), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [212359] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9573), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5994), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212418] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [267271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 3, + ACTIONS(12121), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 22, + ACTIONS(12123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240085,181 +298741,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [212451] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9575), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5660), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212510] = 11, + [267303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(12191), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9517), 1, - sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4016), 2, + ACTIONS(12193), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4018), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4014), 3, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [267335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 19, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [212559] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9577), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5665), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212618] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9579), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5684), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212677] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 3, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5031), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 22, + ACTIONS(4564), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240269,10 +298824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -240282,207 +298834,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [212710] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9581), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5689), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212769] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9583), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5710), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212828] = 7, + [267411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9585), 1, + ACTIONS(12195), 3, sym_file_descriptor, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3828), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9222), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12197), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9450), 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [267443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12113), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12115), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [212869] = 3, + [267475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12199), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12201), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [212902] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9587), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5637), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [212961] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [267507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9589), 3, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9591), 22, + ACTIONS(2072), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240492,7 +298943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -240503,102 +298953,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [212994] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9593), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5333), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [213059] = 7, + [267545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9601), 1, + ACTIONS(11842), 2, sym_file_descriptor, - ACTIONS(9598), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3828), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9595), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9389), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(11844), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213100] = 6, + anon_sym_LT_LT_LT, + [267577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 3, + ACTIONS(12155), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 19, + ACTIONS(12153), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240608,6 +298999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -240618,150 +299010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213139] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9604), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5329), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [213204] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9606), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5914), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213263] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9608), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5569), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213322] = 5, + [267609] = 5, ACTIONS(3), 1, sym_comment, - STATE(3891), 1, + STATE(4971), 1, aux_sym_pipeline_repeat1, - ACTIONS(9612), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9614), 2, + ACTIONS(12068), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9610), 20, + ACTIONS(12203), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12064), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240770,7 +299031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -240782,149 +299042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213359] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9616), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5731), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213418] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9618), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5497), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213477] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9620), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5764), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213536] = 6, + [267645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 3, + ACTIONS(11739), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 19, + ACTIONS(11741), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -240934,6 +299059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -240944,56 +299070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213575] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9622), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5541), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213634] = 3, + [267677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9589), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5031), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9591), 23, + ACTIONS(5695), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241003,10 +299093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241016,58 +299103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [213667] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9624), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5766), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213726] = 3, + [267715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(2074), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9628), 22, + ACTIONS(2072), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241088,22 +299131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [213759] = 6, + [267747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 3, + ACTIONS(12107), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 19, + ACTIONS(12105), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241113,7 +299148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241123,19 +299161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213798] = 6, + [267779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9630), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(12151), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 20, + ACTIONS(12149), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241156,19 +299189,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213837] = 6, + anon_sym_BQUOTE, + [267811] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9632), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11562), 1, + sym_file_descriptor, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4257), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [267857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12205), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 20, + ACTIONS(12207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241189,58 +299254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [213876] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9634), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5539), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [213935] = 3, + [267889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 4, + ACTIONS(12103), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4706), 21, + ACTIONS(12101), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241262,20 +299284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [213968] = 6, + [267921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 3, + ACTIONS(1263), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 19, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241286,6 +299301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241295,20 +299312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [214007] = 6, + sym__special_character, + [267953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9636), 1, - sym_variable_name, - STATE(5465), 1, - sym_subscript, - ACTIONS(9270), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3848), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 19, + ACTIONS(2072), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241319,6 +299330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241328,20 +299341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [214046] = 6, + anon_sym_LT_LT_LT, + [267985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9639), 1, - sym_variable_name, - STATE(5465), 1, - sym_subscript, - ACTIONS(9242), 2, + ACTIONS(12209), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3848), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 19, + ACTIONS(12211), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241351,6 +299359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -241361,13 +299370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [214085] = 3, + anon_sym_BQUOTE, + [268017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 23, + ACTIONS(12213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241390,57 +299400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [214118] = 16, + [268049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9641), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5584), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9547), 2, + ACTIONS(12003), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9549), 23, + ACTIONS(12001), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241450,7 +299416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -241464,20 +299429,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [214210] = 6, + [268081] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12169), 1, + aux_sym__c_word_token1, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + STATE(6742), 1, + sym__c_expression, + STATE(6762), 1, + sym__c_variable_assignment, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3441), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [268143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9419), 1, + ACTIONS(11653), 1, sym__concat, - STATE(3808), 1, + STATE(5031), 1, aux_sym_concatenation_repeat1, - ACTIONS(3769), 3, + ACTIONS(4469), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 19, + ACTIONS(4467), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241497,101 +299505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [214249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9643), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5632), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214308] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9645), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5777), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214367] = 3, + [268181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 4, + ACTIONS(12199), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 21, + ACTIONS(12201), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241613,178 +299534,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [214400] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9647), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5628), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214459] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9649), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5681), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214518] = 8, + [268213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9660), 1, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, sym_file_descriptor, - ACTIONS(9654), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9657), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3859), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9304), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(9651), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [214561] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9663), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5757), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214620] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9665), 3, + ACTIONS(12219), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9667), 22, + ACTIONS(12217), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241794,8 +299582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241805,59 +299595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [214653] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9669), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5707), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214712] = 3, + [268283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9671), 3, + ACTIONS(12199), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9673), 22, + ACTIONS(12201), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -241867,8 +299611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -241878,136 +299624,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [214745] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9675), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5989), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [214804] = 19, + [268315] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(12167), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(12169), 1, aux_sym__c_word_token1, - ACTIONS(9497), 1, + ACTIONS(12171), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(12173), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12175), 1, aux_sym_number_token1, - ACTIONS(9503), 1, + ACTIONS(12177), 1, aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12183), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9677), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, + STATE(3442), 1, sym__c_unary_expression, - STATE(5266), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [214869] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9679), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, + STATE(3443), 1, sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5265), 1, + STATE(3444), 1, + sym__c_postfix_expression, + STATE(6728), 1, sym__c_expression, - STATE(5446), 1, + STATE(6762), 1, sym__c_variable_assignment, - ACTIONS(9491), 2, + ACTIONS(12165), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2743), 7, + STATE(3441), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -242015,19 +299668,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [214934] = 6, + [268377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3843), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, + ACTIONS(5375), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 20, + ACTIONS(5373), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242037,8 +299685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242048,62 +299697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [214973] = 16, + [268409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9681), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5793), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3844), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + ACTIONS(12199), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 20, + ACTIONS(12201), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242113,8 +299713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242124,62 +299726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215071] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9683), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5895), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215130] = 6, + [268441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3843), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 20, + ACTIONS(12213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242189,8 +299742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242200,36 +299755,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215169] = 11, + [268473] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_BQUOTE, - ACTIONS(4316), 1, + ACTIONS(5142), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9685), 1, + ACTIONS(12221), 1, sym_file_descriptor, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9336), 2, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, + ACTIONS(5140), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3907), 3, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -242238,19 +299791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [215218] = 6, + [268519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3844), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(12225), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 20, + ACTIONS(12223), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242260,8 +299807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242271,15 +299820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215257] = 3, + [268551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 4, + ACTIONS(4372), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4713), 21, + ACTIONS(4370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242289,8 +299836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242300,58 +299849,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [215290] = 11, + [268583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_BQUOTE, - ACTIONS(4242), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9685), 1, + ACTIONS(12227), 3, sym_file_descriptor, - ACTIONS(3584), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12229), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, + anon_sym_BQUOTE, + [268615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12209), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12211), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9336), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4238), 3, + anon_sym_LT_LT_DASH, + [268647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12187), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12189), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [215339] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268679] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12235), 1, + aux_sym__c_word_token1, + ACTIONS(12237), 1, + anon_sym_DQUOTE, + ACTIONS(12239), 1, + aux_sym_number_token1, + ACTIONS(12241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12245), 1, + anon_sym_BQUOTE, + ACTIONS(12247), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(6493), 1, + sym__c_variable_assignment, + STATE(6531), 1, + sym__c_expression, + ACTIONS(12231), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [268741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3843), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, + ACTIONS(12225), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 20, + ACTIONS(12223), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242372,19 +300008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215378] = 6, + anon_sym_BQUOTE, + [268773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3844), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, + ACTIONS(12225), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 20, + ACTIONS(12223), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242394,8 +300025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242405,19 +300038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215417] = 6, + [268805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3843), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 20, + ACTIONS(12249), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242427,8 +300054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242438,19 +300067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215456] = 6, + [268837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(3844), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + ACTIONS(12227), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 20, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242471,65 +300095,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215495] = 16, + anon_sym_BQUOTE, + [268869] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9687), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5873), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215554] = 5, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11562), 1, + sym_file_descriptor, + ACTIONS(4378), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4380), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11335), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2719), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [268915] = 3, ACTIONS(3), 1, sym_comment, - STATE(4443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9693), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9689), 3, + ACTIONS(12253), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9691), 19, + ACTIONS(12255), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -242537,6 +300151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -242546,56 +300161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [215591] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9696), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5788), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215650] = 3, + [268947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5031), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9628), 23, + ACTIONS(5721), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242605,10 +300183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -242618,151 +300193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [215683] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9698), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5869), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215742] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9700), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5883), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215801] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9702), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5941), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215860] = 5, + [268985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 2, + STATE(5602), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11745), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3586), 3, + ACTIONS(11748), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 17, + ACTIONS(11743), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242772,6 +300214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -242780,132 +300224,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215897] = 7, + [269021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, + ACTIONS(5932), 2, sym_file_descriptor, - ACTIONS(9706), 1, aux_sym_heredoc_redirect_token1, - STATE(3929), 1, - sym_file_redirect, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9184), 8, + ACTIONS(5930), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9704), 12, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12259), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12257), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [215938] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9708), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6116), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [215997] = 7, + [269085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, + ACTIONS(5932), 2, sym_file_descriptor, - ACTIONS(9712), 1, aux_sym_heredoc_redirect_token1, - STATE(3966), 1, - sym_file_redirect, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9184), 8, + ACTIONS(5930), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9710), 12, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11782), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11780), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [216038] = 5, + anon_sym_LT_LT_LT, + [269149] = 3, ACTIONS(3), 1, sym_comment, - STATE(3891), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, + ACTIONS(12259), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9714), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 20, + ACTIONS(12257), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -242915,6 +300360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -242923,100 +300369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [216075] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9717), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6057), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216134] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9719), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6058), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216193] = 3, + [269181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9721), 3, + ACTIONS(12225), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9723), 22, + ACTIONS(12223), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243037,74 +300397,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [216226] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9725), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6047), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216285] = 5, + [269213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(12263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 18, + ACTIONS(12261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -243113,19 +300427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [216322] = 4, + [269245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 3, + ACTIONS(11733), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 19, + ACTIONS(11735), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243136,6 +300444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -243145,76 +300455,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [216357] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9727), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6019), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216416] = 8, + anon_sym_LT_LT_LT, + [269277] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9735), 1, - sym_file_descriptor, - ACTIONS(9315), 2, - ts_builtin_sym_end, + ACTIONS(5387), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9654), 2, + ACTIONS(12221), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(9732), 2, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3899), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9304), 7, + ACTIONS(5385), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(9729), 8, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -243223,13 +300492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [216459] = 3, + [269323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 2, + ACTIONS(12265), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9738), 23, + ACTIONS(12267), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243239,10 +300509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -243252,14 +300520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [216492] = 3, + anon_sym_BQUOTE, + [269355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9665), 2, + ACTIONS(11739), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9667), 23, + ACTIONS(11741), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243269,7 +300537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -243283,57 +300550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [216525] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9742), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6008), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216584] = 3, + [269387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 3, + ACTIONS(11727), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9738), 22, + ACTIONS(11725), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243354,62 +300578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [216617] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9744), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5878), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216676] = 4, + [269419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 2, + ACTIONS(11727), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 20, + ACTIONS(11725), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243419,7 +300595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -243429,14 +300608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [216711] = 3, + [269451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9721), 2, + ACTIONS(12157), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9723), 23, + ACTIONS(12159), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243459,353 +300637,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [216744] = 8, + [269483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9685), 1, + ACTIONS(12157), 2, sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9336), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3910), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9290), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(12159), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(9334), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [216787] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9746), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(6009), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216846] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9748), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5998), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [216905] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9756), 1, + ACTIONS(11729), 3, sym_file_descriptor, - ACTIONS(9654), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9753), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3910), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9304), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11731), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(9750), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [216948] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9759), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5978), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [217007] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, - anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9761), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5957), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [217066] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9763), 1, - anon_sym_RPAREN_RPAREN, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5214), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [217131] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9765), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5940), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [217190] = 5, + [269547] = 3, ACTIONS(3), 1, sym_comment, - STATE(4443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, + ACTIONS(11729), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9693), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 20, + ACTIONS(11731), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -243815,6 +300715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -243823,47 +300724,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217227] = 7, + [269579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, + ACTIONS(12269), 3, sym_file_descriptor, - ACTIONS(9769), 1, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3945), 1, - sym_file_redirect, - ACTIONS(9186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9184), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9767), 12, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217268] = 3, + anon_sym_BQUOTE, + [269611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9671), 2, + ACTIONS(12219), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9673), 23, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243873,10 +300770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -243886,90 +300781,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [217301] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_BANG2, - ACTIONS(9479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9487), 1, - sym_variable_name, - ACTIONS(9771), 1, - anon_sym_RBRACE3, - STATE(2981), 1, - sym_subscript, - STATE(5089), 1, - sym_command_substitution, - STATE(5091), 1, - aux_sym__expansion_body_repeat1, - STATE(5855), 1, - sym__expansion_body, - ACTIONS(9477), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(9469), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(9471), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [217360] = 7, + [269643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9779), 1, + ACTIONS(11956), 2, sym_file_descriptor, - ACTIONS(9397), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9776), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3919), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9773), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9389), 9, + ACTIONS(11958), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217400] = 3, + anon_sym_LT_LT_LT, + [269675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9784), 2, + ACTIONS(12191), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9782), 22, + ACTIONS(12193), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243992,13 +300840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217432] = 3, + [269707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 2, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9786), 22, + ACTIONS(2094), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244008,7 +300856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -244021,50 +300868,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217464] = 10, + anon_sym_LT_LT_LT, + [269739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(11790), 3, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11792), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4305), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [217510] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [269771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(12195), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9794), 21, + ACTIONS(12197), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244074,8 +300914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244085,88 +300927,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [217542] = 18, + [269803] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12167), 1, anon_sym_LPAREN, - ACTIONS(9800), 1, + ACTIONS(12169), 1, aux_sym__c_word_token1, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - STATE(5177), 1, - sym__c_variable_assignment, - STATE(5191), 1, - sym__c_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2565), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [217604] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9202), 1, + ACTIONS(12171), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9800), 1, - aux_sym__c_word_token1, - ACTIONS(9802), 1, + ACTIONS(12173), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(12175), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12183), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2566), 1, + STATE(3442), 1, sym__c_unary_expression, - STATE(2567), 1, + STATE(3443), 1, sym__c_binary_expression, - STATE(2572), 1, + STATE(3444), 1, sym__c_postfix_expression, - STATE(5177), 1, - sym__c_variable_assignment, - STATE(5195), 1, + STATE(6671), 1, sym__c_expression, - ACTIONS(9796), 2, + STATE(6762), 1, + sym__c_variable_assignment, + ACTIONS(12165), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2565), 7, + STATE(3441), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -244174,60 +300971,116 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [217666] = 7, + [269865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9820), 1, + ACTIONS(12163), 3, sym_file_descriptor, - ACTIONS(9817), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12161), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3926), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9814), 8, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [269897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12269), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12271), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9389), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12119), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12117), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [217706] = 3, + [269961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 2, + STATE(4971), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9823), 22, + ACTIONS(12273), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -244236,13 +301089,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217738] = 3, + [269997] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6741), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 2, + ACTIONS(12119), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9823), 22, + ACTIONS(12117), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244252,10 +301150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244265,13 +301161,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217770] = 3, + anon_sym_BQUOTE, + [270091] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11810), 1, + aux_sym__c_word_token1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + STATE(6738), 1, + sym__c_expression, + STATE(6768), 1, + sym__c_variable_assignment, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3292), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12276), 1, + sym__special_character, + STATE(5021), 1, + aux_sym__literal_repeat1, + ACTIONS(5395), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5393), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [270189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9829), 2, + ACTIONS(11739), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9827), 22, + ACTIONS(11741), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244294,13 +301266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217802] = 3, + [270221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9833), 2, + ACTIONS(12265), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9831), 22, + ACTIONS(12267), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244323,13 +301295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217834] = 3, + [270253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 2, + ACTIONS(11790), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9835), 22, + ACTIONS(11792), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244352,13 +301324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217866] = 3, + [270285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9841), 2, + ACTIONS(12107), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9839), 22, + ACTIONS(12105), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244368,10 +301341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244381,102 +301352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [217898] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - aux_sym__c_word_token1, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - STATE(5229), 1, - sym__c_expression, - STATE(5443), 1, - sym__c_variable_assignment, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2826), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [217960] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5397), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [218022] = 3, + [270317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9841), 3, + ACTIONS(12129), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9839), 21, + ACTIONS(12131), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244486,8 +301369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244497,59 +301382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218054] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - aux_sym__c_word_token1, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - STATE(5380), 1, - sym__c_expression, - STATE(5446), 1, - sym__c_variable_assignment, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2743), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [218116] = 3, + [270349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 3, + ACTIONS(12125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9835), 21, + ACTIONS(12127), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244559,8 +301398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244570,14 +301411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218148] = 3, + [270381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 2, + ACTIONS(12036), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9794), 22, + ACTIONS(12034), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244587,7 +301427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -244600,14 +301439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218180] = 3, + anon_sym_LT_LT_LT, + [270413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9833), 3, + ACTIONS(12107), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9831), 21, + ACTIONS(12105), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244629,14 +301469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [218212] = 3, + [270445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9829), 3, + ACTIONS(11830), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9827), 21, + ACTIONS(11828), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244646,8 +301485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244657,30 +301498,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218244] = 5, + [270477] = 3, ACTIONS(3), 1, sym_comment, - STATE(3948), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9614), 2, + ACTIONS(12109), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9865), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9610), 19, + ACTIONS(12111), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -244689,42 +301527,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218280] = 3, + [270509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9869), 2, - sym_file_descriptor, + ACTIONS(11455), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9867), 22, + ACTIONS(12221), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11453), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [218312] = 3, + [270551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9873), 2, + ACTIONS(12139), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9871), 22, + ACTIONS(12137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244734,10 +301578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244747,13 +301589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218344] = 3, + anon_sym_BQUOTE, + [270583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9877), 2, + ACTIONS(12143), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9875), 22, + ACTIONS(12141), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244763,10 +301607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244776,13 +301618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218376] = 3, + anon_sym_BQUOTE, + [270615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9881), 2, + ACTIONS(12147), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9879), 22, + ACTIONS(12145), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244792,10 +301636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -244805,13 +301647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218408] = 3, + anon_sym_BQUOTE, + [270647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 2, + ACTIONS(5772), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(9883), 22, + ACTIONS(5770), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244821,7 +301665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -244834,13 +301677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218440] = 3, + [270679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9889), 2, + ACTIONS(12205), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9887), 22, + ACTIONS(12207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244863,29 +301706,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218472] = 5, + [270711] = 6, ACTIONS(3), 1, sym_comment, - STATE(3948), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9891), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 19, + ACTIONS(4370), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -244894,34 +301738,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218508] = 10, + [270749] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 1, + ACTIONS(5101), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(12221), 1, sym_file_descriptor, - ACTIONS(3584), 2, + ACTIONS(4253), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4226), 3, + ACTIONS(5097), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3975), 3, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -244930,14 +301774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [218554] = 3, + [270795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 3, + ACTIONS(11956), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9823), 21, + ACTIONS(11958), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -244959,27 +301803,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [218586] = 3, + [270827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9877), 2, - sym_file_descriptor, + ACTIONS(11535), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9875), 22, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(12278), 1, + sym_file_descriptor, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4877), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11554), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11533), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [270869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -244988,13 +301868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218618] = 3, + [270905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 2, + ACTIONS(4272), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9894), 22, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245004,10 +301888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245017,49 +301898,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218650] = 3, + [270939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11431), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9823), 21, + ACTIONS(12286), 1, + sym_file_descriptor, + ACTIONS(11920), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12283), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11420), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12280), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [270981] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12235), 1, + aux_sym__c_word_token1, + ACTIONS(12237), 1, + anon_sym_DQUOTE, + ACTIONS(12239), 1, + aux_sym_number_token1, + ACTIONS(12241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12245), 1, + anon_sym_BQUOTE, + ACTIONS(12247), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + STATE(6481), 1, + sym__c_expression, + STATE(6493), 1, + sym__c_variable_assignment, + ACTIONS(12231), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3119), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [271043] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11414), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(12278), 1, + sym_file_descriptor, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11554), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11412), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218682] = 7, + [271085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(11506), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9898), 1, + ACTIONS(11558), 1, + anon_sym_LT_LT_LT, + ACTIONS(12278), 1, sym_file_descriptor, - ACTIONS(9336), 2, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3926), 2, + STATE(5017), 2, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9334), 8, + sym_herestring_redirect, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -245068,7 +302034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9450), 10, + ACTIONS(11504), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245078,14 +302044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218722] = 3, + [271127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 2, + ACTIONS(12259), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4788), 22, + ACTIONS(12257), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245095,10 +302061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245108,13 +302072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218754] = 3, + anon_sym_BQUOTE, + [271159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9900), 22, + ACTIONS(12229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245137,13 +302102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218786] = 3, + [271191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9906), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9904), 22, + ACTIONS(2072), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245166,13 +302131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218818] = 3, + [271223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9910), 2, + ACTIONS(12215), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9908), 22, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245182,10 +302148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245195,13 +302159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218850] = 3, + anon_sym_BQUOTE, + [271255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9914), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9912), 22, + ACTIONS(12229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245224,43 +302189,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218882] = 3, + [271287] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5383), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9786), 21, - anon_sym_SEMI, + ACTIONS(12221), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5381), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218914] = 3, + [271333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9784), 3, + ACTIONS(11931), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9782), 21, + ACTIONS(11929), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245270,8 +302241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245281,14 +302254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [218946] = 3, + [271365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 2, + ACTIONS(12215), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4788), 22, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245298,10 +302271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245311,14 +302282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [218978] = 3, + anon_sym_BQUOTE, + [271397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9721), 3, + ACTIONS(12036), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9723), 21, + ACTIONS(12034), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245340,13 +302312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219010] = 3, + [271429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9918), 2, + ACTIONS(12259), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9916), 22, + ACTIONS(12257), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245356,10 +302329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245369,13 +302340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219042] = 3, + anon_sym_BQUOTE, + [271461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9721), 2, + ACTIONS(11956), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9723), 22, + ACTIONS(11958), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245398,13 +302370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219074] = 3, + [271493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9922), 2, + ACTIONS(12253), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9920), 22, + ACTIONS(12255), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245427,14 +302399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219106] = 3, + [271525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 3, + ACTIONS(5932), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 21, + ACTIONS(5930), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245456,13 +302428,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219138] = 3, + [271557] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12169), 1, + aux_sym__c_word_token1, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + STATE(6551), 1, + sym__c_expression, + STATE(6762), 1, + sym__c_variable_assignment, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3441), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [271619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9926), 2, + ACTIONS(12036), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9924), 22, + ACTIONS(12034), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245485,14 +302501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219170] = 3, + [271651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9881), 3, + ACTIONS(12263), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9879), 21, + ACTIONS(12261), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245514,14 +302530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219202] = 3, + [271683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 3, + ACTIONS(11727), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 21, + ACTIONS(11725), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245531,8 +302546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245542,15 +302558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [219234] = 3, + anon_sym_LT_LT_LT, + [271715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9873), 3, + ACTIONS(11729), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9871), 21, + ACTIONS(11731), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245560,8 +302575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245571,14 +302587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [219266] = 3, + anon_sym_LT_LT_LT, + [271747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9671), 2, + ACTIONS(11790), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9673), 22, + ACTIONS(11792), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245588,7 +302604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -245601,18 +302616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219298] = 5, + anon_sym_LT_LT_LT, + [271779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9928), 1, + ACTIONS(12289), 1, sym__special_character, - STATE(4040), 1, + STATE(5021), 1, aux_sym__literal_repeat1, - ACTIONS(4232), 3, + ACTIONS(1364), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4230), 19, + ACTIONS(1362), 19, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -245632,13 +302648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [219334] = 3, + [271815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9932), 2, + ACTIONS(12251), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9930), 22, + ACTIONS(12249), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245648,10 +302665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -245661,48 +302676,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219366] = 8, + anon_sym_BQUOTE, + [271847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(2096), 3, sym_file_descriptor, - ACTIONS(4018), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9374), 2, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9290), 7, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [271879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11750), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11752), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(9372), 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [271911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11830), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11828), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [219408] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [271943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 3, + ACTIONS(5932), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9883), 21, + ACTIONS(5930), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245724,14 +302793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219440] = 3, + [271975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 3, + ACTIONS(12292), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9936), 21, + ACTIONS(12294), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245753,14 +302822,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219472] = 3, + [272007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12298), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12296), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(4372), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9875), 21, + ACTIONS(4370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245782,14 +302880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219504] = 3, + [272071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9877), 3, + ACTIONS(12298), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9875), 21, + ACTIONS(12296), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245811,50 +302909,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [219536] = 10, + [272103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9402), 1, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(12300), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, sym_file_descriptor, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3663), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 19, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3665), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9224), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2534), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, + anon_sym_LT_LT_DASH, + [272141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12292), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12294), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [219582] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(12302), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9887), 21, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245864,7 +302992,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -245875,58 +303002,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [219614] = 18, - ACTIONS(71), 1, + [272211] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - aux_sym__c_word_token1, - ACTIONS(9849), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(5057), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(9851), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9853), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - STATE(5318), 1, - sym__c_expression, - STATE(5443), 1, - sym__c_variable_assignment, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2826), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [219676] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [272248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9940), 2, + ACTIONS(12147), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9938), 22, + ACTIONS(12145), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245936,7 +303049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -245949,29 +303061,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219708] = 5, + [272279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 2, + STATE(5082), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12068), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12304), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(12064), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12155), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 17, + ACTIONS(12153), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -245980,17 +303119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219744] = 4, + [272345] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12306), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [272380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 2, + ACTIONS(12151), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 19, + ACTIONS(12149), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246001,6 +303166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246010,32 +303177,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219778] = 8, + [272411] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9315), 1, + ACTIONS(2719), 1, + anon_sym_BQUOTE, + ACTIONS(5357), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9948), 1, + ACTIONS(11856), 1, sym_file_descriptor, - ACTIONS(9654), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(9945), 2, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11487), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9304), 7, + ACTIONS(5353), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(9942), 8, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -246044,14 +303212,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [219820] = 3, + [272456] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5065), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12309), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5393), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5395), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [272491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9910), 3, + ACTIONS(11739), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9908), 21, + ACTIONS(11741), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246061,8 +303258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246072,14 +303270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [219852] = 3, + [272522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9953), 2, + ACTIONS(12133), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9951), 22, + ACTIONS(12135), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246089,7 +303286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246102,14 +303298,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219884] = 3, + [272553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [272584] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12309), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5389), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5391), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [272619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9671), 3, + ACTIONS(5932), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9673), 21, + ACTIONS(5930), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246119,8 +303372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246130,14 +303384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [219916] = 3, + [272650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 2, + ACTIONS(12143), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 22, + ACTIONS(12141), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246147,7 +303400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246160,90 +303412,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219948] = 7, + [272681] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(5057), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12313), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12311), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [272718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9585), 1, + ACTIONS(11931), 2, sym_file_descriptor, - ACTIONS(9712), 1, aux_sym_heredoc_redirect_token1, - STATE(3966), 1, - sym_file_redirect, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9222), 8, + ACTIONS(11929), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9710), 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11956), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11958), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [219988] = 18, - ACTIONS(71), 1, + [272780] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - aux_sym__c_word_token1, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - STATE(5234), 1, - sym__c_expression, - STATE(5443), 1, - sym__c_variable_assignment, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2826), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [220050] = 3, + ACTIONS(2719), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11993), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4378), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [272825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 2, + ACTIONS(12259), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 22, + ACTIONS(12257), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246253,7 +303550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246266,14 +303562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220082] = 3, + [272856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9914), 3, + ACTIONS(11790), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9912), 21, + ACTIONS(11792), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246283,8 +303578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246294,115 +303590,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220114] = 18, - ACTIONS(71), 1, + [272887] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - aux_sym__c_word_token1, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - STATE(5443), 1, - sym__c_variable_assignment, - STATE(5451), 1, - sym__c_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2826), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [220176] = 18, - ACTIONS(71), 1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4411), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11993), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4809), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4409), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [272932] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - aux_sym__c_word_token1, - ACTIONS(9849), 1, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(12315), 1, + sym__concat, + STATE(4520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(9851), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9853), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - STATE(5443), 1, - sym__c_variable_assignment, - STATE(5447), 1, - sym__c_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2826), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [220238] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [272969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9922), 3, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9920), 21, - anon_sym_SEMI, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -246411,26 +303688,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [273008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(12319), 1, + sym__concat, + STATE(4520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [220270] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9906), 3, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4348), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9904), 21, - anon_sym_SEMI, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4253), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246440,81 +303750,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [273082] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12309), 1, + aux_sym_concatenation_token1, + ACTIONS(12321), 1, + sym__concat, + STATE(5038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [220302] = 7, + sym_word, + ACTIONS(1288), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [273119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9585), 1, + ACTIONS(12139), 2, sym_file_descriptor, - ACTIONS(9769), 1, aux_sym_heredoc_redirect_token1, - STATE(3945), 1, - sym_file_redirect, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9222), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9767), 11, + ACTIONS(12137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [220342] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9585), 1, - sym_file_descriptor, - ACTIONS(9706), 1, - aux_sym_heredoc_redirect_token1, - STATE(3929), 1, - sym_file_redirect, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9222), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9704), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220382] = 3, + [273150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9955), 3, + ACTIONS(12215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9957), 21, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246524,8 +303825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246535,14 +303837,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [273181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11568), 1, + aux_sym_concatenation_token1, + ACTIONS(11583), 1, + sym__concat, + STATE(5055), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12325), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12323), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [220414] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 22, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246552,7 +303884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246565,13 +303896,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220446] = 3, + [273249] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 8, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1263), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [273284] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12309), 1, + aux_sym_concatenation_token1, + ACTIONS(12329), 1, + sym__concat, + STATE(5038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1267), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [273321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 2, + ACTIONS(12209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 22, + ACTIONS(12211), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246581,7 +303973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246594,13 +303985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220478] = 3, + [273352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 2, + ACTIONS(12107), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9959), 22, + ACTIONS(12105), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246610,7 +304001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246623,14 +304013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220510] = 3, + [273383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9963), 3, + ACTIONS(12107), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9965), 21, + ACTIONS(12105), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246640,8 +304029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246651,15 +304041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220542] = 3, + [273414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 3, + ACTIONS(12103), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9894), 21, + ACTIONS(12101), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246669,8 +304057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246680,21 +304069,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220574] = 7, + [273445] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(4257), 1, + anon_sym_BQUOTE, + ACTIONS(5379), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9967), 1, + ACTIONS(11856), 1, sym_file_descriptor, - ACTIONS(9328), 2, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5355), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11487), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4052), 2, + ACTIONS(5377), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4697), 3, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9326), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -246703,25 +304104,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9450), 10, + [273490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5932), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5930), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220614] = 3, + [273521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(12119), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9971), 21, + ACTIONS(12117), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246731,8 +304148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246742,15 +304160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220646] = 3, + [273552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 3, + ACTIONS(12121), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9959), 21, + ACTIONS(12123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246760,8 +304176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246771,15 +304188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220678] = 3, + [273583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9973), 3, + ACTIONS(12036), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9975), 21, + ACTIONS(12034), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246789,8 +304204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246800,51 +304216,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220710] = 10, + [273614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(12113), 2, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12115), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4126), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [220756] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [273645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 3, + ACTIONS(12129), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9979), 21, + ACTIONS(12131), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246854,8 +304260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246865,15 +304272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220788] = 3, + [273676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 3, + ACTIONS(12119), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9979), 21, + ACTIONS(12117), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246883,8 +304288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -246894,14 +304300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220820] = 3, + [273707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 2, + ACTIONS(12125), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9936), 22, + ACTIONS(12127), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246911,7 +304316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246924,13 +304328,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220852] = 3, + [273738] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + ts_builtin_sym_end, + ACTIONS(4694), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11834), 1, + sym_file_descriptor, + ACTIONS(4690), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4688), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [273783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9955), 2, + ACTIONS(12163), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9957), 22, + ACTIONS(12161), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -246940,7 +304379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -246953,30 +304391,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220884] = 6, + [273814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9981), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + STATE(5081), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 19, + ACTIONS(12331), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -246985,18 +304420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220922] = 3, + anon_sym_BQUOTE, + [273849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9983), 3, + STATE(5082), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9985), 21, + ACTIONS(12334), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -247004,7 +304443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -247013,20 +304451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [220954] = 6, + [273884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9987), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(12219), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 19, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247037,6 +304468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247046,14 +304479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [220992] = 3, + [273915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(12109), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9985), 21, + ACTIONS(12111), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247063,8 +304495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247074,15 +304507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221024] = 3, + [273946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 3, + ACTIONS(12227), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 21, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247092,8 +304523,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247103,15 +304535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221056] = 3, + [273977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9989), 3, + ACTIONS(4554), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9991), 21, + ACTIONS(4552), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247121,8 +304551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247132,14 +304563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221088] = 3, + [274008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9963), 2, + ACTIONS(12199), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9965), 22, + ACTIONS(12201), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247149,7 +304579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247162,13 +304591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221120] = 3, + [274039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9969), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9971), 22, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247178,7 +304607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247191,13 +304619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221152] = 3, + [274070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9973), 2, + ACTIONS(12253), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9975), 22, + ACTIONS(12255), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247207,7 +304635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247220,50 +304647,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221184] = 10, + [274101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9402), 1, + ACTIONS(12191), 2, sym_file_descriptor, - ACTIONS(3597), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3665), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12193), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3759), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3640), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [221230] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9918), 3, + ACTIONS(11727), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9916), 21, + ACTIONS(11725), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247273,8 +304691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247284,20 +304703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221262] = 6, + [274163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + ACTIONS(11729), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 19, + ACTIONS(11731), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247308,6 +304720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247317,19 +304731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221300] = 6, + [274194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, + ACTIONS(12269), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 19, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247340,6 +304748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247349,19 +304759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221338] = 6, + [274225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, + ACTIONS(11830), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 19, + ACTIONS(11828), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247372,6 +304776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247381,30 +304787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221376] = 6, + [274256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, + STATE(5115), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12337), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12068), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 19, + ACTIONS(12064), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -247413,19 +304817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221414] = 6, + [274291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 19, + ACTIONS(2094), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247436,6 +304834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247445,19 +304845,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221452] = 6, - ACTIONS(3), 1, + [274322] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4018), 1, + STATE(5065), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(12309), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [274357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12199), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 19, + ACTIONS(12201), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247468,6 +304892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247477,14 +304903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221490] = 3, + [274388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9926), 3, + ACTIONS(12225), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9924), 21, + ACTIONS(12223), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247494,8 +304919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247505,20 +304931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221522] = 6, + [274419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + ACTIONS(12225), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 19, + ACTIONS(12223), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247529,6 +304948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247538,13 +304959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221560] = 3, + [274450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 2, + ACTIONS(12187), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9900), 22, + ACTIONS(12189), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247554,7 +304975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247567,30 +304987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221592] = 6, + [274481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, + STATE(5081), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12068), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 19, + ACTIONS(12339), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12064), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -247599,13 +305016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221630] = 3, + anon_sym_BQUOTE, + [274516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 2, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9979), 22, + ACTIONS(12249), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247615,7 +305033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247628,13 +305045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221662] = 3, + [274547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 2, + ACTIONS(12195), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9979), 22, + ACTIONS(12197), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247644,7 +305061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247657,14 +305073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221694] = 3, + [274578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 3, + ACTIONS(12259), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4788), 21, + ACTIONS(12257), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247674,8 +305089,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247685,46 +305101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9993), 1, - sym__special_character, - STATE(4040), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [221762] = 3, + [274609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 3, + ACTIONS(4372), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4788), 21, + ACTIONS(4370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247734,8 +305117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247745,15 +305129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221794] = 3, + [274640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9869), 3, + ACTIONS(12292), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9867), 21, + ACTIONS(12294), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247763,8 +305145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247774,35 +305157,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221826] = 10, + [274671] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(2721), 1, + ts_builtin_sym_end, + ACTIONS(5051), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(11834), 1, sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ACTIONS(4690), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11481), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4071), 3, + ACTIONS(5049), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3975), 3, + STATE(4650), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(11479), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -247811,25 +305192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [221872] = 3, + [274716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 21, - anon_sym_SEMI, + ACTIONS(1261), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247839,27 +305221,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [221904] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [274753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9983), 2, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(5209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(9985), 22, - anon_sym_SEMI, + ACTIONS(1261), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247869,46 +305253,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221936] = 7, + sym__special_character, + [274790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9996), 1, + ACTIONS(12265), 2, sym_file_descriptor, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9452), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(3919), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9296), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9450), 9, + ACTIONS(12267), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [221976] = 3, + [274821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9989), 2, + ACTIONS(12157), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9991), 22, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247918,7 +305298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247931,14 +305310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222008] = 3, + [274852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 3, + ACTIONS(12263), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9900), 21, + ACTIONS(12261), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247948,8 +305326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -247959,14 +305338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222040] = 3, + [274883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9983), 2, + ACTIONS(2074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9985), 22, + ACTIONS(2072), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -247976,7 +305354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -247989,26 +305366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222072] = 3, + [274914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9953), 3, + STATE(5115), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12341), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11748), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9951), 21, + ACTIONS(11743), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -248017,14 +305396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222104] = 3, + [274949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10000), 2, + ACTIONS(12205), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(9998), 22, + ACTIONS(12207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -248034,7 +305412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -248047,20 +305424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222136] = 7, + [274980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, + ACTIONS(5944), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10008), 1, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + ACTIONS(12348), 1, sym_file_descriptor, - ACTIONS(10005), 2, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12346), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4052), 2, + STATE(5366), 3, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10002), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -248069,24 +305460,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9389), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [275027] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + ACTIONS(12348), 1, + sym_file_descriptor, + STATE(4912), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - [222176] = 3, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [275074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10013), 2, + ACTIONS(12298), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(10011), 22, + ACTIONS(12296), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -248096,7 +305512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -248109,14 +305524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222208] = 3, + [275105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 3, + ACTIONS(12157), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9900), 21, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -248126,8 +305540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248137,84 +305552,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [275136] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12354), 1, + anon_sym_esac, + ACTIONS(12350), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12352), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [222240] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10013), 2, - sym_file_descriptor, + ACTIONS(5101), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10011), 22, - anon_sym_SEMI, + ACTIONS(12221), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11556), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5097), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [222272] = 3, - ACTIONS(3), 1, + [275210] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9940), 3, + ACTIONS(1292), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275240] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4469), 12, sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9938), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [275274] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12360), 1, + anon_sym_esac, + ACTIONS(12356), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12358), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275306] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12366), 1, + anon_sym_esac, + ACTIONS(12362), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12364), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275338] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4566), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222304] = 3, + anon_sym_LT_LT_LT, + [275372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9932), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5208), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9930), 21, - anon_sym_SEMI, + ACTIONS(4552), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248224,26 +305783,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222336] = 3, + anon_sym_LT_LT_LT, + [275408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10000), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(9998), 21, - anon_sym_SEMI, + ACTIONS(4564), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248253,26 +305813,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222368] = 3, + anon_sym_LT_LT_LT, + [275444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10013), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5208), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10011), 21, - anon_sym_SEMI, + ACTIONS(4370), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248282,26 +305843,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222400] = 3, + anon_sym_LT_LT_LT, + [275480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10013), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10011), 21, - anon_sym_SEMI, + ACTIONS(4467), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248311,26 +305873,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [275516] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12372), 1, + anon_sym_esac, + ACTIONS(12368), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12370), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [222432] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10015), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5208), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10017), 21, - anon_sym_SEMI, + ACTIONS(2072), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248340,26 +305931,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222464] = 3, + anon_sym_LT_LT_LT, + [275584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10015), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10017), 21, - anon_sym_SEMI, + ACTIONS(5695), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248369,26 +305961,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222496] = 3, + anon_sym_LT_LT_LT, + [275620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10019), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5208), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10021), 21, - anon_sym_SEMI, + ACTIONS(2094), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248398,26 +305991,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222528] = 3, + anon_sym_LT_LT_LT, + [275656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 3, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(11514), 1, + sym__concat, + STATE(5207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(10025), 21, - anon_sym_SEMI, + ACTIONS(5721), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248427,26 +306021,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222560] = 3, + anon_sym_LT_LT_LT, + [275692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 3, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(5210), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5375), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(10025), 21, - anon_sym_SEMI, + ACTIONS(5373), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248456,27 +306052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [222592] = 3, + [275728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10015), 2, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(11502), 1, + sym__concat, + STATE(5209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5069), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(10017), 22, - anon_sym_SEMI, + ACTIONS(5067), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248486,84 +306082,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222624] = 3, - ACTIONS(3), 1, + [275764] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(10015), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10017), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12366), 1, + anon_sym_esac, + ACTIONS(12362), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12364), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275796] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4554), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222656] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [275830] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12354), 1, + anon_sym_esac, + ACTIONS(12350), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12352), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275862] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12374), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3276), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [275918] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12380), 1, + anon_sym_esac, + ACTIONS(12376), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12378), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275950] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12380), 1, + anon_sym_esac, + ACTIONS(12376), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12378), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275982] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12372), 1, + anon_sym_esac, + ACTIONS(12368), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12370), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276014] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(10019), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10021), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(12386), 1, anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [222688] = 3, + ACTIONS(12382), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12384), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 2, + ACTIONS(12388), 1, + sym_variable_name, + STATE(6746), 1, + sym_subscript, + ACTIONS(11290), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(10025), 22, - anon_sym_SEMI, + STATE(5147), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248573,26 +306349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222720] = 3, + [276082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 2, + ACTIONS(12391), 1, + sym_variable_name, + STATE(6746), 1, + sym_subscript, + ACTIONS(11329), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(10025), 22, - anon_sym_SEMI, + STATE(5147), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -248602,28 +306379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [222752] = 5, + [276118] = 3, ACTIONS(71), 1, sym_comment, - STATE(4102), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10027), 2, + ACTIONS(1316), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 16, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1220), 6, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276148] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 14, + ACTIONS(1322), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -248632,258 +306433,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [222787] = 3, - ACTIONS(3), 1, + [276178] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(1328), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 16, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 20, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276208] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 6, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [222818] = 7, - ACTIONS(3), 1, + [276238] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9712), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9898), 1, - sym_file_descriptor, - STATE(3997), 1, - sym_file_redirect, - ACTIONS(9336), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9334), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9710), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, + ACTIONS(1352), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [222857] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9996), 1, - sym_file_descriptor, - STATE(3997), 1, - sym_file_redirect, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9712), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9296), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9710), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [222896] = 10, - ACTIONS(3), 1, + sym_word, + ACTIONS(1354), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276268] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(1356), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(4242), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9685), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9336), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4238), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [222941] = 10, - ACTIONS(3), 1, + sym_word, + ACTIONS(1358), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276298] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(1332), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(4316), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9685), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4240), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9336), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3907), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [222986] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, + sym_word, + ACTIONS(1334), 16, sym__concat, - STATE(4080), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10031), 3, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(10029), 17, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276328] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 6, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [223023] = 6, - ACTIONS(3), 1, + [276358] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9421), 1, + ACTIONS(1312), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(10033), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276388] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 16, sym__concat, - STATE(3691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 17, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276418] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 6, anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276448] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 6, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276478] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [276508] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12397), 1, + anon_sym_esac, + ACTIONS(12393), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [223060] = 11, + ACTIONS(12395), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, + ACTIONS(5387), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10039), 1, - anon_sym_LT_LT_LT, - ACTIONS(10041), 1, + ACTIONS(12221), 1, sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, + ACTIONS(5099), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10037), 2, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4228), 3, + ACTIONS(5385), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -248892,153 +306791,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [223107] = 6, - ACTIONS(3), 1, + [276582] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(10043), 1, - sym__concat, - STATE(3691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, + ACTIONS(12403), 1, + anon_sym_esac, + ACTIONS(12399), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12401), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [223144] = 6, - ACTIONS(3), 1, + [276614] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, + ACTIONS(1300), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 16, sym__concat, - STATE(4078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 17, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [223181] = 6, - ACTIONS(3), 1, + [276644] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(9421), 1, - aux_sym_concatenation_token1, - ACTIONS(9443), 1, - sym__concat, - STATE(4078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10047), 3, + ACTIONS(12409), 1, + anon_sym_esac, + ACTIONS(12405), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12407), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(10045), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [223218] = 7, - ACTIONS(3), 1, + [276676] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(9996), 1, + ACTIONS(12417), 1, + anon_sym_LT_LT_LT, + ACTIONS(12419), 1, sym_file_descriptor, - STATE(3969), 1, - sym_file_redirect, - ACTIONS(9298), 2, + ACTIONS(11357), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12415), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(9769), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9296), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(12413), 3, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9767), 9, - anon_sym_SEMI, + STATE(5205), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11363), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_LT_LT_DASH, - [223257] = 5, + ACTIONS(12411), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [276718] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12421), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3454), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276774] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12427), 1, + anon_sym_esac, + ACTIONS(12423), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12425), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276806] = 5, ACTIONS(71), 1, sym_comment, - STATE(4102), 1, + STATE(5175), 1, aux_sym_concatenation_repeat1, - ACTIONS(10027), 2, + ACTIONS(12327), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4230), 6, + ACTIONS(5721), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5723), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [276840] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4232), 14, + ACTIONS(1298), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -249047,88 +307031,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [223292] = 7, - ACTIONS(3), 1, + [276870] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(9706), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9898), 1, - sym_file_descriptor, - STATE(3940), 1, - sym_file_redirect, - ACTIONS(9336), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9334), 8, + ACTIONS(12433), 1, + anon_sym_esac, + ACTIONS(12429), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12431), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276902] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9704), 10, - anon_sym_SEMI, + ACTIONS(4372), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [223331] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10039), 1, anon_sym_LT_LT_LT, - ACTIONS(10041), 1, - sym_file_descriptor, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, + [276936] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 8, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1263), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10037), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, + anon_sym_LT_LT_DASH, + [276970] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12327), 1, + aux_sym_concatenation_token1, + ACTIONS(12437), 1, + sym__concat, + STATE(5188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1267), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [223378] = 7, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [277006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(11363), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10049), 1, + ACTIONS(12443), 1, + anon_sym_LT_LT_LT, + ACTIONS(12445), 1, sym_file_descriptor, - ACTIONS(9374), 2, + ACTIONS(12441), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4090), 2, + STATE(5181), 3, sym_file_redirect, + sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(9372), 8, + ACTIONS(11357), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12439), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -249137,36 +307179,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9450), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [223417] = 5, + [277046] = 4, ACTIONS(71), 1, sym_comment, - STATE(4098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10027), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4234), 6, + ACTIONS(12451), 1, + anon_sym_esac, + ACTIONS(12447), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4236), 14, + ACTIONS(12449), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -249174,119 +307203,122 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [223452] = 10, - ACTIONS(3), 1, + [277078] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(4045), 1, - ts_builtin_sym_end, - ACTIONS(4049), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9517), 1, - sym_file_descriptor, - ACTIONS(4016), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4047), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, + STATE(5180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2072), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [223497] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10057), 1, + ACTIONS(2074), 12, sym_file_descriptor, - ACTIONS(10054), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4090), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10051), 8, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [277112] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5695), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9389), 9, - anon_sym_SEMI, + ACTIONS(5697), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [223536] = 5, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [277146] = 6, + ACTIONS(71), 1, sym_comment, - STATE(4091), 1, - aux_sym_pipeline_repeat1, - ACTIONS(10060), 2, + ACTIONS(12327), 1, + aux_sym_concatenation_token1, + ACTIONS(12453), 1, + sym__concat, + STATE(5188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9689), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9691), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1288), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [223571] = 7, + anon_sym_LT_LT_LT, + [277182] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9706), 1, + ACTIONS(11315), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9967), 1, + ACTIONS(12461), 1, + anon_sym_LT_LT_LT, + ACTIONS(12464), 1, sym_file_descriptor, - STATE(3940), 1, - sym_file_redirect, - ACTIONS(9328), 2, + ACTIONS(12458), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(9326), 8, + STATE(5181), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11307), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12455), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -249295,171 +307327,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9704), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [223610] = 5, - ACTIONS(3), 1, + [277222] = 5, + ACTIONS(71), 1, sym_comment, - STATE(4093), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10063), 2, + STATE(5180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12327), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2096), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [223645] = 7, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [277256] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(9996), 1, - sym_file_descriptor, - STATE(3940), 1, + ACTIONS(12471), 1, + anon_sym_esac, + ACTIONS(12467), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12469), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277288] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(12473), 1, + anon_sym_LT_LT_LT, + STATE(5679), 1, + sym_herestring_redirect, + STATE(5436), 3, sym_file_redirect, - ACTIONS(9298), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9706), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9296), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9704), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [223684] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9521), 1, + ACTIONS(4272), 9, sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9328), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3663), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, + anon_sym_LT_LT_DASH, + [277328] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12475), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3405), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277384] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12477), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3404), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277440] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12479), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3403), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277496] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12481), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [223729] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4106), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9614), 2, + ACTIONS(1253), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10066), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9610), 18, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [223764] = 10, + anon_sym_LT_LT_LT, + [277530] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - ts_builtin_sym_end, - ACTIONS(4020), 1, + ACTIONS(5383), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(9517), 1, + ACTIONS(12221), 1, sym_file_descriptor, - ACTIONS(4016), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(9298), 2, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4014), 3, + ACTIONS(5381), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(3806), 3, + STATE(4986), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 8, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -249468,27 +307598,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [223809] = 6, + [277572] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10027), 1, - aux_sym_concatenation_token1, - ACTIONS(10068), 1, - sym__concat, - STATE(4100), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 6, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12484), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3402), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277628] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12486), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3399), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277684] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, aux_sym_number_token1, + ACTIONS(12177), 1, aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12488), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3395), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277740] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12494), 1, + anon_sym_esac, + ACTIONS(12490), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1210), 14, + ACTIONS(12492), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -249496,63 +307742,253 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [223846] = 7, - ACTIONS(3), 1, + [277772] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(9769), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9898), 1, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12496), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3394), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277828] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12504), 1, + anon_sym_LT_LT_LT, + ACTIONS(12506), 1, sym_file_descriptor, - STATE(3969), 1, - sym_file_redirect, - ACTIONS(9336), 2, + STATE(5556), 1, + sym_herestring_redirect, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(9334), 8, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9767), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, + [277878] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, anon_sym_BQUOTE, - [223885] = 5, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12508), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3392), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277934] = 16, ACTIONS(71), 1, sym_comment, - STATE(4100), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10070), 2, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12510), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3390), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277990] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12512), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3387), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278046] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 16, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1198), 6, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278076] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1200), 14, + ACTIONS(1326), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -249561,64 +307997,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [223920] = 10, - ACTIONS(3), 1, + [278106] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9521), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4024), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3759), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3753), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [223965] = 6, + ACTIONS(12471), 1, + anon_sym_esac, + ACTIONS(12467), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12469), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278138] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10027), 1, - aux_sym_concatenation_token1, - ACTIONS(10073), 1, - sym__concat, - STATE(4100), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 6, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12514), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3384), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278194] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_LPAREN, + ACTIONS(12171), 1, + anon_sym_DOLLAR, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_number_token1, + ACTIONS(12177), 1, + aux_sym_number_token2, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12516), 1, + aux_sym__c_word_token1, + STATE(3442), 1, + sym__c_unary_expression, + STATE(3443), 1, + sym__c_binary_expression, + STATE(3444), 1, + sym__c_postfix_expression, + ACTIONS(12165), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3381), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278250] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1216), 14, + ACTIONS(1350), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -249627,90 +308132,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [224002] = 5, - ACTIONS(3), 1, + [278280] = 9, + ACTIONS(71), 1, sym_comment, - STATE(4093), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9614), 2, + ACTIONS(12527), 1, + anon_sym_LT_LT_LT, + ACTIONS(12530), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10075), 2, + ACTIONS(11307), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9610), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, + ACTIONS(12524), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12521), 3, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [224037] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4091), 1, - aux_sym_pipeline_repeat1, - ACTIONS(10077), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9614), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(9610), 17, - anon_sym_SEMI, + STATE(5205), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11315), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(12518), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [224072] = 7, + [278322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10039), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 14, + ACTIONS(1261), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -249719,27 +308194,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [224111] = 5, + sym__special_character, + [278358] = 6, ACTIONS(3), 1, sym_comment, - STATE(4106), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(12533), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(10079), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 18, - anon_sym_SEMI, + ACTIONS(1265), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -249748,22 +308224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [224146] = 6, + anon_sym_LT_LT_LT, + [278394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10039), 1, - anon_sym_LT_LT_LT, - STATE(4009), 1, - sym_herestring_redirect, - ACTIONS(3636), 2, + ACTIONS(11512), 1, + aux_sym_concatenation_token1, + ACTIONS(12535), 1, + sym__concat, + STATE(4253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 16, + ACTIONS(1286), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -249780,84 +308254,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [224183] = 7, + anon_sym_LT_LT_LT, + [278430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9712), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9967), 1, + ACTIONS(11500), 1, + aux_sym_concatenation_token1, + ACTIONS(12537), 1, + sym__concat, + STATE(4244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 3, sym_file_descriptor, - STATE(3997), 1, - sym_file_redirect, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9326), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9710), 10, - anon_sym_SEMI, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [224222] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9769), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9967), 1, - sym_file_descriptor, - STATE(3969), 1, - sym_file_redirect, - ACTIONS(9328), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9326), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9767), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [224261] = 6, + [278466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11500), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(12539), 1, sym__concat, - STATE(4155), 1, + STATE(4244), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 3, + ACTIONS(1288), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 17, + ACTIONS(1286), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -249874,83 +308315,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [224298] = 3, - ACTIONS(71), 1, + [278502] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 6, - anon_sym_DOLLAR, + ACTIONS(7793), 1, aux_sym_number_token1, + ACTIONS(7795), 1, aux_sym_number_token2, + ACTIONS(12543), 1, + anon_sym_LPAREN, + ACTIONS(12545), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12549), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12553), 1, + anon_sym_RBRACE3, + ACTIONS(12555), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12557), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1200), 16, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12561), 1, + aux_sym__simple_variable_name_token1, + STATE(5460), 1, + sym_simple_expansion, + STATE(6264), 1, + sym_number, + STATE(6267), 1, + sym_expansion, + STATE(6268), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + STATE(7025), 1, + sym_parenthesized_expression, + STATE(7026), 1, + sym_arithmetic_expansion, + STATE(7027), 1, + sym_command_substitution, + ACTIONS(12541), 2, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + [278570] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(12543), 1, + anon_sym_LPAREN, + ACTIONS(12547), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12549), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12555), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12557), 1, + anon_sym_BQUOTE, + ACTIONS(12559), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [224328] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4947), 1, - anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10088), 1, - anon_sym_LT_LT_LT, - ACTIONS(10090), 1, - sym_file_descriptor, - STATE(4444), 1, - sym_herestring_redirect, - ACTIONS(4945), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [224378] = 6, + ACTIONS(12563), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12565), 1, + anon_sym_RBRACE3, + ACTIONS(12567), 1, + aux_sym__simple_variable_name_token1, + STATE(5458), 1, + sym_simple_expansion, + STATE(6256), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + ACTIONS(12541), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6344), 2, + sym_number, + sym_expansion, + STATE(6977), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [278632] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(12473), 1, anon_sym_LT_LT_LT, - STATE(4519), 1, + STATE(5679), 1, sym_herestring_redirect, - STATE(4326), 3, + STATE(5436), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3584), 7, + ACTIONS(4253), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -249958,7 +308423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3636), 10, + ACTIONS(4348), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249969,47 +308434,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [224414] = 4, + [278668] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10098), 1, - anon_sym_esac, - ACTIONS(10094), 6, + ACTIONS(11808), 1, anon_sym_LPAREN, + ACTIONS(11812), 1, anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, aux_sym_number_token1, + ACTIONS(11818), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10096), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [224446] = 4, + ACTIONS(12569), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3217), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278724] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10104), 1, + ACTIONS(12360), 1, anon_sym_esac, - ACTIONS(10100), 6, + ACTIONS(12356), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10102), 15, + ACTIONS(12358), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -250025,67 +308502,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [224478] = 4, + [278756] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5216), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12571), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [278790] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10110), 1, - anon_sym_esac, - ACTIONS(10106), 6, + ACTIONS(11808), 1, anon_sym_LPAREN, + ACTIONS(11812), 1, anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, aux_sym_number_token1, + ACTIONS(11818), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10108), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [224510] = 16, + ACTIONS(12574), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3218), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278846] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(11808), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(11816), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10112), 1, + ACTIONS(12576), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3285), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2541), 7, + STATE(3216), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250093,95 +308611,188 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224566] = 4, + [278902] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10118), 1, - anon_sym_esac, - ACTIONS(10114), 6, + ACTIONS(11808), 1, anon_sym_LPAREN, + ACTIONS(11812), 1, anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, aux_sym_number_token1, + ACTIONS(11818), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10116), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [224598] = 4, + ACTIONS(12578), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3214), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278958] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10124), 1, - anon_sym_esac, - ACTIONS(10120), 6, + ACTIONS(11808), 1, anon_sym_LPAREN, + ACTIONS(11812), 1, anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, aux_sym_number_token1, + ACTIONS(11818), 1, aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10122), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12580), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3207), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279014] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12582), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1263), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, + [279048] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, anon_sym_BQUOTE, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [224630] = 16, + ACTIONS(12584), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3205), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279104] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(11808), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11812), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11814), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(11816), 1, aux_sym_number_token1, - ACTIONS(9503), 1, + ACTIONS(11818), 1, aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10126), 1, + ACTIONS(12586), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3285), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3286), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3290), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(11806), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2637), 7, + STATE(3202), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250189,39 +308800,108 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224686] = 16, + [279160] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5216), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12068), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12064), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [279194] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(11808), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11812), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11814), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(11816), 1, aux_sym_number_token1, - ACTIONS(9503), 1, + ACTIONS(11818), 1, aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10128), 1, + ACTIONS(12590), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3201), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279250] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_DOLLAR, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, + anon_sym_DQUOTE, + ACTIONS(12239), 1, + aux_sym_number_token1, + ACTIONS(12241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12245), 1, + anon_sym_BQUOTE, + ACTIONS(12247), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12592), 1, + aux_sym__c_word_token1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2674), 7, + STATE(3075), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250229,19 +308909,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224742] = 4, + [279306] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10110), 1, + ACTIONS(12494), 1, anon_sym_esac, - ACTIONS(10106), 6, + ACTIONS(12490), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10108), 15, + ACTIONS(12492), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -250257,39 +308937,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [224774] = 16, + [279338] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11812), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12594), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279394] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11808), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(11816), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10130), 1, + ACTIONS(12596), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3285), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2518), 7, + STATE(3199), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250297,68 +309017,79 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224830] = 5, + [279450] = 16, ACTIONS(71), 1, sym_comment, - STATE(4299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1222), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [224864] = 16, + ACTIONS(11808), 1, + anon_sym_LPAREN, + ACTIONS(11812), 1, + anon_sym_DOLLAR, + ACTIONS(11814), 1, + anon_sym_DQUOTE, + ACTIONS(11816), 1, + aux_sym_number_token1, + ACTIONS(11818), 1, + aux_sym_number_token2, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12598), 1, + aux_sym__c_word_token1, + STATE(3285), 1, + sym__c_postfix_expression, + STATE(3286), 1, + sym__c_binary_expression, + STATE(3290), 1, + sym__c_unary_expression, + ACTIONS(11806), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3198), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279506] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(11808), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11812), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11814), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(11816), 1, aux_sym_number_token1, - ACTIONS(9503), 1, + ACTIONS(11818), 1, aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10134), 1, + ACTIONS(12600), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3285), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3286), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3290), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(11806), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2641), 7, + STATE(3196), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250366,39 +309097,82 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224920] = 16, - ACTIONS(71), 1, + [279562] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(12543), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(12547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12549), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12555), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12557), 1, + anon_sym_BQUOTE, + ACTIONS(12559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12602), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12604), 1, + anon_sym_RBRACE3, + ACTIONS(12606), 1, + aux_sym__simple_variable_name_token1, + STATE(5429), 1, + sym_simple_expansion, + STATE(6266), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + ACTIONS(12541), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6260), 2, + sym_number, + sym_expansion, + STATE(6798), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [279624] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10136), 1, + ACTIONS(12608), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2642), 7, + STATE(2948), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250406,39 +309180,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224976] = 16, + [279680] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10138), 1, + ACTIONS(12610), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2643), 7, + STATE(3005), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250446,39 +309220,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225032] = 16, + [279736] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10140), 1, + ACTIONS(12612), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3113), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2519), 7, + STATE(2999), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250486,66 +309260,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225088] = 3, + [279792] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 6, + ACTIONS(11256), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11262), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [225118] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10142), 1, + ACTIONS(12614), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2644), 7, + STATE(2993), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250553,39 +309300,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225174] = 16, + [279848] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10144), 1, + ACTIONS(12616), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2655), 7, + STATE(2992), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250593,39 +309340,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225230] = 16, + [279904] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(11262), 1, + aux_sym_number_token2, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(12618), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2656), 7, + STATE(2991), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250633,69 +309380,55 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225286] = 3, + [279960] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 6, + ACTIONS(11256), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11262), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(12233), 1, + anon_sym_LPAREN, + ACTIONS(12237), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [225316] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 6, - anon_sym_DOLLAR, + ACTIONS(12239), 1, aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(12241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12245), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1242), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [225346] = 5, + ACTIONS(12620), 1, + aux_sym__c_word_token1, + STATE(3113), 1, + sym__c_postfix_expression, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + ACTIONS(12231), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3019), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [280016] = 5, ACTIONS(71), 1, sym_comment, - STATE(4234), 1, + STATE(5270), 1, aux_sym_concatenation_repeat1, - ACTIONS(10148), 2, + ACTIONS(12622), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1220), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -250703,9 +309436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1222), 12, + ACTIONS(1263), 12, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -250715,80 +309447,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - [225380] = 16, + [280050] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10150), 1, - aux_sym__c_word_token1, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2657), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [225436] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10152), 1, + ACTIONS(12624), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2660), 7, + STATE(2965), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250796,67 +309489,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225492] = 4, + [280106] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10158), 1, - anon_sym_esac, - ACTIONS(10154), 6, - anon_sym_LPAREN, + ACTIONS(11256), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11262), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10156), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [225524] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9501), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9511), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10160), 1, + ACTIONS(12626), 1, aux_sym__c_word_token1, - STATE(2720), 1, + STATE(3113), 1, sym__c_postfix_expression, - STATE(2722), 1, + STATE(3116), 1, sym__c_binary_expression, - STATE(2731), 1, + STATE(3118), 1, sym__c_unary_expression, - ACTIONS(9491), 2, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2661), 7, + STATE(2956), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250864,39 +309529,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225580] = 16, + [280162] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(12628), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3113), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2525), 7, + STATE(2952), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250904,39 +309569,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225636] = 16, + [280218] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10164), 1, + ACTIONS(12630), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3113), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2528), 7, + STATE(3036), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -250944,47 +309609,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225692] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10170), 1, - anon_sym_esac, - ACTIONS(10166), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10168), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [225724] = 4, + [280274] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10176), 1, + ACTIONS(12636), 1, anon_sym_esac, - ACTIONS(10172), 6, + ACTIONS(12632), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10174), 15, + ACTIONS(12634), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251000,39 +309637,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [225756] = 16, + [280306] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(11262), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12233), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, + ACTIONS(12237), 1, anon_sym_DQUOTE, - ACTIONS(9804), 1, + ACTIONS(12239), 1, aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12243), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10178), 1, + ACTIONS(12638), 1, aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, + STATE(3113), 1, sym__c_postfix_expression, - ACTIONS(9796), 2, + STATE(3116), 1, + sym__c_binary_expression, + STATE(3118), 1, + sym__c_unary_expression, + ACTIONS(12231), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2438), 7, + STATE(2947), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -251040,19 +309677,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225812] = 4, + [280362] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(12644), 1, anon_sym_esac, - ACTIONS(10180), 6, + ACTIONS(12640), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10182), 15, + ACTIONS(12642), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251068,19 +309705,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [225844] = 7, + [280394] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9706), 1, + ACTIONS(5142), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10049), 1, + ACTIONS(12221), 1, sym_file_descriptor, - STATE(3940), 1, - sym_file_redirect, - ACTIONS(9374), 2, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5099), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11556), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(9372), 8, + ACTIONS(5140), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -251089,29 +309738,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(9704), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [225882] = 4, + [280436] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(10176), 1, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + ACTIONS(7797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7809), 1, + sym_variable_name, + ACTIONS(12648), 1, + anon_sym_LPAREN, + ACTIONS(12650), 1, + anon_sym_DOLLAR, + ACTIONS(12652), 1, + anon_sym_RBRACE3, + ACTIONS(12654), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12656), 1, + anon_sym_BQUOTE, + ACTIONS(12658), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6631), 1, + sym_process_substitution, + STATE(7008), 1, + sym__concatenation_in_expansion, + ACTIONS(7240), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12646), 4, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6498), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [280490] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12644), 1, anon_sym_esac, - ACTIONS(10172), 6, + ACTIONS(12640), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10174), 15, + ACTIONS(12642), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251127,169 +309805,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [225914] = 16, + [280522] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, + ACTIONS(12640), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(9208), 1, + aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12642), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280551] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12490), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + sym_word, + ACTIONS(12492), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(9812), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10186), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2538), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [225970] = 6, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280580] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(10188), 1, - sym__concat, - STATE(3546), 1, + STATE(5390), 1, aux_sym_concatenation_repeat1, - ACTIONS(1210), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12582), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5373), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5375), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [226006] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10190), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2866), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226062] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10192), 1, - aux_sym__c_word_token1, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2668), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226118] = 4, + [280613] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym_esac, - ACTIONS(10194), 6, + ACTIONS(12660), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10196), 15, + ACTIONS(12662), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251305,328 +309911,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226150] = 7, - ACTIONS(3), 1, + [280642] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9769), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10049), 1, - sym_file_descriptor, - STATE(3969), 1, - sym_file_redirect, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9372), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9767), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1336), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [226188] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9712), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10049), 1, - sym_file_descriptor, - STATE(3997), 1, - sym_file_redirect, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9372), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(9710), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [226226] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9286), 1, - aux_sym_concatenation_token1, - ACTIONS(10200), 1, - sym__concat, - STATE(3546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 3, + ACTIONS(1338), 14, sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 16, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [226262] = 16, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [280671] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10202), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2540), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226318] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4305), 1, + STATE(5297), 1, aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12582), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5067), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5069), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [226354] = 3, + [280704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 6, + ACTIONS(12664), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 16, - sym__concat, + ACTIONS(12666), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226384] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10204), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2542), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226440] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10206), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2543), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226496] = 16, + [280733] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, - anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10208), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2553), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226552] = 4, + ACTIONS(12668), 1, + sym__special_character, + STATE(5388), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4469), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [280766] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10158), 1, - anon_sym_esac, - ACTIONS(10154), 6, + ACTIONS(12670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10156), 15, + ACTIONS(12672), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251642,140 +310045,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226584] = 16, - ACTIONS(71), 1, + [280795] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12543), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, + ACTIONS(12547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, + ACTIONS(12555), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, + ACTIONS(12557), 1, anon_sym_BQUOTE, - ACTIONS(9812), 1, + ACTIONS(12559), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10210), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2555), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, + ACTIONS(12674), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12676), 1, + anon_sym_COLON, + ACTIONS(12678), 1, + anon_sym_RBRACE3, + ACTIONS(12680), 1, + aux_sym__simple_variable_name_token1, + STATE(6218), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + ACTIONS(12541), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6208), 2, sym_number, - sym_simple_expansion, sym_expansion, + STATE(6780), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, sym_command_substitution, - [226640] = 3, + [280854] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 6, + ACTIONS(12423), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1238), 16, - sym__concat, + ACTIONS(12425), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226670] = 3, + [280883] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 16, + ACTIONS(1308), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1310), 14, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [226700] = 3, + [280912] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 16, + ACTIONS(1308), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1310), 14, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [226730] = 4, + [280941] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10216), 1, - anon_sym_esac, - ACTIONS(10212), 6, + ACTIONS(12682), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10214), 15, + ACTIONS(12684), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -251791,237 +310190,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226762] = 3, + [280970] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 6, + ACTIONS(12682), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 16, - sym__concat, + ACTIONS(12684), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226792] = 5, - ACTIONS(3), 1, + [280999] = 12, + ACTIONS(71), 1, sym_comment, - STATE(4172), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9614), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10218), 2, + ACTIONS(4253), 1, anon_sym_PIPE, + ACTIONS(4348), 1, anon_sym_PIPE_AMP, - ACTIONS(9610), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5994), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - [226826] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4305), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + [281046] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1263), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [226868] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [281079] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 6, + ACTIONS(12690), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 16, - sym__concat, + ACTIONS(12692), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [226898] = 5, - ACTIONS(3), 1, + [281108] = 3, + ACTIONS(71), 1, sym_comment, - STATE(4172), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(10220), 2, + ACTIONS(1344), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1346), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [226932] = 16, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [281137] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DOLLAR, - ACTIONS(9499), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_number_token1, - ACTIONS(9503), 1, - aux_sym_number_token2, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9509), 1, - anon_sym_BQUOTE, - ACTIONS(9511), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10223), 1, - aux_sym__c_word_token1, - STATE(2720), 1, - sym__c_postfix_expression, - STATE(2722), 1, - sym__c_binary_expression, - STATE(2731), 1, - sym__c_unary_expression, - ACTIONS(9491), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2646), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [226988] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, - sym_file_descriptor, - ACTIONS(4018), 2, + ACTIONS(12622), 1, + aux_sym_concatenation_token1, + ACTIONS(12694), 1, + sym__concat, + STATE(5276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1267), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4226), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281172] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12622), 1, + aux_sym_concatenation_token1, + ACTIONS(12696), 1, + sym__concat, + STATE(5276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1288), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [227030] = 4, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281207] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10229), 1, - anon_sym_esac, - ACTIONS(10225), 6, + ACTIONS(12690), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10227), 15, + ACTIONS(12692), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -252037,568 +310415,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227062] = 16, + [281236] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(12664), 6, anon_sym_LPAREN, - ACTIONS(9849), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, + sym_word, + ACTIONS(12666), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10231), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2793), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227118] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281265] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 6, + ACTIONS(12698), 1, + sym__special_character, + STATE(5274), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1234), 16, - sym__concat, + ACTIONS(1364), 14, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227148] = 3, + [281298] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 6, + ACTIONS(12701), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 16, - sym__concat, + ACTIONS(12703), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227178] = 3, + [281327] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12705), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1253), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281360] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 6, + ACTIONS(12708), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1230), 16, - sym__concat, + ACTIONS(12710), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227208] = 16, + [281389] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10233), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2794), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227264] = 16, + STATE(5328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4554), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [281422] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10235), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2796), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227320] = 3, + ACTIONS(1356), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1358), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [281451] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 6, + ACTIONS(12664), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1246), 16, - sym__concat, + ACTIONS(12666), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227350] = 16, + [281480] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(12708), 6, anon_sym_LPAREN, - ACTIONS(9849), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10237), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2798), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227406] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, + sym_word, + ACTIONS(12710), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10239), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2799), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227462] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281509] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(12682), 6, anon_sym_LPAREN, - ACTIONS(9849), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10241), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2800), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227518] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, + sym_word, + ACTIONS(12684), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10243), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2801), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227574] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281538] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(12682), 6, anon_sym_LPAREN, - ACTIONS(9849), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10245), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2805), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227630] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, + sym_word, + ACTIONS(12684), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10247), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2806), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227686] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281567] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10249), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2808), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227742] = 16, + ACTIONS(1304), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1306), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [281596] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(12701), 6, anon_sym_LPAREN, - ACTIONS(9849), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, aux_sym_number_token1, - ACTIONS(9855), 1, aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, + sym_word, + ACTIONS(12703), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(9863), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10251), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2810), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227798] = 6, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10253), 1, - sym_variable_name, - STATE(5393), 1, - sym_subscript, - ACTIONS(9270), 2, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4191), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 16, + ACTIONS(4552), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -252615,20 +310788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [227834] = 6, + [281660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(11651), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(11653), 1, sym__concat, - STATE(4149), 1, + STATE(5393), 1, aux_sym_concatenation_repeat1, - ACTIONS(4065), 3, + ACTIONS(4566), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4063), 16, + ACTIONS(4564), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -252645,91 +310817,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [227870] = 16, + [281695] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LPAREN, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9853), 1, - aux_sym_number_token1, - ACTIONS(9855), 1, - aux_sym_number_token2, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9861), 1, - anon_sym_BQUOTE, - ACTIONS(9863), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, - aux_sym__c_word_token1, - STATE(2827), 1, - sym__c_unary_expression, - STATE(2828), 1, - sym__c_binary_expression, - STATE(2829), 1, - sym__c_postfix_expression, - ACTIONS(9843), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2813), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227926] = 8, + ACTIONS(1352), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1354), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [281724] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3636), 1, + ACTIONS(4348), 1, anon_sym_PIPE_AMP, - ACTIONS(10092), 1, - anon_sym_LT_LT_LT, - STATE(4519), 1, - sym_herestring_redirect, - STATE(4326), 3, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7561), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 6, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [281771] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3586), 9, + ACTIONS(4566), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [227966] = 4, + [281804] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym_esac, - ACTIONS(10194), 6, + ACTIONS(12701), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10196), 15, + ACTIONS(12703), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -252745,19 +310932,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [227998] = 4, + [281833] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10262), 1, - anon_sym_esac, - ACTIONS(10258), 6, + ACTIONS(12668), 1, + sym__special_character, + STATE(5388), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4566), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [281901] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1342), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [281930] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12664), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10260), 15, + ACTIONS(12666), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -252773,173 +311041,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228030] = 16, + [281959] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_DOLLAR, - ACTIONS(9208), 1, - aux_sym_number_token2, - ACTIONS(9798), 1, + ACTIONS(12690), 6, anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DQUOTE, - ACTIONS(9804), 1, - aux_sym_number_token1, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9808), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9810), 1, - anon_sym_BQUOTE, - ACTIONS(9812), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10264), 1, - aux_sym__c_word_token1, - STATE(2566), 1, - sym__c_unary_expression, - STATE(2567), 1, - sym__c_binary_expression, - STATE(2572), 1, - sym__c_postfix_expression, - ACTIONS(9796), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [228086] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 16, - sym__concat, + ACTIONS(12692), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228116] = 6, - ACTIONS(3), 1, + [281988] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(12582), 1, aux_sym_concatenation_token1, - ACTIONS(9288), 1, + ACTIONS(12712), 1, sym__concat, - STATE(4155), 1, + STATE(5374), 1, aux_sym_concatenation_repeat1, - ACTIONS(4086), 3, + ACTIONS(1265), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1267), 11, sym_file_descriptor, sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(4084), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282023] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [228152] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [282052] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 6, + ACTIONS(12690), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 16, - sym__concat, + ACTIONS(12692), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228182] = 6, - ACTIONS(3), 1, + [282081] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(10266), 1, - sym_variable_name, - STATE(5393), 1, - sym_subscript, - ACTIONS(9242), 2, + STATE(5271), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4372), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4191), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [282114] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5270), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4566), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [228218] = 4, + anon_sym_LT_LT_LT, + [282147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10124), 1, - anon_sym_esac, - ACTIONS(10120), 6, + ACTIONS(12405), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10122), 15, + ACTIONS(12407), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -252955,19 +311230,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228250] = 4, + [282176] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10272), 1, - anon_sym_esac, - ACTIONS(10268), 6, + STATE(5271), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4554), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [282209] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12368), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10270), 15, + ACTIONS(12370), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -252983,19 +311284,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228282] = 4, + [282238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282308] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10104), 1, - anon_sym_esac, - ACTIONS(10100), 6, + ACTIONS(12399), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10102), 15, + ACTIONS(12401), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253011,19 +311368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228314] = 4, + [282337] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10262), 1, - anon_sym_esac, - ACTIONS(10258), 6, + ACTIONS(12701), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10260), 15, + ACTIONS(12703), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253039,52 +311394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228346] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9374), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4071), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [228388] = 4, + [282366] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10278), 1, - anon_sym_esac, - ACTIONS(10274), 6, + ACTIONS(12714), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10276), 15, + ACTIONS(12716), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253100,46 +311420,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228420] = 3, + [282395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(12714), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 16, - sym__concat, + ACTIONS(12716), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228450] = 4, + [282424] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10098), 1, - anon_sym_esac, - ACTIONS(10094), 6, + ACTIONS(12393), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10096), 15, + ACTIONS(12395), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253155,73 +311472,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228482] = 3, + [282453] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282488] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 6, + ACTIONS(12714), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 16, - sym__concat, + ACTIONS(12716), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228512] = 3, + [282517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 6, + ACTIONS(12714), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 16, - sym__concat, + ACTIONS(12716), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228542] = 4, + [282546] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(10284), 1, - anon_sym_esac, - ACTIONS(10280), 6, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7463), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282593] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12718), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10282), 15, + ACTIONS(12720), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253237,50 +311614,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228574] = 9, - ACTIONS(3), 1, + [282622] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(4128), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(9790), 1, - sym_file_descriptor, - ACTIONS(4018), 2, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, anon_sym_LT_LT, + ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(4073), 2, + ACTIONS(7557), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9374), 2, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4126), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(3975), 3, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 8, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282669] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [228616] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10274), 6, + ACTIONS(12382), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10276), 15, + ACTIONS(12384), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253296,17 +311704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228645] = 3, + [282733] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10258), 6, + ACTIONS(12376), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10260), 15, + ACTIONS(12378), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253322,80 +311730,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228674] = 12, + [282762] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4947), 1, - anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(10286), 1, - sym_file_descriptor, - ACTIONS(4945), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [228721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9928), 1, - sym__special_character, - STATE(4040), 1, - aux_sym__literal_repeat1, - ACTIONS(10047), 3, + ACTIONS(12722), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12724), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(10045), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [228754] = 3, + [282791] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12435), 1, + aux_sym_concatenation_token1, + ACTIONS(12726), 1, + sym__concat, + STATE(5349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1267), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282826] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5270), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4469), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [282859] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10288), 6, + ACTIONS(12350), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10290), 15, + ACTIONS(12352), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253411,17 +311839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228783] = 3, + [282888] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10288), 6, + ACTIONS(12728), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10290), 15, + ACTIONS(12730), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253437,57 +311865,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228812] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10298), 1, - sym_file_descriptor, - ACTIONS(9654), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10295), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4220), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9304), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(10292), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [228851] = 5, + [282917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10301), 1, - sym__special_character, - STATE(4221), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 5, + ACTIONS(12376), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1294), 14, + ACTIONS(12378), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -253496,98 +311891,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [228884] = 4, - ACTIONS(3), 1, + [282946] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3586), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1318), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [228915] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [282975] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10304), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10306), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [228944] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3584), 2, + ACTIONS(12435), 1, + aux_sym_concatenation_token1, + ACTIONS(12732), 1, + sym__concat, + STATE(5349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3586), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1288), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [228977] = 3, + [283010] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10308), 6, + ACTIONS(12708), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10310), 15, + ACTIONS(12710), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253603,17 +311972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229006] = 3, + [283039] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10308), 6, + ACTIONS(12708), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10310), 15, + ACTIONS(12710), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253629,78 +311998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4780), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10312), 1, - sym_file_descriptor, - ACTIONS(3584), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10037), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [229076] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10312), 1, - sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10037), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4220), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9290), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(10035), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [229115] = 5, + [283068] = 5, ACTIONS(71), 1, sym_comment, - STATE(4292), 1, + STATE(5328), 1, aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, + ACTIONS(12435), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1979), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -253708,7 +312014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1981), 11, + ACTIONS(2074), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -253720,17 +312026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [229148] = 3, + [283101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10304), 6, + ACTIONS(12368), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10306), 15, + ACTIONS(12370), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253746,17 +312052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229177] = 3, + [283130] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10314), 6, + ACTIONS(12356), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10316), 15, + ACTIONS(12358), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253772,17 +312078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229206] = 3, + [283159] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 6, + ACTIONS(12447), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10320), 15, + ACTIONS(12449), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253798,17 +312104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229235] = 3, + [283188] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 6, + ACTIONS(12490), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10320), 15, + ACTIONS(12492), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253824,16 +312130,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229264] = 6, + [283217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10148), 1, - aux_sym_concatenation_token1, - ACTIONS(10322), 1, - sym__concat, - STATE(4249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 7, + ACTIONS(12632), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12634), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [283246] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -253841,29 +312167,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1216), 11, + ACTIONS(1314), 14, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [229299] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283275] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10308), 6, + ACTIONS(12640), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10310), 15, + ACTIONS(12642), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253879,17 +312208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229328] = 3, + [283304] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10308), 6, + ACTIONS(12467), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10310), 15, + ACTIONS(12469), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253905,17 +312234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229357] = 3, + [283333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10324), 6, + ACTIONS(12429), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10326), 15, + ACTIONS(12431), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253931,45 +312260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229386] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(4299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4515), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4517), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [229419] = 3, + [283362] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10304), 6, + ACTIONS(12734), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10306), 15, + ACTIONS(12736), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -253985,52 +312286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229448] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4947), 1, - anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5874), 1, - anon_sym_RBRACK, - ACTIONS(10286), 1, - sym_file_descriptor, - ACTIONS(4945), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [229495] = 3, + [283391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10166), 6, + ACTIONS(12467), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10168), 15, + ACTIONS(12469), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254046,17 +312312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229524] = 3, + [283420] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10154), 6, + ACTIONS(12356), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10156), 15, + ACTIONS(12358), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254072,17 +312338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229553] = 3, + [283449] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10328), 6, + ACTIONS(12350), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10330), 15, + ACTIONS(12352), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254098,17 +312364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229582] = 3, + [283478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10332), 6, + ACTIONS(12362), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10334), 15, + ACTIONS(12364), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254124,17 +312390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229611] = 3, + [283507] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10332), 6, + ACTIONS(12362), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10334), 15, + ACTIONS(12364), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254150,99 +312416,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229640] = 9, - ACTIONS(3), 1, + [283536] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(4778), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10312), 1, - sym_file_descriptor, - ACTIONS(3584), 2, + STATE(5328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4372), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(4018), 2, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283569] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4469), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, + [283602] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12738), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1253), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10037), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283635] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(11453), 1, + anon_sym_PIPE, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4228), 3, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5382), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, + ACTIONS(11455), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [229681] = 3, - ACTIONS(71), 1, + [283678] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(10336), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10338), 15, + ACTIONS(12276), 1, + sym__special_character, + STATE(5021), 1, + aux_sym__literal_repeat1, + ACTIONS(12313), 3, sym_test_operator, - sym_extglob_pattern, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12311), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [229710] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10180), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10182), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229739] = 5, + sym_word, + [283711] = 5, ACTIONS(71), 1, sym_comment, - STATE(4249), 1, + STATE(5271), 1, aux_sym_concatenation_repeat1, - ACTIONS(10340), 2, + ACTIONS(12622), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1198), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254250,9 +312577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 11, + ACTIONS(2074), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -254262,17 +312588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [229772] = 3, + anon_sym_LT_LT_LT, + [283744] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10172), 6, + ACTIONS(12741), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10174), 15, + ACTIONS(12743), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254288,17 +312615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229801] = 3, + [283773] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10343), 6, + ACTIONS(12745), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10345), 15, + ACTIONS(12747), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254314,57 +312641,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229830] = 10, + [283802] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(12734), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12736), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [283831] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, anon_sym_LT_LT, - ACTIONS(4949), 1, + ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(9290), 1, + ACTIONS(7551), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283878] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12668), 1, + sym__special_character, + STATE(5388), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5697), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283911] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(10286), 1, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7374), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, sym_file_descriptor, - ACTIONS(10086), 2, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, + ACTIONS(12500), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4285), 3, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9292), 4, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283958] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5270), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5695), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5697), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283991] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12749), 1, + sym_variable_name, + STATE(6737), 1, + sym_subscript, + STATE(5385), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11327), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(11329), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284026] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7563), 1, anon_sym_RBRACK, - ACTIONS(10082), 5, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [229873] = 3, + [284073] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(10343), 6, - anon_sym_LPAREN, + ACTIONS(12757), 1, + anon_sym_LT_LT_LT, + ACTIONS(12759), 1, + sym_file_descriptor, + ACTIONS(11357), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12755), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12753), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5363), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11363), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12751), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [284114] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12770), 1, + anon_sym_LT_LT_LT, + ACTIONS(12773), 1, + sym_file_descriptor, + ACTIONS(11307), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12767), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12764), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5363), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11315), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12761), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [284155] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1350), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284184] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12776), 1, + sym__special_character, + STATE(5274), 1, + aux_sym__literal_repeat1, + ACTIONS(5393), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10345), 15, + ACTIONS(5395), 14, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -254373,17 +312975,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229902] = 3, + [284217] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11455), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12778), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5370), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11453), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284256] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11535), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + ACTIONS(12780), 1, + sym_file_descriptor, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4877), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11533), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284295] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4272), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284359] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11431), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12788), 1, + sym_file_descriptor, + ACTIONS(11920), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12785), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5370), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11420), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12782), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284398] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5721), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5723), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284431] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11414), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + ACTIONS(12780), 1, + sym_file_descriptor, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11412), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284470] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5270), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5721), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5723), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284503] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5374), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12791), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1253), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11506), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12317), 1, + anon_sym_LT_LT_LT, + ACTIONS(12780), 1, + sym_file_descriptor, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5017), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11504), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284575] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12668), 1, + sym__special_character, + STATE(5388), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5723), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284608] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5695), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5697), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284641] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5271), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12622), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2096), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284674] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12435), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2096), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284707] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1326), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284736] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12778), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284777] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11420), 1, + anon_sym_PIPE, + ACTIONS(12797), 1, + anon_sym_LT_LT, + ACTIONS(12806), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12809), 1, + sym_file_descriptor, + ACTIONS(12803), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12800), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5382), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11431), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(12794), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [284820] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12778), 1, + sym_file_descriptor, + ACTIONS(4253), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [284861] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10172), 6, + ACTIONS(12670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10174), 15, + ACTIONS(12672), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254399,17 +313530,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229931] = 3, + [284890] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12812), 1, + sym_variable_name, + STATE(6737), 1, + sym_subscript, + STATE(5385), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11288), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(11290), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10332), 6, + ACTIONS(12734), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10334), 15, + ACTIONS(12736), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254425,43 +313585,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [229960] = 3, + [284954] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10212), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10214), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1253), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284983] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12815), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [229989] = 3, + STATE(5388), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1364), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [285016] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1298), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285045] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12582), 1, + aux_sym_concatenation_token1, + ACTIONS(12818), 1, + sym__concat, + STATE(5374), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1288), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285080] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10288), 6, + ACTIONS(12820), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10290), 15, + ACTIONS(12822), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254477,17 +313720,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230018] = 3, + [285109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(12824), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285144] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(12826), 1, + sym__concat, + STATE(4268), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285179] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + ACTIONS(5994), 1, + anon_sym_LT_LT, + ACTIONS(5996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7543), 1, + anon_sym_RBRACK, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12502), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12500), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5350), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12498), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [285226] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 6, + ACTIONS(12734), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10320), 15, + ACTIONS(12736), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254503,17 +313839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230047] = 3, + [285255] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10154), 6, + ACTIONS(12670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10156), 15, + ACTIONS(12672), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254529,17 +313865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230076] = 3, + [285284] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 6, + ACTIONS(12828), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10320), 15, + ACTIONS(12830), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254555,44 +313891,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230105] = 6, - ACTIONS(71), 1, + [285313] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - sym_variable_name, - STATE(5477), 1, - sym_subscript, - STATE(4286), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9240), 7, + ACTIONS(11651), 1, + aux_sym_concatenation_token1, + ACTIONS(11653), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9242), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230140] = 5, + [285348] = 3, ACTIONS(71), 1, sym_comment, - STATE(4299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3679), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254600,8 +313931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3681), 11, + ACTIONS(1330), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -254612,15 +313944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230173] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285377] = 3, ACTIONS(71), 1, sym_comment, - STATE(4292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3731), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254628,8 +313957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3733), 11, + ACTIONS(1294), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -254640,17 +313970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230206] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285406] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10106), 6, + ACTIONS(12670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10108), 15, + ACTIONS(12672), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -254666,44 +313998,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230235] = 6, - ACTIONS(3), 1, + [285435] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3769), 2, + ACTIONS(1332), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1334), 14, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3767), 16, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285464] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1302), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230270] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285493] = 3, ACTIONS(71), 1, sym_comment, - STATE(4292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1941), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254711,62 +314061,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1943), 11, + ACTIONS(1334), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230303] = 12, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285521] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(12473), 1, + anon_sym_LT_LT_LT, + ACTIONS(12838), 1, + sym_file_descriptor, + ACTIONS(11504), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12836), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5695), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12834), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11506), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12832), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [285561] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3636), 1, + ACTIONS(4348), 1, anon_sym_PIPE_AMP, - ACTIONS(4947), 1, + ACTIONS(5994), 1, anon_sym_LT_LT, - ACTIONS(4949), 1, + ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(6115), 1, - anon_sym_RBRACK, - ACTIONS(10286), 1, + ACTIONS(12686), 1, sym_file_descriptor, - ACTIONS(4945), 2, + ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10086), 2, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, + ACTIONS(12500), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4252), 3, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [230350] = 5, + [285605] = 6, ACTIONS(71), 1, sym_comment, - STATE(4299), 1, + ACTIONS(12688), 1, + aux_sym_concatenation_token1, + ACTIONS(12840), 1, + sym__concat, + STATE(5411), 1, aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, + ACTIONS(1286), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1288), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285639] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12842), 1, + sym__special_character, + STATE(5479), 1, + aux_sym__literal_repeat1, + ACTIONS(5067), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5069), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285671] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1350), 13, + sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - ACTIONS(4509), 7, + [285699] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254774,7 +314230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4511), 11, + sym__special_character, + ACTIONS(1263), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -254786,102 +314243,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230383] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [285727] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4305), 1, + STATE(5411), 1, aux_sym_concatenation_repeat1, - ACTIONS(3765), 2, + ACTIONS(12844), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1253), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3763), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285759] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4372), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285791] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1326), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230418] = 3, + aux_sym_concatenation_token1, + [285819] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10349), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10351), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230447] = 3, + ACTIONS(1292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1294), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [285847] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10100), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10102), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230476] = 3, + STATE(5407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4552), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4554), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285879] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10288), 6, - anon_sym_LPAREN, + ACTIONS(1261), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(10290), 15, + ACTIONS(1263), 15, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -254893,41 +314400,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230505] = 3, + [285907] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10343), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10345), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230534] = 5, + STATE(5471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5695), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5697), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285939] = 5, ACTIONS(71), 1, sym_comment, - STATE(4274), 1, + STATE(5407), 1, aux_sym_concatenation_repeat1, - ACTIONS(10353), 2, + ACTIONS(12688), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1198), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -254935,330 +314443,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 11, + ACTIONS(2074), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230567] = 5, + [285971] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10356), 1, - sym__special_character, - STATE(4221), 1, - aux_sym__literal_repeat1, - ACTIONS(4230), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4232), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230600] = 3, + STATE(5436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4272), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286001] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10343), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10345), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4303), 1, + STATE(5471), 1, aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4467), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4469), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286033] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4253), 1, anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_PIPE_AMP, + STATE(5436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4270), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4272), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286067] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1318), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230664] = 3, + aux_sym_concatenation_token1, + [286095] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(10358), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10360), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(12473), 1, + anon_sym_LT_LT_LT, + ACTIONS(12838), 1, + sym_file_descriptor, + ACTIONS(11533), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12836), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5672), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12834), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11535), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12832), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [286135] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12847), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230693] = 3, + STATE(5426), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5723), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286167] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(10100), 6, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + ACTIONS(7797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12648), 1, anon_sym_LPAREN, + ACTIONS(12650), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(12654), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10102), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12656), 1, anon_sym_BQUOTE, + ACTIONS(12658), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7807), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [230722] = 6, - ACTIONS(3), 1, + ACTIONS(12849), 5, + sym_variable_name, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6487), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [286211] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4305), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, + ACTIONS(12851), 1, + sym__special_character, + STATE(5426), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1364), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286243] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5407), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2096), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286275] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1251), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1253), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230757] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [286303] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(10362), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7793), 1, aux_sym_number_token1, + ACTIONS(7795), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10364), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12543), 1, + anon_sym_LPAREN, + ACTIONS(12547), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12551), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12555), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12557), 1, anon_sym_BQUOTE, + ACTIONS(12559), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230786] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10332), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10334), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(12854), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12856), 1, + anon_sym_RBRACE3, + ACTIONS(12858), 1, + aux_sym__simple_variable_name_token1, + STATE(6259), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + ACTIONS(12541), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230815] = 3, + STATE(6258), 2, + sym_number, + sym_expansion, + STATE(7022), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [286359] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10358), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10360), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230844] = 3, + ACTIONS(1340), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1342), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286387] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1298), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [286415] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1310), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286443] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1306), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286471] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10349), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10351), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [230873] = 10, + ACTIONS(1308), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1310), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286499] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(1328), 7, anon_sym_PIPE, - ACTIONS(10369), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(10378), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1330), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [286527] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + anon_sym_PIPE, + ACTIONS(12860), 1, + anon_sym_LT_LT, + ACTIONS(12862), 1, anon_sym_LT_LT_DASH, - ACTIONS(10381), 1, + ACTIONS(12864), 1, sym_file_descriptor, - ACTIONS(10375), 2, + ACTIONS(12836), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(10372), 3, + ACTIONS(11455), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(12834), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4285), 3, + STATE(5465), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9315), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(10366), 5, + ACTIONS(12832), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [230916] = 6, + [286569] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10384), 1, - sym_variable_name, - STATE(5477), 1, - sym_subscript, - STATE(4286), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(9268), 7, + ACTIONS(12866), 1, + sym__special_character, + STATE(5469), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255266,7 +314966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9270), 10, + ACTIONS(5723), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -255277,15 +314977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230951] = 5, + anon_sym_LT_LT_LT, + [286601] = 3, ACTIONS(71), 1, sym_comment, - STATE(4299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3763), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255293,27 +314989,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3765), 11, + ACTIONS(1326), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [230984] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286629] = 3, ACTIONS(71), 1, sym_comment, - STATE(4292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10132), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3767), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255321,27 +315014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3769), 11, + ACTIONS(1354), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231017] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286657] = 3, ACTIONS(71), 1, sym_comment, - STATE(4329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1220), 7, + ACTIONS(1251), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255349,8 +315039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1222), 11, + ACTIONS(1253), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -255360,69 +315051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [231050] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10389), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10391), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231079] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10349), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10351), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231108] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286685] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10132), 1, - aux_sym_concatenation_token1, - ACTIONS(10393), 1, - sym__concat, - STATE(4274), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255430,8 +315064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1210), 11, + ACTIONS(1294), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -255442,172 +315077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231143] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10120), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10122), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231172] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10258), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10260), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231201] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10304), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10306), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231230] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10120), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10122), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231259] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10395), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10397), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231288] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10114), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10116), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231317] = 6, + aux_sym_concatenation_token1, + [286713] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10132), 1, - aux_sym_concatenation_token1, - ACTIONS(10399), 1, - sym__concat, - STATE(4274), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255615,150 +315089,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1216), 11, + ACTIONS(1358), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231352] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(10403), 1, - anon_sym_LPAREN, - ACTIONS(10405), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10409), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10411), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10413), 1, - anon_sym_RBRACE3, - ACTIONS(10415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10417), 1, - anon_sym_BQUOTE, - ACTIONS(10419), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10421), 1, - aux_sym__simple_variable_name_token1, - STATE(4975), 1, - sym__expansion_max_length_binary_expression, - STATE(5119), 1, - sym__expansion_max_length_expression, - ACTIONS(10401), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4977), 2, - sym_number, - sym_expansion, - STATE(5437), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [231411] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10106), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10108), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231440] = 3, + aux_sym_concatenation_token1, + [286741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10423), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10425), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(10427), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(1344), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1346), 13, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 16, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [286769] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1350), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286797] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1314), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231504] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10148), 1, - aux_sym_concatenation_token1, - ACTIONS(10429), 1, - sym__concat, - STATE(4249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255766,8 +315189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1210), 11, + ACTIONS(1302), 13, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -255778,151 +315202,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, aux_sym_concatenation_token1, - ACTIONS(10431), 1, - sym__concat, - STATE(3631), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + [286853] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12847), 1, + sym__special_character, + STATE(5426), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4566), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [286885] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1334), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4305), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + [286913] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1338), 13, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 16, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286941] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1302), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231609] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10094), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10096), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231638] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10349), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10351), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231667] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10358), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10360), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231696] = 5, + aux_sym_concatenation_token1, + [286969] = 3, ACTIONS(71), 1, sym_comment, - STATE(4234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10148), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4084), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255930,56 +315316,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4086), 11, + ACTIONS(1298), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9417), 1, aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, + [286997] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1322), 13, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 16, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287025] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1298), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231764] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287053] = 3, ACTIONS(71), 1, sym_comment, - STATE(4304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10148), 2, + ACTIONS(1308), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1310), 13, + sym_file_descriptor, sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - ACTIONS(4063), 7, + [287081] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -255987,262 +315416,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4065), 11, + ACTIONS(1306), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231797] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [287109] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10196), 15, + ACTIONS(12325), 3, sym_test_operator, - sym_extglob_pattern, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12323), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231826] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10194), 6, - anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10196), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231855] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10358), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10360), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [231884] = 6, - ACTIONS(3), 1, + sym_word, + [287137] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4305), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3681), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3679), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1302), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231919] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287165] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(10268), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7793), 1, aux_sym_number_token1, + ACTIONS(7795), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10270), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231948] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10094), 6, + ACTIONS(12543), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10096), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12547), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12551), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [231977] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10225), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(12555), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10227), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12557), 1, anon_sym_BQUOTE, + ACTIONS(12559), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [232006] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10280), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(10282), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(12868), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12870), 1, + anon_sym_RBRACE3, + ACTIONS(12872), 1, + aux_sym__simple_variable_name_token1, + STATE(6301), 1, + sym__expansion_max_length_binary_expression, + STATE(6470), 1, + sym__expansion_max_length_expression, + ACTIONS(12541), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [232035] = 6, - ACTIONS(3), 1, + STATE(6279), 2, + sym_number, + sym_expansion, + STATE(6825), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [287221] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9417), 1, - aux_sym_concatenation_token1, - ACTIONS(9419), 1, - sym__concat, - STATE(4303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3733), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3731), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1310), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232070] = 3, + aux_sym_concatenation_token1, + [287249] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7793), 1, + aux_sym_number_token1, + ACTIONS(7795), 1, + aux_sym_number_token2, + ACTIONS(12543), 1, + anon_sym_LPAREN, + ACTIONS(12547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12555), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12557), 1, + anon_sym_BQUOTE, + ACTIONS(12559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12874), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12876), 1, + anon_sym_RBRACE3, + ACTIONS(12878), 1, + aux_sym__simple_variable_name_token1, + STATE(6261), 1, + sym__expansion_max_length_binary_expression, + STATE(6287), 1, + sym_number, + STATE(6299), 1, + sym_expansion, + STATE(6470), 1, + sym__expansion_max_length_expression, + STATE(7251), 1, + sym_parenthesized_expression, + STATE(7302), 1, + sym_arithmetic_expansion, + STATE(7477), 1, + sym_command_substitution, + ACTIONS(12541), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + [287311] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1251), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256250,7 +315597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1253), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -256264,10 +315611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232098] = 3, + [287339] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(12866), 1, + sym__special_character, + STATE(5469), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256275,10 +315626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(4469), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256288,11 +315637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [232126] = 3, + anon_sym_LT_LT_LT, + [287371] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256300,24 +315649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232154] = 3, + [287399] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256325,102 +315674,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232182] = 10, + [287427] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(9290), 1, + ACTIONS(11420), 1, anon_sym_PIPE, - ACTIONS(10435), 1, + ACTIONS(12883), 1, anon_sym_LT_LT, - ACTIONS(10441), 1, + ACTIONS(12892), 1, anon_sym_LT_LT_DASH, - ACTIONS(10443), 1, + ACTIONS(12895), 1, sym_file_descriptor, - ACTIONS(10439), 2, + ACTIONS(12889), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(9292), 3, + ACTIONS(11431), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, - ACTIONS(10437), 3, + ACTIONS(12886), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4385), 3, + STATE(5465), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10433), 5, + ACTIONS(12880), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [232224] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(10403), 1, - anon_sym_LPAREN, - ACTIONS(10409), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10411), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10417), 1, - anon_sym_BQUOTE, - ACTIONS(10419), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10445), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10447), 1, - anon_sym_RBRACE3, - ACTIONS(10449), 1, - aux_sym__simple_variable_name_token1, - STATE(5032), 1, - sym_number, - STATE(5036), 1, - sym_expansion, - STATE(5037), 1, - sym__expansion_max_length_binary_expression, - STATE(5119), 1, - sym__expansion_max_length_expression, - STATE(5635), 1, - sym_command_substitution, - STATE(5640), 1, - sym_arithmetic_expansion, - STATE(5641), 1, - sym_parenthesized_expression, - ACTIONS(10401), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - [232286] = 5, + [287469] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(12866), 1, sym__special_character, - STATE(4328), 1, + STATE(5469), 1, aux_sym__literal_repeat1, - ACTIONS(1292), 7, + ACTIONS(4564), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256428,28 +315735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 11, + ACTIONS(4566), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232318] = 6, + anon_sym_LT_LT_LT, + [287501] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10387), 1, - aux_sym_concatenation_token1, - ACTIONS(10454), 1, - sym__concat, - STATE(4330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1214), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256457,8 +315758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1216), 10, + ACTIONS(1294), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256468,15 +315770,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232352] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287529] = 3, ACTIONS(71), 1, sym_comment, - STATE(4330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10456), 2, + ACTIONS(1320), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1322), 13, + sym_file_descriptor, sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - ACTIONS(1198), 7, + [287557] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12898), 1, + sym__special_character, + STATE(5469), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256484,7 +315812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 10, + ACTIONS(1364), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -256495,10 +315823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232384] = 3, + anon_sym_LT_LT_LT, + [287589] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256506,29 +315835,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1330), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232412] = 5, + [287617] = 6, ACTIONS(71), 1, sym_comment, - STATE(4329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, + ACTIONS(12688), 1, aux_sym_concatenation_token1, - ACTIONS(3679), 7, + ACTIONS(12901), 1, + sym__concat, + STATE(5411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256536,7 +315866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3681), 10, + ACTIONS(1267), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -256547,10 +315877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232444] = 3, + [287651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256558,7 +315888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1238), 13, + ACTIONS(1322), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -256572,15 +315902,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232472] = 5, + [287679] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1314), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [287707] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4564), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4566), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [287739] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_LT_LT_LT, + ACTIONS(12838), 1, + sym_file_descriptor, + ACTIONS(11412), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12836), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5681), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12834), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11414), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12832), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [287779] = 5, ACTIONS(71), 1, sym_comment, - STATE(4345), 1, + STATE(5471), 1, aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, + ACTIONS(12688), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3731), 7, + ACTIONS(5721), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256588,7 +316001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3733), 10, + ACTIONS(5723), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -256599,10 +316012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232504] = 3, + [287811] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256610,7 +316023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + ACTIONS(1346), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -256624,10 +316037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232532] = 3, + [287839] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256635,24 +316048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232560] = 3, + [287867] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1198), 7, + ACTIONS(12903), 1, + sym__special_character, + STATE(5479), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256660,9 +316077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 13, + ACTIONS(1364), 11, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -256673,11 +316089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [232588] = 3, + [287899] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256685,63 +316100,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1326), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232616] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(10403), 1, - anon_sym_LPAREN, - ACTIONS(10409), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10411), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10417), 1, - anon_sym_BQUOTE, - ACTIONS(10419), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10459), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10461), 1, - anon_sym_RBRACE3, - ACTIONS(10463), 1, - aux_sym__simple_variable_name_token1, - STATE(5027), 1, - sym__expansion_max_length_binary_expression, - STATE(5119), 1, - sym__expansion_max_length_expression, - ACTIONS(10401), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(5026), 2, - sym_number, - sym_expansion, - STATE(5651), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [232672] = 3, + [287927] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256749,7 +316125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1234), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -256763,14 +316139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232700] = 5, + [287955] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10465), 1, - sym__special_character, - STATE(4328), 1, - aux_sym__literal_repeat1, - ACTIONS(4515), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256778,8 +316150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4517), 11, + ACTIONS(1342), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256790,14 +316163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232732] = 5, + aux_sym_concatenation_token1, + [287983] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10467), 1, - sym__special_character, - STATE(4342), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256805,22 +316175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 11, + ACTIONS(1358), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232764] = 3, + aux_sym_concatenation_token1, + [288011] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256828,29 +316200,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1310), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232792] = 5, + [288039] = 3, ACTIONS(71), 1, sym_comment, - STATE(4345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1979), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256858,8 +316225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1981), 10, + ACTIONS(1346), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256869,16 +316237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232824] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288067] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10387), 1, - aux_sym_concatenation_token1, - ACTIONS(10470), 1, - sym__concat, - STATE(4330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1208), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256886,8 +316250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1210), 10, + ACTIONS(1358), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256897,10 +316262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232858] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288095] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256908,7 +316275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(1350), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -256922,15 +316289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [232886] = 5, + [288123] = 3, ACTIONS(71), 1, sym_comment, - STATE(4329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4515), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256938,8 +316300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4517), 10, + ACTIONS(1338), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256949,15 +316313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232918] = 5, + aux_sym_concatenation_token1, + [288151] = 3, ACTIONS(71), 1, sym_comment, - STATE(4329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3763), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -256965,8 +316325,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3765), 10, + ACTIONS(1330), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -256976,40 +316337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232950] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1220), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1222), 15, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [232978] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288179] = 3, ACTIONS(71), 1, sym_comment, - STATE(4345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3767), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257017,8 +316350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3769), 10, + ACTIONS(1342), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257028,15 +316363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233010] = 5, + aux_sym_concatenation_token1, + [288207] = 3, ACTIONS(71), 1, sym_comment, - STATE(4345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1941), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257044,8 +316375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1943), 10, + ACTIONS(1314), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257055,10 +316388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233042] = 3, + aux_sym_concatenation_token1, + [288235] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257066,24 +316400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1238), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [233070] = 3, + [288263] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1228), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257091,7 +316425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1230), 13, + ACTIONS(1310), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -257105,10 +316439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233098] = 3, + [288291] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(12866), 1, + sym__special_character, + STATE(5469), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257116,54 +316454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(5697), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10031), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(10029), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [233154] = 5, + anon_sym_LT_LT_LT, + [288323] = 3, ACTIONS(71), 1, sym_comment, - STATE(4329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10387), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4509), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257171,8 +316477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4511), 10, + ACTIONS(1306), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257182,14 +316490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233186] = 5, + aux_sym_concatenation_token1, + [288351] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10465), 1, + ACTIONS(12847), 1, sym__special_character, - STATE(4328), 1, + STATE(5426), 1, aux_sym__literal_repeat1, - ACTIONS(3763), 7, + ACTIONS(5695), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257197,7 +316506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3765), 11, + ACTIONS(5697), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -257209,39 +316518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233218] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10478), 1, - sym_file_descriptor, - ACTIONS(10475), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4358), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9389), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10472), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [233254] = 3, + [288383] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257249,7 +316529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -257263,10 +316543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233282] = 3, + [288411] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 7, + ACTIONS(12847), 1, + sym__special_character, + STATE(5426), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257274,9 +316558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 13, + ACTIONS(4469), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257287,36 +316570,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233310] = 3, - ACTIONS(71), 1, + [288443] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 7, + STATE(5528), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12068), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12906), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12064), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233338] = 3, + [288474] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 7, + ACTIONS(12908), 1, + sym__special_character, + STATE(5520), 1, + aux_sym__literal_repeat1, + ACTIONS(4564), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257324,24 +316611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 13, + ACTIONS(4566), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233366] = 3, + [288505] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257349,10 +316633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + ACTIONS(1358), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257363,40 +316646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233394] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10481), 1, - sym_file_descriptor, - ACTIONS(9450), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4379), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10084), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(9452), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(10082), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [233432] = 3, + [288532] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257404,79 +316657,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1346), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233460] = 3, - ACTIONS(71), 1, + [288559] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 7, - anon_sym_PIPE, + ACTIONS(12912), 1, + anon_sym_DQUOTE, + ACTIONS(12916), 1, + sym_variable_name, + STATE(6206), 1, + sym_string, + ACTIONS(12914), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1239), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(12910), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [288594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, + sym_file_descriptor, + ACTIONS(12918), 1, + aux_sym_heredoc_redirect_token1, + STATE(6998), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 13, + anon_sym_GT_PIPE, + [288633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(12920), 1, + aux_sym_heredoc_redirect_token1, + STATE(7030), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233488] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(4326), 3, + STATE(5609), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 7, - anon_sym_PIPE, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3586), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [233518] = 5, + [288672] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10483), 1, - sym__special_character, - STATE(4342), 1, - aux_sym__literal_repeat1, - ACTIONS(4084), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257484,9 +316769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4086), 11, + ACTIONS(1263), 12, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257496,10 +316780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233550] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [288699] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257507,10 +316793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1322), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257521,10 +316806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233578] = 3, + [288726] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1198), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257532,24 +316817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 13, + ACTIONS(1294), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233606] = 3, + [288753] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257557,10 +316841,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 13, + ACTIONS(1318), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257571,71 +316854,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233634] = 6, + [288780] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(1340), 7, anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - STATE(4326), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3582), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3586), 9, + ACTIONS(1342), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233668] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(3636), 1, - anon_sym_PIPE_AMP, - ACTIONS(4947), 1, - anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10286), 1, - sym_file_descriptor, - ACTIONS(4945), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [233712] = 3, + aux_sym_concatenation_token1, + [288807] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257643,10 +316889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1226), 13, + ACTIONS(1314), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257657,14 +316902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233740] = 5, + [288834] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10465), 1, - sym__special_character, - STATE(4328), 1, - aux_sym__literal_repeat1, - ACTIONS(3679), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257672,22 +316913,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3681), 11, + ACTIONS(1263), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233772] = 3, + sym__special_character, + [288861] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257695,10 +316937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(1354), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -257709,27 +316950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233800] = 7, + [288888] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(12912), 1, + anon_sym_DQUOTE, + ACTIONS(12916), 1, + sym_variable_name, + STATE(6206), 1, + sym_string, + ACTIONS(12914), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1227), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, aux_sym_heredoc_redirect_token1, - ACTIONS(10485), 1, + ACTIONS(12910), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [288923] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(10037), 2, + ACTIONS(12922), 1, + aux_sym_heredoc_redirect_token1, + STATE(6931), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4358), 2, + STATE(5609), 3, sym_file_redirect, + sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(9450), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10035), 8, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -257738,115 +317008,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [233836] = 3, - ACTIONS(71), 1, + [288962] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(12924), 1, + aux_sym_heredoc_redirect_token1, + STATE(6928), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233864] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10496), 1, - sym_file_descriptor, - ACTIONS(9389), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(10493), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4379), 2, + STATE(5609), 3, sym_file_redirect, + sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(10490), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(9397), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(10487), 5, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [233902] = 3, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [289001] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1246), 13, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(12926), 1, + aux_sym_heredoc_redirect_token1, + STATE(6853), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233930] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1228), 7, - anon_sym_PIPE, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1230), 13, - sym_file_descriptor, + anon_sym_GT_PIPE, + [289040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, sym__concat, + STATE(5577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233958] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [289073] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(12908), 1, + sym__special_character, + STATE(5520), 1, + aux_sym__literal_repeat1, + ACTIONS(5721), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257854,24 +317110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(5723), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233986] = 3, + [289104] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 7, + ACTIONS(12932), 1, + sym__special_character, + STATE(5520), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257879,24 +317136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1246), 13, + ACTIONS(1364), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234014] = 3, + [289135] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257904,56 +317158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(1330), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234042] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_PIPE, - ACTIONS(10502), 1, - anon_sym_LT_LT, - ACTIONS(10511), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10514), 1, - sym_file_descriptor, - ACTIONS(10508), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9315), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(10505), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4385), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10499), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [234084] = 3, + [289162] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -257961,63 +317182,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1226), 13, + ACTIONS(1310), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234112] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - aux_sym_number_token1, - ACTIONS(6430), 1, - aux_sym_number_token2, - ACTIONS(10403), 1, - anon_sym_LPAREN, - ACTIONS(10409), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10411), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10417), 1, - anon_sym_BQUOTE, - ACTIONS(10419), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10517), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10519), 1, - anon_sym_RBRACE3, - ACTIONS(10521), 1, - aux_sym__simple_variable_name_token1, - STATE(5019), 1, - sym__expansion_max_length_binary_expression, - STATE(5119), 1, - sym__expansion_max_length_expression, - ACTIONS(10401), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(5020), 2, - sym_number, - sym_expansion, - STATE(5739), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [234168] = 3, + [289189] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258025,24 +317206,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1338), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234196] = 3, + [289216] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258050,24 +317230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1234), 13, + ACTIONS(1306), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234224] = 3, + [289243] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258075,28 +317254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(1334), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234252] = 5, + [289270] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10465), 1, - sym__special_character, - STATE(4328), 1, - aux_sym__literal_repeat1, - ACTIONS(4509), 7, + ACTIONS(4552), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258104,7 +317278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4511), 11, + ACTIONS(4554), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -258116,10 +317290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234284] = 3, + anon_sym_LT_LT_LT, + [289297] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258127,7 +317302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 12, + ACTIONS(1310), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -258140,58 +317315,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234311] = 3, - ACTIONS(71), 1, + [289324] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1222), 12, + STATE(5528), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11748), 2, sym_file_descriptor, - sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(12935), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11743), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [234338] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1240), 7, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 12, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234365] = 3, + [289355] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1261), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258199,23 +317352,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 12, + sym__special_character, + ACTIONS(1263), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234392] = 3, + [289382] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258223,49 +317376,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 12, + ACTIONS(2096), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234419] = 5, + anon_sym_LT_LT_LT, + [289409] = 9, ACTIONS(3), 1, sym_comment, - STATE(4404), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9614), 2, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, + ACTIONS(12938), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10523), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9610), 14, + STATE(7028), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [234450] = 3, + [289448] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 7, + ACTIONS(12908), 1, + sym__special_character, + STATE(5520), 1, + aux_sym__literal_repeat1, + ACTIONS(5695), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258273,9 +317434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1242), 12, + ACTIONS(5697), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -258285,11 +317445,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234477] = 3, + [289479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12778), 1, + sym_file_descriptor, + ACTIONS(4692), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12346), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [289516] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258297,7 +317485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 12, + ACTIONS(1302), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -258310,27 +317498,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234504] = 8, + [289543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, + ACTIONS(5944), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10312), 1, + ACTIONS(12778), 1, sym_file_descriptor, - ACTIONS(4018), 2, + ACTIONS(4692), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10037), 2, + ACTIONS(12346), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4228), 3, + STATE(5366), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, + ACTIONS(12344), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -258339,10 +317527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [234541] = 3, + [289580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 8, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258350,23 +317538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1222), 11, + ACTIONS(1298), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234568] = 3, + aux_sym_concatenation_token1, + [289607] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258374,7 +317562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1238), 12, + ACTIONS(1350), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -258387,10 +317575,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234595] = 3, + [289634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, + sym_file_descriptor, + ACTIONS(12940), 1, + aux_sym_heredoc_redirect_token1, + STATE(6868), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [289673] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258398,49 +317616,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 12, + ACTIONS(2074), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234622] = 5, + anon_sym_LT_LT_LT, + [289700] = 9, ACTIONS(3), 1, sym_comment, - STATE(4404), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9689), 2, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, + ACTIONS(12942), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10525), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9691), 14, + STATE(6866), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [234653] = 3, + [289739] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1251), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258448,7 +317670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 12, + ACTIONS(1253), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -258461,10 +317683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234680] = 3, + [289766] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1244), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258472,7 +317694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1246), 12, + ACTIONS(1326), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -258485,10 +317707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234707] = 3, + [289793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1232), 7, + ACTIONS(4370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258496,23 +317718,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1234), 12, + ACTIONS(4372), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234734] = 3, + anon_sym_LT_LT_LT, + [289820] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(12908), 1, + sym__special_character, + STATE(5520), 1, + aux_sym__literal_repeat1, + ACTIONS(4467), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258520,9 +317746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 12, + ACTIONS(4469), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -258532,28 +317757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234761] = 8, + [289851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10312), 1, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - ACTIONS(4018), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4776), 2, + ACTIONS(12944), 1, + aux_sym_heredoc_redirect_token1, + STATE(6835), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10037), 2, + ACTIONS(3723), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4228), 3, + STATE(5609), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -258562,38 +317787,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [234798] = 3, - ACTIONS(71), 1, + [289890] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1230), 12, + ACTIONS(3727), 1, + anon_sym_LT_LT_LT, + ACTIONS(3751), 1, sym_file_descriptor, - sym__concat, + ACTIONS(12946), 1, + aux_sym_heredoc_redirect_token1, + STATE(6836), 1, + sym__heredoc_expression, + ACTIONS(3717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3723), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3721), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234825] = 5, + [289929] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10528), 1, - sym__special_character, - STATE(4424), 1, - aux_sym__literal_repeat1, - ACTIONS(3763), 7, + ACTIONS(11741), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258601,7 +317828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3765), 10, + ACTIONS(11739), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -258612,38 +317839,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234856] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [289955] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1262), 12, - sym_file_descriptor, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, sym__concat, + STATE(5577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234883] = 5, + anon_sym_LT_LT_LT, + [289987] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10528), 1, - sym__special_character, - STATE(4424), 1, - aux_sym__literal_repeat1, - ACTIONS(4509), 7, + ACTIONS(4552), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258651,78 +317877,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4511), 10, + ACTIONS(4554), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234914] = 8, + [290013] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(10539), 1, - sym_file_descriptor, - ACTIONS(9389), 2, - anon_sym_PIPE, + ACTIONS(4692), 1, anon_sym_LT_LT, - ACTIONS(10536), 2, + ACTIONS(11993), 1, + sym_file_descriptor, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12948), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12952), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4414), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10533), 3, + ACTIONS(12950), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(9397), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10530), 5, + STATE(4746), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [234951] = 7, - ACTIONS(3), 1, + [290051] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(9706), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10485), 1, + ACTIONS(12860), 1, + anon_sym_LT_LT, + ACTIONS(12862), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12864), 1, sym_file_descriptor, - STATE(3940), 1, - sym_file_redirect, - ACTIONS(10037), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9704), 6, + ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10035), 8, + ACTIONS(12836), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12834), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12832), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [234986] = 3, + [290089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(5766), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258730,9 +317958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 12, + ACTIONS(5768), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -258742,74 +317970,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [290115] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, aux_sym_concatenation_token1, - [235013] = 8, + ACTIONS(12930), 1, + sym__concat, + STATE(5580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290147] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(10542), 1, - sym_file_descriptor, - ACTIONS(9450), 2, - anon_sym_PIPE, + ACTIONS(4692), 1, anon_sym_LT_LT, - ACTIONS(10439), 2, + ACTIONS(12221), 1, + sym_file_descriptor, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12960), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4414), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10437), 3, + ACTIONS(12958), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(9452), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10433), 5, + STATE(4986), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11554), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235050] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6424), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6444), 1, - sym_variable_name, - ACTIONS(10546), 1, - anon_sym_LPAREN, - ACTIONS(10548), 1, - anon_sym_DOLLAR, - ACTIONS(10550), 1, - anon_sym_RBRACE3, - ACTIONS(10552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10554), 1, - anon_sym_BQUOTE, - ACTIONS(10556), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5833), 1, - sym__concatenation_in_expansion, - ACTIONS(10544), 4, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5171), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [235097] = 3, + [290185] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(4370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258817,23 +318036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 12, + ACTIONS(4372), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [235124] = 3, + [290211] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1198), 7, + ACTIONS(12101), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258841,75 +318059,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1200), 12, + ACTIONS(12103), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [235151] = 5, + [290237] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(10528), 1, - sym__special_character, - STATE(4424), 1, - aux_sym__literal_repeat1, - ACTIONS(3679), 7, - anon_sym_PIPE, + ACTIONS(4692), 1, + anon_sym_LT_LT, + ACTIONS(11834), 1, + sym_file_descriptor, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12962), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12966), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12964), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4650), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11479), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3681), 10, + [290275] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4692), 1, + anon_sym_LT_LT, + ACTIONS(11856), 1, sym_file_descriptor, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12968), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12972), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12970), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [235182] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10528), 1, - sym__special_character, - STATE(4424), 1, - aux_sym__literal_repeat1, - ACTIONS(4515), 7, - anon_sym_PIPE, + STATE(4697), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11485), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4517), 10, + [290313] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4692), 1, + anon_sym_LT_LT, + ACTIONS(12778), 1, sym_file_descriptor, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12974), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12978), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12976), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [235213] = 3, + STATE(5366), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [290351] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(11780), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258917,9 +318169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 12, + ACTIONS(11782), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -258929,53 +318180,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [235240] = 5, + anon_sym_LT_LT_LT, + [290377] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10558), 1, - sym__special_character, - STATE(4424), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 7, + ACTIONS(11745), 1, anon_sym_PIPE, + ACTIONS(12980), 1, + anon_sym_PIPE_AMP, + STATE(5602), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11743), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 10, + ACTIONS(11748), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235271] = 7, + [290409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9769), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10485), 1, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5723), 2, sym_file_descriptor, - STATE(3969), 1, - sym_file_redirect, - ACTIONS(10037), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9767), 6, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10035), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -258984,10 +318230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [235306] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1224), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -258995,51 +318244,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1226), 12, + ACTIONS(2074), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [235333] = 7, - ACTIONS(3), 1, + [290467] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(9712), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10485), 1, - sym_file_descriptor, - STATE(3997), 1, - sym_file_redirect, - ACTIONS(10037), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(9710), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11752), 7, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10035), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(11750), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [235368] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [290493] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9965), 7, + ACTIONS(12201), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259047,7 +318290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9963), 11, + ACTIONS(12199), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259059,38 +318302,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235394] = 8, + [290519] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10542), 1, - sym_file_descriptor, - STATE(4491), 1, - sym_file_redirect, - ACTIONS(9710), 2, + ACTIONS(5373), 7, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(10439), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10437), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(9712), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10433), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235430] = 3, + ACTIONS(5375), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290545] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10025), 7, + ACTIONS(11735), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259098,22 +318336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10023), 11, + ACTIONS(11733), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235456] = 3, + anon_sym_LT_LT_LT, + [290571] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10025), 7, + ACTIONS(12189), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259121,7 +318359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10023), 11, + ACTIONS(12187), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259133,178 +318371,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235482] = 9, + [290597] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(5994), 1, anon_sym_LT_LT, - ACTIONS(9685), 1, - sym_file_descriptor, - ACTIONS(10567), 1, + ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(10561), 2, + ACTIONS(12686), 1, + sym_file_descriptor, + ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10565), 2, + ACTIONS(12502), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(10563), 3, + ACTIONS(12500), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(3907), 3, + STATE(5350), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9334), 5, + ACTIONS(12498), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10571), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - sym_string, - ACTIONS(10573), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1163), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(10569), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [235552] = 9, + [290635] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(12001), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(9294), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12003), 11, sym_file_descriptor, - ACTIONS(10581), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10575), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10579), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10577), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(3574), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9184), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [290661] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12145), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235590] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_LT_LT, - ACTIONS(9402), 1, + ACTIONS(12147), 11, sym_file_descriptor, - ACTIONS(10581), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10583), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10587), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10585), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(3741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9222), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290687] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12141), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235628] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4018), 1, - anon_sym_LT_LT, - ACTIONS(10312), 1, + ACTIONS(12143), 11, sym_file_descriptor, - ACTIONS(10567), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10589), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10593), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10591), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4228), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10035), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290713] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12137), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10571), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - sym_string, - ACTIONS(10573), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1173), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(10569), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [235698] = 3, + ACTIONS(12139), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290739] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9900), 7, + ACTIONS(12211), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259312,7 +318503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9902), 11, + ACTIONS(12209), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259324,10 +318515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235724] = 3, + [290765] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9900), 7, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259335,7 +318526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9902), 11, + ACTIONS(2096), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259347,123 +318538,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235750] = 9, + [290791] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(12105), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(4949), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10286), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12107), 11, sym_file_descriptor, - ACTIONS(4945), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10086), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10084), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4252), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10082), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12983), 1, + sym__concat, + STATE(5583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1265), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235788] = 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290849] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(12117), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(9517), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12119), 11, sym_file_descriptor, - ACTIONS(10567), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10595), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10599), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10597), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(3806), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9296), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290875] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12117), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235826] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LT_LT, - ACTIONS(10441), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10443), 1, + ACTIONS(12119), 11, sym_file_descriptor, - ACTIONS(4945), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10439), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10437), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4326), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10433), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12985), 1, + sym__concat, + STATE(5583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235864] = 6, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290933] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10601), 1, + ACTIONS(12161), 7, anon_sym_PIPE, - ACTIONS(10603), 1, - anon_sym_PIPE_AMP, - STATE(4464), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9610), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9614), 9, + ACTIONS(12163), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235896] = 3, + [290959] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9959), 7, + ACTIONS(11844), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259471,99 +318693,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9961), 11, + ACTIONS(11842), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235922] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [290985] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9628), 7, - anon_sym_PIPE, + ACTIONS(12987), 1, + aux_sym_concatenation_token1, + ACTIONS(12990), 1, + sym__concat, + STATE(5583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9626), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [291017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5695), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [235948] = 8, + [291049] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10542), 1, - sym_file_descriptor, - STATE(4539), 1, - sym_file_redirect, - ACTIONS(9704), 2, + ACTIONS(12217), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(10439), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10437), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(9706), 4, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12219), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(10433), 5, + [291075] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12223), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [235984] = 6, + ACTIONS(12225), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [291101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9693), 1, + ACTIONS(4370), 7, anon_sym_PIPE, - ACTIONS(10605), 1, - anon_sym_PIPE_AMP, - STATE(4443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(9691), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9689), 9, + ACTIONS(4372), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236016] = 3, + anon_sym_LT_LT_LT, + [291127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10017), 7, + ACTIONS(11725), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259571,22 +318837,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10015), 11, + ACTIONS(11727), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236042] = 3, + anon_sym_LT_LT_LT, + [291153] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10017), 7, + ACTIONS(12201), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259594,7 +318860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10015), 11, + ACTIONS(12199), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259606,10 +318872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236068] = 3, + [291179] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1979), 7, + ACTIONS(12223), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259617,7 +318883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1981), 11, + ACTIONS(12225), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259629,10 +318895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236094] = 3, + [291205] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10011), 7, + ACTIONS(11731), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259640,22 +318906,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10013), 11, + ACTIONS(11729), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236120] = 3, + anon_sym_LT_LT_LT, + [291231] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10011), 7, + ACTIONS(11792), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259663,94 +318929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10013), 11, + ACTIONS(11790), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10610), 1, - sym__concat, - STATE(4488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - sym__special_character, - [236178] = 3, + anon_sym_LT_LT_LT, + [291257] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(9998), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4382), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(10000), 11, + ACTIONS(11562), 1, sym_file_descriptor, + ACTIONS(12999), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12993), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12997), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12995), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236204] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10021), 7, - anon_sym_PIPE, + STATE(4455), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11333), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10019), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236230] = 3, + [291295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9738), 7, + ACTIONS(11828), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259758,7 +318981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9740), 11, + ACTIONS(11830), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259770,10 +318993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236256] = 3, + [291321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4063), 7, + ACTIONS(12249), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259781,22 +319004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4065), 11, + ACTIONS(12251), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236282] = 3, + [291347] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 7, + ACTIONS(12257), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259804,7 +319027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3733), 11, + ACTIONS(12259), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259816,10 +319039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236308] = 3, + [291373] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3767), 7, + ACTIONS(12257), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259827,7 +319050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3769), 11, + ACTIONS(12259), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259839,10 +319062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236334] = 3, + [291399] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9591), 7, + ACTIONS(12159), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259850,22 +319073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9589), 11, + ACTIONS(12157), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236360] = 3, + [291425] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9667), 7, + ACTIONS(12159), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259873,22 +319096,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9665), 11, + ACTIONS(12157), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236386] = 3, + [291451] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9549), 7, + ACTIONS(12105), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259896,22 +319119,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9547), 11, + ACTIONS(12107), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236412] = 3, + [291477] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9991), 7, + ACTIONS(2072), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259919,35 +319142,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9989), 11, + ACTIONS(2074), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236438] = 6, + anon_sym_LT_LT_LT, + [291503] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10612), 1, + ACTIONS(13001), 1, anon_sym_PIPE, - ACTIONS(10615), 1, + ACTIONS(13003), 1, anon_sym_PIPE_AMP, - STATE(4464), 1, + STATE(5611), 1, aux_sym_pipeline_repeat1, - ACTIONS(9691), 6, + ACTIONS(12064), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9689), 9, + ACTIONS(12068), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -259957,10 +319180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236470] = 3, + [291535] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4713), 7, + ACTIONS(11958), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259968,9 +319191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4715), 11, + ACTIONS(11956), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -259980,10 +319202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236496] = 3, + anon_sym_LT_LT_LT, + [291561] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9985), 7, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -259991,68 +319214,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9983), 11, + ACTIONS(2096), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236522] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [291587] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9985), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9983), 11, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4554), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236548] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [291619] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9979), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9977), 11, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4566), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236574] = 3, + anon_sym_LT_LT_LT, + [291651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9979), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260060,68 +319289,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9977), 11, + ACTIONS(1263), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236600] = 3, - ACTIONS(71), 1, + sym__special_character, + [291677] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9975), 7, - anon_sym_PIPE, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2096), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2094), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9973), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [291709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13011), 1, + anon_sym_LT_LT_LT, + ACTIONS(13014), 1, sym_file_descriptor, + ACTIONS(11307), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(13008), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236626] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9971), 7, - anon_sym_PIPE, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13005), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9969), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [236652] = 3, + [291745] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 7, + ACTIONS(5770), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260129,8 +319366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1222), 11, + ACTIONS(5772), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -260140,62 +319378,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [236678] = 3, + [291771] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9957), 7, + ACTIONS(13017), 1, anon_sym_PIPE, + ACTIONS(13020), 1, + anon_sym_PIPE_AMP, + STATE(5611), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11743), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9955), 11, + ACTIONS(11748), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236704] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10542), 1, - sym_file_descriptor, - STATE(4507), 1, - sym_file_redirect, - ACTIONS(9767), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(10439), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10437), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(9769), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(10433), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [236740] = 3, + [291803] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1941), 7, + ACTIONS(4552), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260203,22 +319415,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1943), 11, + ACTIONS(4554), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236766] = 3, + anon_sym_LT_LT_LT, + [291829] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9723), 7, + ACTIONS(12034), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260226,7 +319438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9721), 11, + ACTIONS(12036), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260238,39 +319450,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236792] = 9, + [291855] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(4255), 1, anon_sym_LT_LT, - ACTIONS(9521), 1, + ACTIONS(11457), 1, sym_file_descriptor, - ACTIONS(10567), 1, + ACTIONS(13029), 1, anon_sym_LT_LT_DASH, - ACTIONS(10618), 2, + ACTIONS(13023), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10622), 2, + ACTIONS(13027), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(10620), 3, + ACTIONS(13025), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(3753), 3, + STATE(4283), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9326), 5, + ACTIONS(11280), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [236830] = 3, + [291893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9936), 7, + ACTIONS(11929), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260278,22 +319490,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9934), 11, + ACTIONS(11931), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236856] = 3, + anon_sym_LT_LT_LT, + [291919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12928), 1, + aux_sym_concatenation_token1, + ACTIONS(12930), 1, + sym__concat, + STATE(5580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [291951] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4706), 7, + ACTIONS(12201), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260301,9 +319539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4708), 11, + ACTIONS(12199), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -260313,62 +319550,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236882] = 9, - ACTIONS(71), 1, + [291976] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LT_LT, - ACTIONS(9790), 1, + ACTIONS(1322), 3, sym_file_descriptor, - ACTIONS(10567), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10624), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10628), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(10626), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(3975), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9372), 5, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [236920] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9673), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9671), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236946] = 3, + aux_sym_concatenation_token1, + [292001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9839), 7, + ACTIONS(2094), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260376,7 +319583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9841), 10, + ACTIONS(2096), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260387,10 +319594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236971] = 3, + [292026] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9823), 7, + ACTIONS(11958), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260398,7 +319605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9825), 10, + ACTIONS(11956), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260409,37 +319616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236996] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(10630), 1, - aux_sym_heredoc_redirect_token1, - STATE(5813), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [237031] = 3, + [292051] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9938), 7, + ACTIONS(12034), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260447,7 +319627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9940), 10, + ACTIONS(12036), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260458,10 +319638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237056] = 3, + [292076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9924), 7, + ACTIONS(5930), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260469,7 +319671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9926), 10, + ACTIONS(5932), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260480,10 +319682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237081] = 3, + [292126] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9965), 7, + ACTIONS(5930), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260491,7 +319693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9963), 10, + ACTIONS(5932), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260502,44 +319704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237106] = 6, + [292151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10632), 1, - sym__concat, - STATE(4503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, + ACTIONS(1318), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1214), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [237137] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10610), 1, sym__concat, - STATE(4492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1943), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 12, + ACTIONS(1316), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -260552,10 +319724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [237168] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292176] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9951), 7, + ACTIONS(12159), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260563,7 +319737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9953), 10, + ACTIONS(12157), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260574,10 +319748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237193] = 3, + [292201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9920), 7, + ACTIONS(12159), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260585,7 +319759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9922), 10, + ACTIONS(12157), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260596,19 +319770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237218] = 6, + [292226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10634), 1, - sym__concat, - STATE(4503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, + ACTIONS(1330), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 12, + ACTIONS(1328), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -260621,37 +319790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [237249] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292251] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(10636), 1, - aux_sym_heredoc_redirect_token1, - STATE(5556), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, + ACTIONS(4370), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4372), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [237284] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [292276] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9979), 7, + ACTIONS(12257), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260659,7 +319825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9977), 10, + ACTIONS(12259), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260670,10 +319836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237309] = 3, + [292301] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9912), 7, + ACTIONS(12257), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260681,7 +319847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9914), 10, + ACTIONS(12259), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260692,25 +319858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237334] = 8, + [292326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(13031), 1, + sym__special_character, + STATE(5657), 1, + aux_sym__literal_repeat1, + ACTIONS(5697), 2, sym_file_descriptor, - ACTIONS(10638), 1, aux_sym_heredoc_redirect_token1, - STATE(5557), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, + ACTIONS(5695), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -260719,10 +319879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [237369] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [292355] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9908), 7, + ACTIONS(12249), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260730,7 +319893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9910), 10, + ACTIONS(12251), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260741,10 +319904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237394] = 3, + [292380] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9916), 7, + ACTIONS(12207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260752,7 +319915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9918), 10, + ACTIONS(12205), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260763,60 +319926,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237419] = 6, - ACTIONS(3), 1, + [292405] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10610), 1, - sym__concat, - STATE(4488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12223), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [237450] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10610), 1, - sym__concat, - STATE(4488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4511), 2, + ACTIONS(12225), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 12, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [237481] = 3, + anon_sym_LT_LT_DASH, + [292430] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9904), 7, + ACTIONS(12223), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260824,7 +319959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9906), 10, + ACTIONS(12225), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260835,10 +319970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237506] = 3, + [292455] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9875), 7, + ACTIONS(11828), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260846,7 +319981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9877), 10, + ACTIONS(11830), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260857,35 +319992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237531] = 6, - ACTIONS(3), 1, + [292480] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(10640), 1, - aux_sym_concatenation_token1, - ACTIONS(10643), 1, - sym__concat, - STATE(4503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12201), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12199), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [237562] = 3, + anon_sym_LT_LT_DASH, + [292505] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9875), 7, + ACTIONS(12217), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260893,7 +320025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9877), 10, + ACTIONS(12219), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260904,37 +320036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237587] = 8, - ACTIONS(3), 1, + [292530] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3518), 1, - sym_file_descriptor, - ACTIONS(10646), 1, - aux_sym_heredoc_redirect_token1, - STATE(5626), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, + ACTIONS(12161), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12163), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [237622] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [292555] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9867), 7, + ACTIONS(12117), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260942,7 +320069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9869), 10, + ACTIONS(12119), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260953,10 +320080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237647] = 3, + [292580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9879), 7, + ACTIONS(12117), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260964,7 +320091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9881), 10, + ACTIONS(12119), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260975,10 +320102,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237672] = 3, + [292605] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13031), 1, + sym__special_character, + STATE(5657), 1, + aux_sym__literal_repeat1, + ACTIONS(4566), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4564), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [292634] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9957), 7, + ACTIONS(11792), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -260986,7 +320137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9955), 10, + ACTIONS(11790), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -260997,10 +320148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237697] = 3, + [292659] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9985), 7, + ACTIONS(12105), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261008,7 +320159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9983), 10, + ACTIONS(12107), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261019,10 +320170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237722] = 3, + [292684] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4788), 7, + ACTIONS(12105), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261030,7 +320181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4790), 10, + ACTIONS(12107), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261041,10 +320192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237747] = 3, + [292709] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1941), 7, + ACTIONS(11731), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261052,7 +320203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1943), 10, + ACTIONS(11729), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261063,10 +320214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237772] = 3, + [292734] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 7, + ACTIONS(11725), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261074,7 +320225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3733), 10, + ACTIONS(11727), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261085,10 +320236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237797] = 3, + [292759] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1979), 7, + ACTIONS(12211), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261096,7 +320247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1981), 10, + ACTIONS(12209), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261107,10 +320258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237822] = 3, + [292784] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4788), 7, + ACTIONS(12137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261118,7 +320269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4790), 10, + ACTIONS(12139), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261129,10 +320280,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237847] = 3, + [292809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13031), 1, + sym__special_character, + STATE(5657), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4467), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [292838] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9786), 7, + ACTIONS(11929), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261140,7 +320315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9788), 10, + ACTIONS(11931), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261151,10 +320326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237872] = 3, + [292863] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9979), 7, + ACTIONS(12145), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261162,7 +320337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9977), 10, + ACTIONS(12147), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261173,32 +320348,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237897] = 3, - ACTIONS(71), 1, + [292888] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9673), 7, - anon_sym_PIPE, + ACTIONS(1358), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9671), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [237922] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292938] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9723), 7, + ACTIONS(12267), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261206,7 +320403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9721), 10, + ACTIONS(12265), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261217,32 +320414,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237947] = 3, - ACTIONS(71), 1, + [292963] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(9959), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9961), 10, + ACTIONS(13033), 1, + sym__special_character, + STATE(5657), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [237972] = 3, + anon_sym_LT_LT_LT, + [292992] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9998), 7, + ACTIONS(12189), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261250,7 +320449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10000), 10, + ACTIONS(12187), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261261,10 +320460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237997] = 3, + [293017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9794), 7, + ACTIONS(12141), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261272,7 +320471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9792), 10, + ACTIONS(12143), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261283,32 +320482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238022] = 3, - ACTIONS(71), 1, + [293042] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9894), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9896), 10, + ACTIONS(1326), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238047] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293067] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9900), 7, + ACTIONS(12197), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261316,7 +320515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9902), 10, + ACTIONS(12195), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261327,41 +320526,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238072] = 3, - ACTIONS(71), 1, + [293092] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9902), 10, + ACTIONS(1338), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238097] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10608), 1, - aux_sym_concatenation_token1, - ACTIONS(10610), 1, - sym__concat, - STATE(4492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1981), 2, + ACTIONS(1342), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 12, + ACTIONS(1340), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -261374,25 +320568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [238128] = 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(1314), 3, sym_file_descriptor, - ACTIONS(10648), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(5645), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, + ACTIONS(1312), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -261401,10 +320588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238163] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9887), 7, + ACTIONS(12153), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261412,7 +320603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9889), 10, + ACTIONS(12155), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261423,32 +320614,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238188] = 3, - ACTIONS(71), 1, + [293192] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10025), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(10023), 10, + ACTIONS(1354), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238213] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3767), 7, + ACTIONS(12149), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261456,7 +320647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(3769), 10, + ACTIONS(12151), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261467,54 +320658,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238238] = 3, - ACTIONS(71), 1, + [293242] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9883), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(9885), 10, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238263] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293267] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9782), 7, - anon_sym_PIPE, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9784), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238288] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293317] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10025), 7, + ACTIONS(4552), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261522,7 +320735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10023), 10, + ACTIONS(4554), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261533,10 +320746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238313] = 3, + [293342] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9823), 7, + ACTIONS(12135), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261544,7 +320757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9825), 10, + ACTIONS(12133), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261555,10 +320768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238338] = 3, + [293367] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9975), 7, + ACTIONS(12213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261566,7 +320779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9973), 10, + ACTIONS(12215), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261577,32 +320790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238363] = 3, - ACTIONS(71), 1, + [293392] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(10021), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(10019), 10, + ACTIONS(13031), 1, + sym__special_character, + STATE(5657), 1, + aux_sym__literal_repeat1, + ACTIONS(5723), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5721), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238388] = 3, + anon_sym_LT_LT_LT, + [293421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10017), 7, + ACTIONS(12213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261610,7 +320825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10015), 10, + ACTIONS(12215), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261621,10 +320836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238413] = 3, + [293446] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9930), 7, + ACTIONS(11741), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261632,7 +320847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9932), 10, + ACTIONS(11739), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261643,10 +320858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238438] = 3, + [293471] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10017), 7, + ACTIONS(12131), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261654,7 +320869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10015), 10, + ACTIONS(12129), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261665,10 +320880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238463] = 3, + [293496] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9827), 7, + ACTIONS(12127), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261676,7 +320891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9829), 10, + ACTIONS(12125), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261687,10 +320902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238488] = 3, + [293521] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10011), 7, + ACTIONS(12101), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261698,7 +320913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(10013), 10, + ACTIONS(12103), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261709,32 +320924,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238513] = 3, - ACTIONS(71), 1, + [293546] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10011), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(10013), 10, + ACTIONS(1253), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [238538] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293571] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9936), 7, + ACTIONS(12111), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261742,7 +320957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9934), 10, + ACTIONS(12109), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261753,10 +320968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238563] = 3, + [293596] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9971), 7, + ACTIONS(12271), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261764,7 +320979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9969), 10, + ACTIONS(12269), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261775,25 +320990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238588] = 8, + [293621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(1294), 3, sym_file_descriptor, - ACTIONS(10650), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(5633), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, + ACTIONS(1292), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -261802,10 +321008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238623] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9871), 7, + ACTIONS(12193), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261813,7 +321023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9873), 10, + ACTIONS(12191), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261824,10 +321034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238648] = 3, + [293671] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9831), 7, + ACTIONS(12123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261835,7 +321045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9833), 10, + ACTIONS(12121), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261846,10 +321056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238673] = 3, + [293696] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9985), 7, + ACTIONS(12115), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261857,7 +321067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9983), 10, + ACTIONS(12113), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261868,10 +321078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238698] = 3, + [293721] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9991), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261879,7 +321089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9989), 10, + ACTIONS(12227), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261890,54 +321100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238723] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6424), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10546), 1, - anon_sym_LPAREN, - ACTIONS(10548), 1, - anon_sym_DOLLAR, - ACTIONS(10552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10554), 1, - anon_sym_BQUOTE, - ACTIONS(10556), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10652), 5, - sym_variable_name, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5150), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [238762] = 8, + [293746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(1334), 3, sym_file_descriptor, - ACTIONS(10654), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(5780), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, + ACTIONS(1332), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3492), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -261946,10 +321118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238797] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293771] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9835), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -261957,7 +321133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(9837), 10, + ACTIONS(12227), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -261968,104 +321144,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238822] = 8, - ACTIONS(3), 1, + [293796] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(12255), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12253), 10, sym_file_descriptor, - ACTIONS(10656), 1, - aux_sym_heredoc_redirect_token1, - STATE(5708), 1, - sym__heredoc_expression, - ACTIONS(3486), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3492), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3490), 8, + anon_sym_LT_LT_DASH, + [293821] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12296), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [238857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 3, + ACTIONS(12298), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [238881] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [293846] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2072), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [238905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 3, + ACTIONS(2074), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [238929] = 3, + anon_sym_LT_LT_DASH, + [293871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 13, + ACTIONS(1300), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -262078,99 +321230,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238953] = 3, - ACTIONS(3), 1, + [293896] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12294), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [238977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 3, + ACTIONS(12292), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239001] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [293921] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12261), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 3, + ACTIONS(12263), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239049] = 3, + anon_sym_LT_LT_DASH, + [293946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 13, + ACTIONS(1348), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -262183,15 +321296,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239073] = 3, + [293971] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13040), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13042), 1, + sym_variable_name, + STATE(3533), 1, + sym_subscript, + STATE(6448), 1, + sym_command_substitution, + ACTIONS(13038), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(13036), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [294009] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(13048), 1, + sym_variable_name, + STATE(6513), 1, + sym_string, + ACTIONS(1239), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(13046), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13044), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [294041] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6492), 1, + anon_sym_DQUOTE, + ACTIONS(13048), 1, + sym_variable_name, + STATE(6513), 1, + sym_string, + ACTIONS(1227), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(13046), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13044), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [294073] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11766), 1, + anon_sym_BQUOTE, + ACTIONS(11768), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13054), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13056), 1, + sym_variable_name, + STATE(6448), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(13052), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(13050), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [294109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 3, + ACTIONS(1263), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 13, + ACTIONS(1261), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -262204,291 +321422,1059 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239097] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [294133] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13062), 1, + anon_sym_DOLLAR, + ACTIONS(13064), 1, + anon_sym_DQUOTE, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294174] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13076), 1, + anon_sym_DOLLAR, + ACTIONS(13078), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294215] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13080), 1, + anon_sym_DOLLAR, + ACTIONS(13082), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294256] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13084), 1, + anon_sym_DOLLAR, + ACTIONS(13086), 1, + anon_sym_DQUOTE, + STATE(5711), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294297] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13088), 1, + anon_sym_DOLLAR, + ACTIONS(13090), 1, + anon_sym_DQUOTE, + STATE(5752), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294338] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13092), 1, + anon_sym_DOLLAR, + ACTIONS(13094), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294379] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13096), 1, + anon_sym_DOLLAR, + ACTIONS(13098), 1, + anon_sym_DQUOTE, + STATE(5713), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294420] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13100), 1, + anon_sym_DOLLAR, + ACTIONS(13102), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294461] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13104), 1, + anon_sym_DOLLAR, + ACTIONS(13106), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294502] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13108), 1, + anon_sym_DOLLAR, + ACTIONS(13110), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294543] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13112), 1, + anon_sym_DOLLAR, + ACTIONS(13114), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294584] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13116), 1, + anon_sym_DOLLAR, + ACTIONS(13118), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294625] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13120), 1, + anon_sym_DOLLAR, + ACTIONS(13122), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294666] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13124), 1, + anon_sym_DOLLAR, + ACTIONS(13126), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294707] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13128), 1, + anon_sym_DOLLAR, + ACTIONS(13130), 1, + anon_sym_DQUOTE, + STATE(5719), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294748] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13132), 1, + anon_sym_DOLLAR, + ACTIONS(13134), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294789] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13136), 1, + anon_sym_DOLLAR, + ACTIONS(13138), 1, + anon_sym_DQUOTE, + STATE(5801), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294830] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13140), 1, + anon_sym_DOLLAR, + ACTIONS(13142), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294871] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13144), 1, + anon_sym_DOLLAR, + ACTIONS(13146), 1, + anon_sym_DQUOTE, + STATE(5712), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294912] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13148), 1, + anon_sym_DOLLAR, + ACTIONS(13150), 1, + anon_sym_DQUOTE, + STATE(5766), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294953] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13152), 1, + anon_sym_DOLLAR, + ACTIONS(13154), 1, + anon_sym_DQUOTE, + STATE(5704), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294994] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13156), 1, + anon_sym_DOLLAR, + ACTIONS(13158), 1, + anon_sym_DQUOTE, + STATE(5710), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295035] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13160), 1, + anon_sym_DOLLAR, + ACTIONS(13162), 1, + anon_sym_DQUOTE, + STATE(5707), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295076] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239121] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13164), 1, + anon_sym_DOLLAR, + ACTIONS(13166), 1, + anon_sym_DQUOTE, + STATE(5731), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239145] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13168), 1, + anon_sym_DOLLAR, + ACTIONS(13170), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295158] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239169] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13172), 1, + anon_sym_DOLLAR, + ACTIONS(13174), 1, + anon_sym_DQUOTE, + STATE(5709), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239193] = 7, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13176), 1, + anon_sym_DOLLAR, + ACTIONS(13178), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295240] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10664), 1, - sym_file_descriptor, - ACTIONS(9389), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10661), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4567), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(10658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [239225] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13180), 1, + anon_sym_DOLLAR, + ACTIONS(13182), 1, + anon_sym_DQUOTE, + STATE(5728), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295281] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239249] = 5, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13184), 1, + anon_sym_DOLLAR, + ACTIONS(13186), 1, + anon_sym_DQUOTE, + STATE(5740), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295322] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10667), 1, - sym__special_character, - STATE(4569), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [239277] = 9, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13188), 1, + anon_sym_DOLLAR, + ACTIONS(13190), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295363] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9479), 1, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10674), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(10676), 1, - sym_variable_name, - STATE(5115), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(10672), 3, + ACTIONS(13192), 1, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(10670), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [239313] = 3, + ACTIONS(13194), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295404] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239337] = 10, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13196), 1, + anon_sym_DOLLAR, + ACTIONS(13198), 1, + anon_sym_DQUOTE, + STATE(5726), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295445] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9479), 1, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9481), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(9483), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10682), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(10684), 1, - sym_variable_name, - STATE(2978), 1, - sym_subscript, - STATE(5115), 1, + ACTIONS(13200), 1, + anon_sym_DOLLAR, + ACTIONS(13202), 1, + anon_sym_DQUOTE, + STATE(5702), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - ACTIONS(10680), 3, + [295486] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13204), 1, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(10678), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [239375] = 5, + ACTIONS(13206), 1, + anon_sym_DQUOTE, + STATE(5848), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295527] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10686), 1, - sym__special_character, - STATE(4569), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4515), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [239403] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13208), 1, + anon_sym_DOLLAR, + ACTIONS(13210), 1, + anon_sym_DQUOTE, + STATE(5732), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295568] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239427] = 5, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13212), 1, + anon_sym_DOLLAR, + ACTIONS(13214), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10686), 1, - sym__special_character, - STATE(4569), 1, - aux_sym__literal_repeat1, - ACTIONS(4511), 2, + ACTIONS(2096), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4509), 12, + ACTIONS(2094), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -262501,3672 +322487,4417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - [239455] = 3, + anon_sym_LT_LT_LT, + [295632] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239479] = 3, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13216), 1, + anon_sym_DOLLAR, + ACTIONS(13218), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295673] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_concatenation_token1, - [239503] = 12, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13220), 1, + anon_sym_DOLLAR, + ACTIONS(13222), 1, + anon_sym_DQUOTE, + STATE(5768), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295714] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10692), 1, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13224), 1, anon_sym_DOLLAR, - ACTIONS(10694), 1, + ACTIONS(13226), 1, anon_sym_DQUOTE, - ACTIONS(10696), 1, + STATE(5739), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295755] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4588), 1, + ACTIONS(13228), 1, + anon_sym_DOLLAR, + ACTIONS(13230), 1, + anon_sym_DQUOTE, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239544] = 12, + [295796] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10706), 1, + ACTIONS(13232), 1, anon_sym_DOLLAR, - ACTIONS(10708), 1, + ACTIONS(13234), 1, anon_sym_DQUOTE, - STATE(4658), 1, + STATE(5749), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239585] = 12, + [295837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(4372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4370), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [295860] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10710), 1, + ACTIONS(13236), 1, anon_sym_DOLLAR, - ACTIONS(10712), 1, + ACTIONS(13238), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239626] = 12, + [295901] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10714), 1, + ACTIONS(13240), 1, anon_sym_DOLLAR, - ACTIONS(10716), 1, + ACTIONS(13242), 1, anon_sym_DQUOTE, - STATE(4641), 1, + STATE(5737), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239667] = 12, + [295942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(4554), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4552), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [295965] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10718), 1, + ACTIONS(13244), 1, anon_sym_DOLLAR, - ACTIONS(10720), 1, + ACTIONS(13246), 1, anon_sym_DQUOTE, - STATE(4585), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239708] = 12, + [296006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10722), 1, + ACTIONS(13248), 1, anon_sym_DOLLAR, - ACTIONS(10724), 1, + ACTIONS(13250), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239749] = 12, + [296047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10726), 1, + ACTIONS(13252), 1, anon_sym_DOLLAR, - ACTIONS(10728), 1, + ACTIONS(13254), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5745), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239790] = 12, + [296088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10730), 1, + ACTIONS(13256), 1, anon_sym_DOLLAR, - ACTIONS(10732), 1, + ACTIONS(13258), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239831] = 12, + [296129] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10734), 1, + ACTIONS(13260), 1, anon_sym_DOLLAR, - ACTIONS(10736), 1, + ACTIONS(13262), 1, anon_sym_DQUOTE, - STATE(4584), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239872] = 12, + [296170] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10738), 1, + ACTIONS(13264), 1, anon_sym_DOLLAR, - ACTIONS(10740), 1, + ACTIONS(13266), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5760), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239913] = 12, + [296211] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10745), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10748), 1, + ACTIONS(13066), 1, + sym_string_content, + ACTIONS(13068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13070), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13072), 1, + anon_sym_BQUOTE, + ACTIONS(13074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13268), 1, anon_sym_DOLLAR, - ACTIONS(10751), 1, + ACTIONS(13270), 1, anon_sym_DQUOTE, - ACTIONS(10753), 1, + STATE(5759), 1, + aux_sym_string_repeat1, + ACTIONS(13058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6127), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [296252] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10756), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10759), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10762), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10765), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4588), 1, + ACTIONS(13272), 1, + anon_sym_DOLLAR, + ACTIONS(13274), 1, + anon_sym_DQUOTE, + STATE(5864), 1, aux_sym_string_repeat1, - ACTIONS(10742), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239954] = 12, + [296293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10768), 1, + ACTIONS(13276), 1, anon_sym_DOLLAR, - ACTIONS(10770), 1, + ACTIONS(13278), 1, anon_sym_DQUOTE, - STATE(4587), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239995] = 12, + [296334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10772), 1, + ACTIONS(13280), 1, anon_sym_DOLLAR, - ACTIONS(10774), 1, + ACTIONS(13282), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5715), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240036] = 12, + [296375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10776), 1, + ACTIONS(13284), 1, anon_sym_DOLLAR, - ACTIONS(10778), 1, + ACTIONS(13286), 1, anon_sym_DQUOTE, - STATE(4592), 1, + STATE(5742), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240077] = 12, + [296416] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10780), 1, + ACTIONS(13288), 1, anon_sym_DOLLAR, - ACTIONS(10782), 1, + ACTIONS(13290), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240118] = 12, + [296457] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10784), 1, + ACTIONS(13292), 1, anon_sym_DOLLAR, - ACTIONS(10786), 1, + ACTIONS(13294), 1, anon_sym_DQUOTE, - STATE(4590), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240159] = 12, + [296498] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10788), 1, + ACTIONS(13296), 1, anon_sym_DOLLAR, - ACTIONS(10790), 1, + ACTIONS(13298), 1, anon_sym_DQUOTE, - STATE(4696), 1, + STATE(5767), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240200] = 12, + [296539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10792), 1, + ACTIONS(13300), 1, anon_sym_DOLLAR, - ACTIONS(10794), 1, + ACTIONS(13302), 1, anon_sym_DQUOTE, - STATE(4630), 1, + STATE(5756), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240241] = 12, + [296580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10796), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR, - ACTIONS(10798), 1, + ACTIONS(13306), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240282] = 12, + [296621] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10800), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR, - ACTIONS(10802), 1, + ACTIONS(13310), 1, anon_sym_DQUOTE, - STATE(4598), 1, + STATE(5763), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240323] = 12, + [296662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(13312), 1, anon_sym_DOLLAR, - ACTIONS(10806), 1, + ACTIONS(13314), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240364] = 12, + [296703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(13316), 1, anon_sym_DOLLAR, - ACTIONS(10810), 1, + ACTIONS(13318), 1, anon_sym_DQUOTE, - STATE(4578), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240405] = 12, + [296744] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10812), 1, + ACTIONS(13320), 1, anon_sym_DOLLAR, - ACTIONS(10814), 1, + ACTIONS(13322), 1, anon_sym_DQUOTE, - STATE(4596), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240446] = 12, + [296785] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13327), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13330), 1, + anon_sym_DOLLAR, + ACTIONS(13333), 1, + anon_sym_DQUOTE, + ACTIONS(13335), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13338), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13341), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13344), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13347), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10816), 1, - anon_sym_DOLLAR, - ACTIONS(10818), 1, - anon_sym_DQUOTE, - STATE(4605), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13324), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240487] = 12, + [296826] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10820), 1, + ACTIONS(13350), 1, anon_sym_DOLLAR, - ACTIONS(10822), 1, + ACTIONS(13352), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5770), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240528] = 12, + [296867] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10824), 1, + ACTIONS(13354), 1, anon_sym_DOLLAR, - ACTIONS(10826), 1, + ACTIONS(13356), 1, anon_sym_DQUOTE, - STATE(4609), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240569] = 12, + [296908] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10828), 1, + ACTIONS(13358), 1, anon_sym_DOLLAR, - ACTIONS(10830), 1, + ACTIONS(13360), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240610] = 12, + [296949] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10832), 1, + ACTIONS(13362), 1, anon_sym_DOLLAR, - ACTIONS(10834), 1, + ACTIONS(13364), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5813), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240651] = 12, + [296990] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10836), 1, + ACTIONS(13366), 1, anon_sym_DOLLAR, - ACTIONS(10838), 1, + ACTIONS(13368), 1, anon_sym_DQUOTE, - STATE(4608), 1, + STATE(5771), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240692] = 12, + [297031] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10840), 1, + ACTIONS(13370), 1, anon_sym_DOLLAR, - ACTIONS(10842), 1, + ACTIONS(13372), 1, anon_sym_DQUOTE, - STATE(4602), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240733] = 12, + [297072] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10844), 1, + ACTIONS(13374), 1, anon_sym_DOLLAR, - ACTIONS(10846), 1, + ACTIONS(13376), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5774), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240774] = 12, + [297113] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10848), 1, + ACTIONS(13378), 1, anon_sym_DOLLAR, - ACTIONS(10850), 1, + ACTIONS(13380), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240815] = 12, + [297154] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10852), 1, + ACTIONS(13382), 1, anon_sym_DOLLAR, - ACTIONS(10854), 1, + ACTIONS(13384), 1, anon_sym_DQUOTE, - STATE(4612), 1, + STATE(5776), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5289), 1, - anon_sym_DQUOTE, - STATE(5172), 1, - sym_string, - ACTIONS(1163), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(10858), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10856), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [240885] = 12, + [297195] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10860), 1, + ACTIONS(13386), 1, anon_sym_DOLLAR, - ACTIONS(10862), 1, + ACTIONS(13388), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240926] = 12, + [297236] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10864), 1, + ACTIONS(13390), 1, anon_sym_DOLLAR, - ACTIONS(10866), 1, + ACTIONS(13392), 1, anon_sym_DQUOTE, - STATE(4604), 1, + STATE(5785), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [240967] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5289), 1, - anon_sym_DQUOTE, - STATE(5172), 1, - sym_string, - ACTIONS(1173), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(10858), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10856), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [240996] = 12, + [297277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10868), 1, + ACTIONS(13394), 1, anon_sym_DOLLAR, - ACTIONS(10870), 1, + ACTIONS(13396), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5795), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241037] = 12, + [297318] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10872), 1, + ACTIONS(13398), 1, anon_sym_DOLLAR, - ACTIONS(10874), 1, + ACTIONS(13400), 1, anon_sym_DQUOTE, - STATE(4617), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241078] = 12, + [297359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10876), 1, + ACTIONS(13402), 1, anon_sym_DOLLAR, - ACTIONS(10878), 1, + ACTIONS(13404), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5778), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241119] = 12, + [297400] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10880), 1, + ACTIONS(13406), 1, anon_sym_DOLLAR, - ACTIONS(10882), 1, + ACTIONS(13408), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5714), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241160] = 12, + [297441] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10884), 1, + ACTIONS(13410), 1, anon_sym_DOLLAR, - ACTIONS(10886), 1, + ACTIONS(13412), 1, anon_sym_DQUOTE, - STATE(4615), 1, + STATE(5703), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241201] = 12, + [297482] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10888), 1, + ACTIONS(13414), 1, anon_sym_DOLLAR, - ACTIONS(10890), 1, + ACTIONS(13416), 1, anon_sym_DQUOTE, - STATE(4623), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241242] = 12, + [297523] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10892), 1, + ACTIONS(13418), 1, anon_sym_DOLLAR, - ACTIONS(10894), 1, + ACTIONS(13420), 1, anon_sym_DQUOTE, - STATE(4627), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241283] = 12, + [297564] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10896), 1, + ACTIONS(13422), 1, anon_sym_DOLLAR, - ACTIONS(10898), 1, + ACTIONS(13424), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5748), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241324] = 12, + [297605] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10900), 1, + ACTIONS(13426), 1, anon_sym_DOLLAR, - ACTIONS(10902), 1, + ACTIONS(13428), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5786), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241365] = 12, + [297646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(2074), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2072), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [297669] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10904), 1, + ACTIONS(13430), 1, anon_sym_DOLLAR, - ACTIONS(10906), 1, + ACTIONS(13432), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241406] = 12, + [297710] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10908), 1, + ACTIONS(13434), 1, anon_sym_DOLLAR, - ACTIONS(10910), 1, + ACTIONS(13436), 1, anon_sym_DQUOTE, - STATE(4618), 1, + STATE(5790), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241447] = 12, + [297751] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10912), 1, + ACTIONS(13438), 1, anon_sym_DOLLAR, - ACTIONS(10914), 1, + ACTIONS(13440), 1, anon_sym_DQUOTE, - STATE(4628), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241488] = 12, + [297792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10916), 1, + ACTIONS(13442), 1, anon_sym_DOLLAR, - ACTIONS(10918), 1, + ACTIONS(13444), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5792), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241529] = 12, + [297833] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10920), 1, + ACTIONS(13446), 1, anon_sym_DOLLAR, - ACTIONS(10922), 1, + ACTIONS(13448), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241570] = 12, + [297874] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10924), 1, + ACTIONS(13450), 1, anon_sym_DOLLAR, - ACTIONS(10926), 1, + ACTIONS(13452), 1, anon_sym_DQUOTE, - STATE(4622), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241611] = 12, + [297915] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10928), 1, + ACTIONS(13454), 1, anon_sym_DOLLAR, - ACTIONS(10930), 1, + ACTIONS(13456), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5794), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241652] = 12, + [297956] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10932), 1, + ACTIONS(13458), 1, anon_sym_DOLLAR, - ACTIONS(10934), 1, + ACTIONS(13460), 1, anon_sym_DQUOTE, - STATE(4633), 1, + STATE(5803), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241693] = 12, + [297997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(13462), 1, anon_sym_DOLLAR, - ACTIONS(10938), 1, + ACTIONS(13464), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241734] = 12, + [298038] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10940), 1, + ACTIONS(13466), 1, anon_sym_DOLLAR, - ACTIONS(10942), 1, + ACTIONS(13468), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5798), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241775] = 12, + [298079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10944), 1, + ACTIONS(13470), 1, anon_sym_DOLLAR, - ACTIONS(10946), 1, + ACTIONS(13472), 1, anon_sym_DQUOTE, - STATE(4651), 1, + STATE(5751), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241816] = 12, + [298120] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10948), 1, + ACTIONS(13474), 1, anon_sym_DOLLAR, - ACTIONS(10950), 1, + ACTIONS(13476), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241857] = 12, + [298161] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10952), 1, + ACTIONS(13478), 1, anon_sym_DOLLAR, - ACTIONS(10954), 1, + ACTIONS(13480), 1, anon_sym_DQUOTE, - STATE(4632), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241898] = 12, + [298202] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10956), 1, + ACTIONS(13482), 1, anon_sym_DOLLAR, - ACTIONS(10958), 1, + ACTIONS(13484), 1, anon_sym_DQUOTE, - STATE(4642), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241939] = 12, + [298243] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10960), 1, + ACTIONS(13486), 1, anon_sym_DOLLAR, - ACTIONS(10962), 1, + ACTIONS(13488), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5802), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [241980] = 12, + [298284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10964), 1, + ACTIONS(13490), 1, anon_sym_DOLLAR, - ACTIONS(10966), 1, + ACTIONS(13492), 1, anon_sym_DQUOTE, - STATE(4645), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242021] = 12, + [298325] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10968), 1, + ACTIONS(13494), 1, anon_sym_DOLLAR, - ACTIONS(10970), 1, + ACTIONS(13496), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5765), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242062] = 12, + [298366] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10972), 1, + ACTIONS(13498), 1, anon_sym_DOLLAR, - ACTIONS(10974), 1, + ACTIONS(13500), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5805), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242103] = 12, + [298407] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10976), 1, + ACTIONS(13502), 1, anon_sym_DOLLAR, - ACTIONS(10978), 1, + ACTIONS(13504), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242144] = 12, + [298448] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10980), 1, + ACTIONS(13506), 1, anon_sym_DOLLAR, - ACTIONS(10982), 1, + ACTIONS(13508), 1, anon_sym_DQUOTE, - STATE(4624), 1, + STATE(5808), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242185] = 12, + [298489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10984), 1, + ACTIONS(13510), 1, anon_sym_DOLLAR, - ACTIONS(10986), 1, + ACTIONS(13512), 1, anon_sym_DQUOTE, - STATE(4638), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242226] = 12, + [298530] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10988), 1, + ACTIONS(13514), 1, anon_sym_DOLLAR, - ACTIONS(10990), 1, + ACTIONS(13516), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5810), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242267] = 12, + [298571] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10992), 1, + ACTIONS(13518), 1, anon_sym_DOLLAR, - ACTIONS(10994), 1, + ACTIONS(13520), 1, anon_sym_DQUOTE, - STATE(4635), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242308] = 12, + [298612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10996), 1, + ACTIONS(13522), 1, anon_sym_DOLLAR, - ACTIONS(10998), 1, + ACTIONS(13524), 1, anon_sym_DQUOTE, - STATE(4665), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242349] = 12, + [298653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11000), 1, + ACTIONS(13526), 1, anon_sym_DOLLAR, - ACTIONS(11002), 1, + ACTIONS(13528), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5812), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242390] = 12, + [298694] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11004), 1, + ACTIONS(13530), 1, anon_sym_DOLLAR, - ACTIONS(11006), 1, + ACTIONS(13532), 1, anon_sym_DQUOTE, - STATE(4653), 1, + STATE(5821), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242431] = 12, + [298735] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11008), 1, + ACTIONS(13534), 1, anon_sym_DOLLAR, - ACTIONS(11010), 1, + ACTIONS(13536), 1, anon_sym_DQUOTE, - STATE(4640), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242472] = 12, + [298776] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11012), 1, + ACTIONS(13538), 1, anon_sym_DOLLAR, - ACTIONS(11014), 1, + ACTIONS(13540), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5816), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242513] = 12, + [298817] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11016), 1, + ACTIONS(13542), 1, anon_sym_DOLLAR, - ACTIONS(11018), 1, + ACTIONS(13544), 1, anon_sym_DQUOTE, - STATE(4648), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242554] = 12, + [298858] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11020), 1, + ACTIONS(13546), 1, anon_sym_DOLLAR, - ACTIONS(11022), 1, + ACTIONS(13548), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5818), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242595] = 12, + [298899] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11024), 1, + ACTIONS(13550), 1, anon_sym_DOLLAR, - ACTIONS(11026), 1, + ACTIONS(13552), 1, anon_sym_DQUOTE, - STATE(4656), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242636] = 12, + [298940] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11028), 1, + ACTIONS(13554), 1, anon_sym_DOLLAR, - ACTIONS(11030), 1, + ACTIONS(13556), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242677] = 12, + [298981] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11032), 1, + ACTIONS(13558), 1, anon_sym_DOLLAR, - ACTIONS(11034), 1, + ACTIONS(13560), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5829), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242718] = 12, + [299022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11036), 1, + ACTIONS(13562), 1, anon_sym_DOLLAR, - ACTIONS(11038), 1, + ACTIONS(13564), 1, anon_sym_DQUOTE, - STATE(4663), 1, + STATE(5820), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242759] = 12, + [299063] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11040), 1, + ACTIONS(13566), 1, anon_sym_DOLLAR, - ACTIONS(11042), 1, + ACTIONS(13568), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242800] = 12, + [299104] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11044), 1, + ACTIONS(13570), 1, anon_sym_DOLLAR, - ACTIONS(11046), 1, + ACTIONS(13572), 1, anon_sym_DQUOTE, - STATE(4660), 1, + STATE(5824), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242841] = 12, + [299145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(13574), 1, anon_sym_DOLLAR, - ACTIONS(11050), 1, + ACTIONS(13576), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242882] = 12, + [299186] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11052), 1, + ACTIONS(13578), 1, anon_sym_DOLLAR, - ACTIONS(11054), 1, + ACTIONS(13580), 1, anon_sym_DQUOTE, - STATE(4583), 1, + STATE(5826), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242923] = 12, + [299227] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11056), 1, + ACTIONS(13582), 1, anon_sym_DOLLAR, - ACTIONS(11058), 1, + ACTIONS(13584), 1, anon_sym_DQUOTE, - STATE(4655), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [242964] = 12, + [299268] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11060), 1, + ACTIONS(13586), 1, anon_sym_DOLLAR, - ACTIONS(11062), 1, + ACTIONS(13588), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243005] = 12, + [299309] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11064), 1, + ACTIONS(13590), 1, anon_sym_DOLLAR, - ACTIONS(11066), 1, + ACTIONS(13592), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5828), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243046] = 12, + [299350] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11068), 1, + ACTIONS(13594), 1, anon_sym_DOLLAR, - ACTIONS(11070), 1, + ACTIONS(13596), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243087] = 12, + [299391] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11072), 1, + ACTIONS(13598), 1, anon_sym_DOLLAR, - ACTIONS(11074), 1, + ACTIONS(13600), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5831), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243128] = 12, + [299432] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11076), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR, - ACTIONS(11078), 1, + ACTIONS(13604), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5839), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243169] = 12, + [299473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11080), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR, - ACTIONS(11082), 1, + ACTIONS(13608), 1, anon_sym_DQUOTE, - STATE(4672), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243210] = 12, + [299514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11084), 1, + ACTIONS(13610), 1, anon_sym_DOLLAR, - ACTIONS(11086), 1, + ACTIONS(13612), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5834), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - sym__special_character, - [243274] = 12, + [299555] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11088), 1, + ACTIONS(13614), 1, anon_sym_DOLLAR, - ACTIONS(11090), 1, + ACTIONS(13616), 1, anon_sym_DQUOTE, - STATE(4667), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243315] = 12, + [299596] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11092), 1, + ACTIONS(13618), 1, anon_sym_DOLLAR, - ACTIONS(11094), 1, + ACTIONS(13620), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5836), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243356] = 12, + [299637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11096), 1, + ACTIONS(13622), 1, anon_sym_DOLLAR, - ACTIONS(11098), 1, + ACTIONS(13624), 1, anon_sym_DQUOTE, - STATE(4664), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243397] = 12, + [299678] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11100), 1, + ACTIONS(13626), 1, anon_sym_DOLLAR, - ACTIONS(11102), 1, + ACTIONS(13628), 1, anon_sym_DQUOTE, - STATE(4700), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243438] = 12, + [299719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11104), 1, + ACTIONS(13630), 1, anon_sym_DOLLAR, - ACTIONS(11106), 1, + ACTIONS(13632), 1, anon_sym_DQUOTE, - STATE(4681), 1, + STATE(5838), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243479] = 12, + [299760] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11108), 1, + ACTIONS(13634), 1, anon_sym_DOLLAR, - ACTIONS(11110), 1, + ACTIONS(13636), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243520] = 12, + [299801] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11112), 1, + ACTIONS(13638), 1, anon_sym_DOLLAR, - ACTIONS(11114), 1, + ACTIONS(13640), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5841), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243561] = 12, + [299842] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11116), 1, + ACTIONS(13642), 1, anon_sym_DOLLAR, - ACTIONS(11118), 1, + ACTIONS(13644), 1, anon_sym_DQUOTE, - STATE(4666), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243602] = 12, + [299883] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11120), 1, + ACTIONS(13646), 1, anon_sym_DOLLAR, - ACTIONS(11122), 1, + ACTIONS(13648), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5843), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243643] = 12, + [299924] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11124), 1, + ACTIONS(13650), 1, anon_sym_DOLLAR, - ACTIONS(11126), 1, + ACTIONS(13652), 1, anon_sym_DQUOTE, - STATE(4697), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243684] = 12, + [299965] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11128), 1, + ACTIONS(13654), 1, anon_sym_DOLLAR, - ACTIONS(11130), 1, + ACTIONS(13656), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5845), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243725] = 12, + [300006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11132), 1, + ACTIONS(13658), 1, anon_sym_DOLLAR, - ACTIONS(11134), 1, + ACTIONS(13660), 1, anon_sym_DQUOTE, - STATE(4677), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243766] = 12, + [300047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11136), 1, + ACTIONS(13662), 1, anon_sym_DOLLAR, - ACTIONS(11138), 1, + ACTIONS(13664), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243807] = 12, + [300088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11140), 1, + ACTIONS(13666), 1, anon_sym_DOLLAR, - ACTIONS(11142), 1, + ACTIONS(13668), 1, anon_sym_DQUOTE, - STATE(4691), 1, + STATE(5781), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243848] = 12, + [300129] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11144), 1, + ACTIONS(13670), 1, anon_sym_DOLLAR, - ACTIONS(11146), 1, + ACTIONS(13672), 1, anon_sym_DQUOTE, - STATE(4676), 1, + STATE(5847), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243889] = 12, + [300170] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11148), 1, + ACTIONS(13674), 1, anon_sym_DOLLAR, - ACTIONS(11150), 1, + ACTIONS(13676), 1, anon_sym_DQUOTE, - STATE(4669), 1, + STATE(5857), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243930] = 12, + [300211] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(13678), 1, anon_sym_DOLLAR, - ACTIONS(11154), 1, + ACTIONS(13680), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5717), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [243971] = 12, + [300252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11156), 1, + ACTIONS(13682), 1, anon_sym_DOLLAR, - ACTIONS(11158), 1, + ACTIONS(13684), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244012] = 12, + [300293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11160), 1, + ACTIONS(13686), 1, anon_sym_DOLLAR, - ACTIONS(11162), 1, + ACTIONS(13688), 1, anon_sym_DQUOTE, - STATE(4683), 1, + STATE(5853), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244053] = 12, + [300334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11164), 1, + ACTIONS(13690), 1, anon_sym_DOLLAR, - ACTIONS(11166), 1, + ACTIONS(13692), 1, anon_sym_DQUOTE, - STATE(4687), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244094] = 12, + [300375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11168), 1, + ACTIONS(13694), 1, anon_sym_DOLLAR, - ACTIONS(11170), 1, + ACTIONS(13696), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5855), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244135] = 12, + [300416] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11172), 1, + ACTIONS(13698), 1, anon_sym_DOLLAR, - ACTIONS(11174), 1, + ACTIONS(13700), 1, anon_sym_DQUOTE, - STATE(4688), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244176] = 12, + [300457] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11176), 1, + ACTIONS(13702), 1, anon_sym_DOLLAR, - ACTIONS(11178), 1, + ACTIONS(13704), 1, anon_sym_DQUOTE, - STATE(4699), 1, + STATE(5860), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244217] = 12, + [300498] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11180), 1, + ACTIONS(13706), 1, anon_sym_DOLLAR, - ACTIONS(11182), 1, + ACTIONS(13708), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244258] = 12, + [300539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11184), 1, + ACTIONS(13710), 1, anon_sym_DOLLAR, - ACTIONS(11186), 1, + ACTIONS(13712), 1, anon_sym_DQUOTE, - STATE(4679), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244299] = 12, + [300580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11188), 1, + ACTIONS(13714), 1, anon_sym_DOLLAR, - ACTIONS(11190), 1, + ACTIONS(13716), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5859), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244340] = 12, + [300621] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11192), 1, + ACTIONS(13718), 1, anon_sym_DOLLAR, - ACTIONS(11194), 1, + ACTIONS(13720), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244381] = 12, + [300662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11196), 1, + ACTIONS(13722), 1, anon_sym_DOLLAR, - ACTIONS(11198), 1, + ACTIONS(13724), 1, anon_sym_DQUOTE, - STATE(4694), 1, + STATE(5862), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244422] = 12, + [300703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(10698), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(10704), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11200), 1, + ACTIONS(13726), 1, anon_sym_DOLLAR, - ACTIONS(11202), 1, + ACTIONS(13728), 1, anon_sym_DQUOTE, - STATE(4588), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(10688), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, + STATE(6127), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [244463] = 12, + [300744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(3777), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3773), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13170), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300800] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13118), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300828] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13246), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300856] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13142), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8556), 1, + anon_sym_DQUOTE, + ACTIONS(8560), 1, + sym_variable_name, + STATE(5364), 1, + sym_string, + ACTIONS(8558), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8554), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13738), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13740), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13742), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [300996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13744), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + sym_variable_name, + STATE(4393), 1, + sym_string, + ACTIONS(7675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7671), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301052] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4857), 1, + anon_sym_DQUOTE, + ACTIONS(4861), 1, + sym_variable_name, + STATE(2638), 1, + sym_string, + ACTIONS(4859), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4855), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301080] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13746), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13114), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301136] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5061), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + sym_variable_name, + STATE(2712), 1, + sym_string, + ACTIONS(5063), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5059), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13134), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13708), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13190), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 1, + anon_sym_DQUOTE, + ACTIONS(4562), 1, + sym_variable_name, + STATE(2447), 1, + sym_string, + ACTIONS(4560), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4556), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DQUOTE, + ACTIONS(2155), 1, + sym_variable_name, + STATE(1282), 1, + sym_string, + ACTIONS(2153), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2151), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301304] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13748), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13318), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13750), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301388] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13752), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13754), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13314), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13222), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8714), 1, + anon_sym_DQUOTE, + ACTIONS(8718), 1, + sym_variable_name, + STATE(5444), 1, + sym_string, + ACTIONS(8716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8712), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301528] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13756), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 1, + anon_sym_DQUOTE, + ACTIONS(5156), 1, + sym_variable_name, + STATE(2566), 1, + sym_string, + ACTIONS(5154), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5150), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8868), 1, + anon_sym_DQUOTE, + ACTIONS(8872), 1, + sym_variable_name, + STATE(5409), 1, + sym_string, + ACTIONS(8870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8866), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(10698), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, - anon_sym_BQUOTE, - ACTIONS(10704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11204), 1, - anon_sym_DOLLAR, - ACTIONS(11206), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13758), 1, anon_sym_DQUOTE, - STATE(4588), 1, - aux_sym_string_repeat1, - ACTIONS(10688), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [244504] = 12, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10696), 1, + ACTIONS(13712), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(10698), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10702), 1, - anon_sym_BQUOTE, - ACTIONS(10704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11208), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(11210), 1, - anon_sym_DQUOTE, - STATE(4580), 1, - aux_sym_string_repeat1, - ACTIONS(10688), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4917), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [244545] = 3, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1941), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [244567] = 3, + ACTIONS(13250), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1979), 12, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - [244589] = 5, + ACTIONS(13258), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(5086), 1, anon_sym_DQUOTE, - STATE(1535), 1, + ACTIONS(5090), 1, + sym_variable_name, + STATE(2442), 1, sym_string, - ACTIONS(2988), 2, + ACTIONS(5088), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2986), 9, + ACTIONS(5084), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266176,17 +326907,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244614] = 5, + [301752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10728), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13760), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301780] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13178), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266196,17 +326951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244639] = 5, + [301808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(8623), 1, anon_sym_DQUOTE, - STATE(932), 1, + ACTIONS(8627), 1, + sym_variable_name, + STATE(5204), 1, sym_string, - ACTIONS(1890), 2, + ACTIONS(8625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1888), 9, + ACTIONS(8621), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266216,17 +326973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244664] = 5, + [301836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11218), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13762), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266236,17 +326995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244689] = 5, + [301864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13764), 1, anon_sym_DQUOTE, - STATE(4198), 1, - sym_string, - ACTIONS(7474), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7470), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266256,17 +327017,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244714] = 5, + [301892] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13290), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11220), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [301920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(1237), 1, + sym_variable_name, + STATE(489), 1, + sym_string, + ACTIONS(1233), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1229), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266276,17 +327061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244739] = 5, + [301948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(2428), 1, anon_sym_DQUOTE, - STATE(4568), 1, + ACTIONS(2432), 1, + sym_variable_name, + STATE(1204), 1, sym_string, - ACTIONS(9280), 2, + ACTIONS(2430), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9278), 9, + ACTIONS(2426), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266296,17 +327083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244764] = 5, + [301976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11222), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13766), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266316,39 +327105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244789] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11226), 1, - anon_sym_LT_LT, - ACTIONS(11232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11234), 1, - anon_sym_LT_LT_LT, - ACTIONS(11230), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11228), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11224), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [244818] = 5, + [302004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10902), 1, - anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13768), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266358,17 +327127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244843] = 5, + [302032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10882), 1, - anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13770), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266378,17 +327149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244868] = 5, + [302060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11022), 1, + ACTIONS(13322), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266398,17 +327171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244893] = 5, + [302088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11194), 1, + ACTIONS(13728), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266418,17 +327193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244918] = 5, + [302116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(13194), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266438,17 +327215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244943] = 5, + [302144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11236), 1, + ACTIONS(1245), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(1249), 1, + sym_variable_name, + STATE(503), 1, + sym_string, + ACTIONS(1247), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266458,17 +327237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244968] = 5, + [302172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11238), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13772), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266478,17 +327259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [244993] = 5, + [302200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10970), 1, + ACTIONS(13294), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266498,17 +327281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245018] = 5, + [302228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11240), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13774), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266518,17 +327303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245043] = 5, + [302256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10922), 1, + ACTIONS(8694), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(8698), 1, + sym_variable_name, + STATE(5487), 1, + sym_string, + ACTIONS(8696), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(8692), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266538,17 +327325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245068] = 5, + [302284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10878), 1, + ACTIONS(13778), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13782), 1, + sym_variable_name, + STATE(6761), 1, + sym_string, + ACTIONS(13780), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13776), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266558,17 +327347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245093] = 5, + [302312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11242), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13784), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266578,17 +327369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245118] = 5, + [302340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11244), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13786), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266598,17 +327391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245143] = 5, + [302368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11086), 1, + ACTIONS(4397), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(4401), 1, + sym_variable_name, + STATE(2412), 1, + sym_string, + ACTIONS(4399), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(4395), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266618,17 +327413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245168] = 5, + [302396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - STATE(3794), 1, + ACTIONS(2959), 1, + sym_variable_name, + STATE(1213), 1, sym_string, - ACTIONS(6649), 2, + ACTIONS(2957), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6647), 9, + ACTIONS(2955), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266638,17 +327435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245193] = 5, + [302424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(12912), 1, anon_sym_DQUOTE, - STATE(735), 1, + ACTIONS(12916), 1, + sym_variable_name, + STATE(6206), 1, sym_string, - ACTIONS(1525), 2, + ACTIONS(12914), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1523), 9, + ACTIONS(12910), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266658,17 +327457,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245218] = 5, + [302452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(3701), 1, + anon_sym_DQUOTE, + ACTIONS(3705), 1, + sym_variable_name, + STATE(2025), 1, + sym_string, + ACTIONS(3703), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3699), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [302480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13356), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [302508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11246), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13788), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266678,17 +327523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245243] = 5, + [302536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11070), 1, + ACTIONS(13720), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266698,17 +327545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245268] = 5, + [302564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - STATE(2897), 1, + ACTIONS(3427), 1, + sym_variable_name, + STATE(1686), 1, sym_string, - ACTIONS(4918), 2, + ACTIONS(3425), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4916), 9, + ACTIONS(3421), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266718,17 +327567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245293] = 5, + [302592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11248), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13790), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266738,17 +327589,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245318] = 5, + [302620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13218), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11250), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [302648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13792), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266758,17 +327633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245343] = 5, + [302676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11158), 1, + ACTIONS(13230), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266778,17 +327655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245368] = 5, + [302704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11252), 1, + ACTIONS(4663), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(4667), 1, + sym_variable_name, + STATE(2716), 1, + sym_string, + ACTIONS(4665), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(4661), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266798,17 +327677,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245393] = 5, + [302732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10978), 1, + ACTIONS(4797), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(4801), 1, + sym_variable_name, + STATE(2585), 1, + sym_string, + ACTIONS(4799), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4795), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [302760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13794), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266818,17 +327721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245418] = 5, + [302788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11034), 1, + ACTIONS(13664), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266838,39 +327743,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245443] = 7, - ACTIONS(71), 1, + [302816] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(11226), 1, - anon_sym_LT_LT, - ACTIONS(11232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11260), 1, - anon_sym_LT_LT_LT, - ACTIONS(11258), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11256), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11254), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [245472] = 5, + ACTIONS(13360), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [302844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(2307), 1, anon_sym_DQUOTE, - STATE(1987), 1, + ACTIONS(2947), 1, + sym_variable_name, + STATE(1432), 1, sym_string, - ACTIONS(4332), 2, + ACTIONS(2945), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4328), 9, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266880,17 +327787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245497] = 5, + [302872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11262), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13796), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266900,17 +327809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245522] = 5, + [302900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11264), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13798), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266920,17 +327831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245547] = 5, + [302928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11050), 1, + ACTIONS(13372), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266940,17 +327853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245572] = 5, + [302956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11266), 1, + ACTIONS(13238), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266960,17 +327875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245597] = 5, + [302984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11268), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13800), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -266980,17 +327897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245622] = 5, + [303012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10862), 1, + ACTIONS(13692), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267000,17 +327919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245647] = 5, + [303040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(13700), 1, anon_sym_DQUOTE, - STATE(2374), 1, - sym_string, - ACTIONS(4372), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4368), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267020,17 +327941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245672] = 5, + [303068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11270), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13802), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267040,17 +327963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245697] = 5, + [303096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11074), 1, + ACTIONS(1819), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(1823), 1, + sym_variable_name, + STATE(1125), 1, + sym_string, + ACTIONS(1821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1817), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267060,17 +327985,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245722] = 5, + [303124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11272), 1, + ACTIONS(4867), 1, + anon_sym_DQUOTE, + ACTIONS(4871), 1, + sym_variable_name, + STATE(2525), 1, + sym_string, + ACTIONS(4869), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4865), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13380), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267080,17 +328029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245747] = 5, + [303180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(5614), 1, anon_sym_DQUOTE, - STATE(3687), 1, + ACTIONS(5719), 1, + sym_variable_name, + STATE(3393), 1, sym_string, - ACTIONS(6385), 2, + ACTIONS(5717), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6383), 9, + ACTIONS(5715), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267100,17 +328051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245772] = 5, + [303208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11274), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13804), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267120,17 +328073,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245797] = 5, + [303236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11110), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13806), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13808), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267140,17 +328117,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245822] = 5, + [303292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11130), 1, + ACTIONS(4084), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(7613), 1, + sym_variable_name, + STATE(4606), 1, + sym_string, + ACTIONS(7611), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7609), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303320] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13388), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267160,17 +328161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245847] = 5, + [303348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - STATE(1734), 1, + ACTIONS(1807), 1, + sym_variable_name, + STATE(922), 1, sym_string, - ACTIONS(3339), 2, + ACTIONS(1805), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3337), 9, + ACTIONS(1803), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267180,17 +328183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245872] = 5, + [303376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10846), 1, + ACTIONS(13400), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267200,17 +328205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245897] = 5, + [303404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11276), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13810), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267220,17 +328227,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245922] = 5, + [303432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13064), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11278), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303460] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13262), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267240,17 +328271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245947] = 5, + [303488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11138), 1, + ACTIONS(13278), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267260,17 +328293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245972] = 5, + [303516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10822), 1, + ACTIONS(13684), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267280,17 +328315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [245997] = 5, + [303544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10834), 1, + ACTIONS(13416), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267300,17 +328337,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246022] = 5, + [303572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13078), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11280), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13812), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267320,17 +328381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246047] = 5, + [303628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - STATE(1681), 1, + ACTIONS(1815), 1, + sym_variable_name, + STATE(1061), 1, sym_string, - ACTIONS(3368), 2, + ACTIONS(1813), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3366), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267340,17 +328403,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246072] = 5, + [303656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(6492), 1, anon_sym_DQUOTE, - STATE(5482), 1, + ACTIONS(13048), 1, + sym_variable_name, + STATE(6513), 1, sym_string, - ACTIONS(11286), 2, + ACTIONS(13046), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13044), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13814), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11282), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267360,17 +328447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246097] = 5, + [303712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(6210), 1, anon_sym_DQUOTE, - STATE(4392), 1, + ACTIONS(6214), 1, + sym_variable_name, + STATE(3525), 1, sym_string, - ACTIONS(8672), 2, + ACTIONS(6212), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8668), 9, + ACTIONS(6208), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267380,17 +328469,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246122] = 5, + [303740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(13420), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13816), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, anon_sym_DQUOTE, - STATE(1312), 1, + ACTIONS(5162), 1, + sym_variable_name, + STATE(2734), 1, sym_string, - ACTIONS(2826), 2, + ACTIONS(5160), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2822), 9, + ACTIONS(5158), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267400,17 +328535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246147] = 5, + [303824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11288), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13818), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267420,17 +328557,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246172] = 5, + [303852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(2608), 1, + anon_sym_DQUOTE, + ACTIONS(2778), 1, + sym_variable_name, + STATE(1525), 1, + sym_string, + ACTIONS(2776), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2774), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [303880] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11290), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13820), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267440,17 +328601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246197] = 5, + [303908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11292), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13822), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267460,17 +328623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246222] = 5, + [303936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11190), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(9154), 1, + sym_variable_name, + STATE(5537), 1, + sym_string, + ACTIONS(9152), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(9148), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267480,17 +328645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246247] = 5, + [303964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11078), 1, + ACTIONS(13432), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267500,17 +328667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246272] = 5, + [303992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - STATE(1585), 1, + ACTIONS(7444), 1, + sym_variable_name, + STATE(4389), 1, sym_string, - ACTIONS(3374), 2, + ACTIONS(7442), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3370), 9, + ACTIONS(7440), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267520,17 +328689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246297] = 5, + [304020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10930), 1, + ACTIONS(13660), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267540,17 +328711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246322] = 5, + [304048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11294), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13824), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267560,39 +328733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246347] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11298), 1, - anon_sym_LT_LT, - ACTIONS(11304), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11306), 1, - anon_sym_LT_LT_LT, - ACTIONS(11302), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11300), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11296), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [246376] = 5, + [304076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(13306), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267602,17 +328755,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246401] = 5, + [304104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10906), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13826), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [304132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13440), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267622,17 +328799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246426] = 5, + [304160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(13452), 1, anon_sym_DQUOTE, - STATE(2136), 1, - sym_string, - ACTIONS(4396), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4392), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267642,17 +328821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246451] = 5, + [304188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11308), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13828), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267662,17 +328843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246476] = 5, + [304216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11310), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13830), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267682,17 +328865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246501] = 5, + [304244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11312), 1, + ACTIONS(13448), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267702,17 +328887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246526] = 5, + [304272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11314), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13832), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267722,17 +328909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246551] = 5, + [304300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(5874), 1, anon_sym_DQUOTE, - STATE(1032), 1, + ACTIONS(11244), 1, + sym_variable_name, + STATE(5696), 1, sym_string, - ACTIONS(2149), 2, + ACTIONS(11242), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2145), 9, + ACTIONS(11240), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267742,17 +328931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246576] = 5, + [304328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11122), 1, + ACTIONS(13214), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267762,17 +328953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246601] = 5, + [304356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(3371), 1, anon_sym_DQUOTE, - STATE(2022), 1, + ACTIONS(7153), 1, + sym_variable_name, + STATE(4512), 1, sym_string, - ACTIONS(4296), 2, + ACTIONS(7151), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4292), 9, + ACTIONS(7149), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267782,17 +328975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246626] = 5, + [304384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11062), 1, - anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13834), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267802,17 +328997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246651] = 5, + [304412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11316), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13836), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267822,17 +329019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246676] = 5, + [304440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10712), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(2070), 1, + sym_variable_name, + STATE(1176), 1, + sym_string, + ACTIONS(2068), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(2066), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267842,17 +329041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246701] = 5, + [304468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11030), 1, + ACTIONS(13464), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267862,17 +329063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246726] = 5, + [304496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7616), 1, + ACTIONS(13484), 1, anon_sym_DQUOTE, - STATE(4323), 1, - sym_string, - ACTIONS(7618), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7614), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267882,17 +329085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246751] = 5, + [304524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(13652), 1, anon_sym_DQUOTE, - STATE(382), 1, - sym_string, - ACTIONS(1169), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1165), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267902,17 +329107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246776] = 5, + [304552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11318), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13838), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267922,17 +329129,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246801] = 5, + [304580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10974), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13840), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [304608] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13842), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267942,17 +329173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246826] = 5, + [304636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11320), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13844), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267962,17 +329195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246851] = 5, + [304664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - STATE(5172), 1, + ACTIONS(7757), 1, + sym_variable_name, + STATE(4808), 1, sym_string, - ACTIONS(10858), 2, + ACTIONS(7755), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10856), 9, + ACTIONS(7753), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -267982,17 +329217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246876] = 5, + [304692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11170), 1, + ACTIONS(13480), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268002,17 +329239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246901] = 5, + [304720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3439), 1, anon_sym_DQUOTE, - STATE(1964), 1, + ACTIONS(3653), 1, + sym_variable_name, + STATE(1878), 1, sym_string, - ACTIONS(3739), 2, + ACTIONS(3651), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3735), 9, + ACTIONS(3649), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268022,17 +329261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246926] = 5, + [304748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11322), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13846), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268042,17 +329283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246951] = 5, + [304776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11324), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13848), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268062,17 +329305,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [246976] = 5, + [304804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13492), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [304832] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11326), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13850), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268082,17 +329349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247001] = 5, + [304860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(2339), 1, anon_sym_DQUOTE, - STATE(1051), 1, + ACTIONS(2492), 1, + sym_variable_name, + STATE(1463), 1, sym_string, - ACTIONS(2339), 2, + ACTIONS(2490), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2337), 9, + ACTIONS(2488), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268102,17 +329371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247026] = 5, + [304888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11328), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13852), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268122,39 +329393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247051] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11226), 1, - anon_sym_LT_LT, - ACTIONS(11232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11336), 1, - anon_sym_LT_LT_LT, - ACTIONS(11334), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11332), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11330), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [247080] = 5, + [304916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11094), 1, + ACTIONS(4115), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(4119), 1, + sym_variable_name, + STATE(2334), 1, + sym_string, + ACTIONS(4117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(4113), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268164,17 +329415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247105] = 5, + [304944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, + ACTIONS(13504), 1, anon_sym_DQUOTE, - STATE(2960), 1, - sym_string, - ACTIONS(5173), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5169), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268184,17 +329437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247130] = 5, + [304972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11338), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13854), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268204,17 +329459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247155] = 5, + [305000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11002), 1, - anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13856), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268224,17 +329481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247180] = 5, + [305028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10942), 1, + ACTIONS(13644), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268244,17 +329503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247205] = 5, + [305056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10732), 1, + ACTIONS(13512), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268264,17 +329525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247230] = 5, + [305084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11014), 1, + ACTIONS(13524), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268284,17 +329547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247255] = 5, + [305112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13858), 1, anon_sym_DQUOTE, - STATE(1451), 1, - sym_string, - ACTIONS(3474), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3472), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268304,17 +329569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247280] = 5, + [305140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11340), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13860), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268324,17 +329591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247305] = 5, + [305168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11342), 1, + ACTIONS(13520), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268344,17 +329613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247330] = 5, + [305196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10724), 1, + ACTIONS(1619), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(1623), 1, + sym_variable_name, + STATE(868), 1, + sym_string, + ACTIONS(1621), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1617), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268364,17 +329635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247355] = 5, + [305224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(13476), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268384,17 +329657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247380] = 5, + [305252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11344), 1, + ACTIONS(13106), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268404,17 +329679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247405] = 5, + [305280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11346), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13862), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268424,17 +329701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247430] = 5, + [305308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(7358), 1, anon_sym_DQUOTE, - STATE(1388), 1, + ACTIONS(7362), 1, + sym_variable_name, + STATE(4457), 1, sym_string, - ACTIONS(3061), 2, + ACTIONS(7360), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3059), 9, + ACTIONS(7356), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268444,17 +329723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247455] = 5, + [305336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13864), 1, anon_sym_DQUOTE, - STATE(1065), 1, - sym_string, - ACTIONS(2811), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2809), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268464,17 +329745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247480] = 5, + [305364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2867), 1, anon_sym_DQUOTE, - STATE(1398), 1, + ACTIONS(6852), 1, + sym_variable_name, + STATE(4263), 1, sym_string, - ACTIONS(3299), 2, + ACTIONS(6850), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3297), 9, + ACTIONS(6848), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268484,17 +329767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247505] = 5, + [305392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11348), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13866), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268504,17 +329789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247530] = 5, + [305420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10990), 1, + ACTIONS(13536), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268524,17 +329811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247555] = 5, + [305448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11350), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13868), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268544,17 +329833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247580] = 5, + [305476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10694), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(3647), 1, + sym_variable_name, + STATE(1547), 1, + sym_string, + ACTIONS(3645), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3643), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268564,17 +329855,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247605] = 5, + [305504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10962), 1, + ACTIONS(3030), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(7135), 1, + sym_variable_name, + STATE(4446), 1, + sym_string, + ACTIONS(7133), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7131), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [305532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13636), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268584,17 +329899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247630] = 5, + [305560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13870), 1, anon_sym_DQUOTE, - STATE(2077), 1, - sym_string, - ACTIONS(3895), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3891), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268604,17 +329921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247655] = 5, + [305588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - STATE(1353), 1, + ACTIONS(3286), 1, + sym_variable_name, + STATE(1628), 1, sym_string, - ACTIONS(2968), 2, + ACTIONS(3284), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2964), 9, + ACTIONS(3280), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268624,17 +329943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247680] = 5, + [305616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10774), 1, + ACTIONS(3115), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(3119), 1, + sym_variable_name, + STATE(1864), 1, + sym_string, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3113), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268644,17 +329965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247705] = 5, + [305644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13872), 1, anon_sym_DQUOTE, - STATE(3621), 1, - sym_string, - ACTIONS(6351), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6347), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268664,17 +329987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247730] = 5, + [305672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10782), 1, + ACTIONS(13544), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268684,17 +330009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247755] = 5, + [305700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11352), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13874), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268704,17 +330031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247780] = 5, + [305728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(13556), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268724,17 +330053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247805] = 5, + [305756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(252), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - STATE(2217), 1, + ACTIONS(2953), 1, + sym_variable_name, + STATE(1585), 1, sym_string, - ACTIONS(4342), 2, + ACTIONS(2951), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4340), 9, + ACTIONS(2949), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268744,17 +330075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247830] = 5, + [305784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11354), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13876), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268764,17 +330097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247855] = 5, + [305812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13878), 1, anon_sym_DQUOTE, - STATE(1078), 1, - sym_string, - ACTIONS(2928), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2926), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268784,17 +330119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247880] = 5, + [305840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(3189), 1, anon_sym_DQUOTE, - STATE(1277), 1, + ACTIONS(4058), 1, + sym_variable_name, + STATE(1737), 1, sym_string, - ACTIONS(2846), 2, + ACTIONS(4056), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2844), 9, + ACTIONS(4054), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268804,17 +330141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247905] = 5, + [305868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11356), 1, + ACTIONS(1791), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(1795), 1, + sym_variable_name, + STATE(998), 1, + sym_string, + ACTIONS(1793), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1789), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268824,17 +330163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247930] = 5, + [305896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11358), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13880), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268844,17 +330185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247955] = 5, + [305924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11066), 1, + ACTIONS(13552), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268864,17 +330207,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [247980] = 5, + [305952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(3213), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_variable_name, + STATE(1919), 1, + sym_string, + ACTIONS(3215), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3211), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [305980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11360), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13882), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268884,17 +330251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248005] = 5, + [306008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(3679), 1, anon_sym_DQUOTE, - STATE(2159), 1, + ACTIONS(7352), 1, + sym_variable_name, + STATE(4859), 1, sym_string, - ACTIONS(4208), 2, + ACTIONS(7350), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4204), 9, + ACTIONS(7348), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268904,17 +330273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248030] = 5, + [306036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10938), 1, + ACTIONS(13624), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268924,39 +330295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248055] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11226), 1, - anon_sym_LT_LT, - ACTIONS(11232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11368), 1, - anon_sym_LT_LT_LT, - ACTIONS(11366), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11364), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11362), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [248084] = 5, + [306064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13884), 1, anon_sym_DQUOTE, - STATE(893), 1, - sym_string, - ACTIONS(2090), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2088), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268966,17 +330317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248109] = 5, + [306092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11370), 1, + ACTIONS(13122), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -268986,17 +330339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248134] = 5, + [306120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10798), 1, + ACTIONS(13110), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269006,17 +330361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248159] = 5, + [306148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11114), 1, + ACTIONS(13568), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269026,17 +330383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248184] = 5, + [306176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11042), 1, + ACTIONS(13126), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269046,17 +330405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248209] = 5, + [306204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11372), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(3584), 1, + sym_variable_name, + STATE(2121), 1, + sym_string, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269066,17 +330427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248234] = 5, + [306232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(3274), 1, anon_sym_DQUOTE, - STATE(1520), 1, + ACTIONS(3278), 1, + sym_variable_name, + STATE(1825), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(3276), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3303), 9, + ACTIONS(3272), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269086,17 +330449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248259] = 5, + [306260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11374), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13886), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269106,17 +330471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248284] = 5, + [306288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13888), 1, anon_sym_DQUOTE, - STATE(2173), 1, - sym_string, - ACTIONS(4216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269126,17 +330493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248309] = 5, + [306316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(13082), 1, anon_sym_DQUOTE, - STATE(3669), 1, - sym_string, - ACTIONS(6177), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6175), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269146,17 +330515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248334] = 5, + [306344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13890), 1, anon_sym_DQUOTE, - STATE(1145), 1, - sym_string, - ACTIONS(2530), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2526), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269166,17 +330537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248359] = 5, + [306372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11376), 1, + ACTIONS(7143), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(7147), 1, + sym_variable_name, + STATE(4322), 1, + sym_string, + ACTIONS(7145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(7141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269186,17 +330559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248384] = 5, + [306400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11378), 1, + ACTIONS(13628), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269206,17 +330581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248409] = 5, + [306428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11380), 1, + ACTIONS(13576), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269226,17 +330603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248434] = 5, + [306456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10918), 1, + ACTIONS(13588), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269246,17 +330625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248459] = 5, + [306484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10898), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(1973), 1, + sym_variable_name, + STATE(1130), 1, + sym_string, + ACTIONS(1971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(1969), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269266,39 +330647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248484] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11384), 1, - anon_sym_LT_LT, - ACTIONS(11390), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11392), 1, - anon_sym_LT_LT_LT, - ACTIONS(11388), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11386), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11382), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [248513] = 5, + [306512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10850), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(3829), 1, + sym_variable_name, + STATE(1595), 1, + sym_string, + ACTIONS(3827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3825), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269308,17 +330669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248538] = 5, + [306540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10830), 1, + ACTIONS(13616), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269328,17 +330691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248563] = 5, + [306568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10571), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13892), 1, anon_sym_DQUOTE, - STATE(4997), 1, - sym_string, - ACTIONS(10573), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10569), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269348,17 +330713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248588] = 5, + [306596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11154), 1, - anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13894), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269368,17 +330735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248613] = 5, + [306624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11206), 1, + ACTIONS(13102), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269388,17 +330757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248638] = 5, + [306652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(13584), 1, anon_sym_DQUOTE, - STATE(1285), 1, - sym_string, - ACTIONS(3232), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3230), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269408,17 +330779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248663] = 5, + [306680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13896), 1, anon_sym_DQUOTE, - STATE(3623), 1, - sym_string, - ACTIONS(5704), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5700), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269428,17 +330801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248688] = 5, + [306708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11394), 1, + ACTIONS(2790), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(3223), 1, + sym_variable_name, + STATE(1600), 1, + sym_string, + ACTIONS(3221), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3219), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269448,39 +330823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248713] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11226), 1, - anon_sym_LT_LT, - ACTIONS(11232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11402), 1, - anon_sym_LT_LT_LT, - ACTIONS(11400), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11398), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11396), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [248742] = 5, + [306736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(13094), 1, anon_sym_DQUOTE, - STATE(775), 1, - sym_string, - ACTIONS(1685), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1683), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269490,17 +330845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248767] = 5, + [306764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7644), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13898), 1, anon_sym_DQUOTE, - STATE(4346), 1, - sym_string, - ACTIONS(7646), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7642), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269510,17 +330867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248792] = 5, + [306792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11404), 1, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13900), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269530,17 +330889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248817] = 5, + [306820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11406), 1, + ACTIONS(5361), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(5365), 1, + sym_variable_name, + STATE(2850), 1, + sym_string, + ACTIONS(5363), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(5359), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269550,17 +330911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248842] = 5, + [306848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11408), 1, + ACTIONS(13596), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269570,17 +330933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248867] = 5, + [306876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11410), 1, + ACTIONS(2965), 1, anon_sym_DQUOTE, - ACTIONS(11216), 2, + ACTIONS(2969), 1, + sym_variable_name, + STATE(1454), 1, + sym_string, + ACTIONS(2967), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(2963), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269590,17 +330955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248892] = 5, + [306904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10870), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, - sym_string_content, - ACTIONS(11216), 2, + ACTIONS(3125), 1, + sym_variable_name, + STATE(1416), 1, + sym_string, + ACTIONS(3123), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(3121), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269610,17 +330977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248917] = 5, + [306932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13902), 1, anon_sym_DQUOTE, - STATE(413), 1, - sym_string, - ACTIONS(1181), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1177), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269630,17 +330999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248942] = 5, + [306960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11182), 1, + ACTIONS(13608), 1, anon_sym_DQUOTE, - ACTIONS(11214), 1, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269650,117 +331021,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [248967] = 7, + [306988] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(13906), 1, anon_sym_LT_LT, - ACTIONS(11390), 1, + ACTIONS(13912), 1, anon_sym_LT_LT_DASH, - ACTIONS(11418), 1, + ACTIONS(13914), 1, anon_sym_LT_LT_LT, - ACTIONS(11416), 2, + ACTIONS(13910), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11414), 3, + ACTIONS(13908), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11412), 5, + ACTIONS(13904), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [248996] = 6, + [307017] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(11428), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11426), 2, + ACTIONS(13926), 1, + anon_sym_LT_LT_LT, + ACTIONS(13922), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11424), 3, + ACTIONS(13920), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11420), 5, + ACTIONS(13916), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249022] = 6, + [307046] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(11232), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11258), 2, + ACTIONS(13934), 1, + anon_sym_LT_LT_LT, + ACTIONS(13932), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11256), 3, + ACTIONS(13930), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11254), 5, + ACTIONS(13928), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249048] = 6, + [307075] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(11390), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11416), 2, + ACTIONS(13942), 1, + anon_sym_LT_LT_LT, + ACTIONS(13940), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11414), 3, + ACTIONS(13938), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11412), 5, + ACTIONS(13936), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249074] = 6, + [307104] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(13946), 1, anon_sym_LT_LT, - ACTIONS(11232), 1, + ACTIONS(13952), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13954), 1, + anon_sym_LT_LT_LT, + ACTIONS(13950), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13948), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13944), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307133] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13962), 1, + anon_sym_LT_LT_LT, + ACTIONS(13960), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13958), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13956), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307162] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11366), 2, + ACTIONS(13970), 1, + anon_sym_LT_LT_LT, + ACTIONS(13968), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11364), 3, + ACTIONS(13966), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11362), 5, + ACTIONS(13964), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249100] = 4, + [307191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(1346), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 12, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + aux_sym__simple_variable_name_token1, + [307212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 12, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + aux_sym__simple_variable_name_token1, + [307233] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13974), 1, + anon_sym_LT_LT, + ACTIONS(13980), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13982), 1, + anon_sym_LT_LT_LT, + ACTIONS(13978), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13976), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13972), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13732), 1, sym_string_content, - ACTIONS(11216), 2, + ACTIONS(13736), 1, + sym_variable_name, + ACTIONS(13734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13730), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13988), 1, + sym_variable_name, + ACTIONS(13986), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11212), 9, + ACTIONS(13984), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269770,113 +331271,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [249122] = 6, + [307309] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(13974), 1, anon_sym_LT_LT, - ACTIONS(11232), 1, + ACTIONS(13980), 1, anon_sym_LT_LT_DASH, - ACTIONS(11400), 2, + ACTIONS(13978), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11398), 3, + ACTIONS(13976), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11396), 5, + ACTIONS(13972), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249148] = 6, + [307335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13994), 1, + sym_variable_name, + ACTIONS(13992), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13990), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14000), 1, + sym_variable_name, + ACTIONS(13998), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13996), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14006), 1, + sym_variable_name, + ACTIONS(14004), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14002), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307401] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(13906), 1, anon_sym_LT_LT, - ACTIONS(11232), 1, + ACTIONS(13912), 1, anon_sym_LT_LT_DASH, - ACTIONS(11334), 2, + ACTIONS(13910), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11332), 3, + ACTIONS(13908), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11330), 5, + ACTIONS(13904), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249174] = 6, + [307427] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(14010), 1, anon_sym_LT_LT, - ACTIONS(11390), 1, + ACTIONS(14016), 1, anon_sym_LT_LT_DASH, - ACTIONS(11388), 2, + ACTIONS(14014), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11386), 3, + ACTIONS(14012), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11382), 5, + ACTIONS(14008), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249200] = 6, + [307453] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(11232), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11230), 2, + ACTIONS(13932), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11228), 3, + ACTIONS(13930), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11224), 5, + ACTIONS(13928), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249226] = 6, + [307479] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11298), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(11304), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(11302), 2, + ACTIONS(13960), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11300), 3, + ACTIONS(13958), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11296), 5, + ACTIONS(13956), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249252] = 3, + [307505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 2, + ACTIONS(14022), 1, + sym_variable_name, + ACTIONS(14020), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11430), 9, + ACTIONS(14018), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269886,83 +331443,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [249271] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11440), 1, - anon_sym_LT_LT_LT, - ACTIONS(11438), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11436), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11434), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [249294] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - ACTIONS(11446), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11444), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11442), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [249317] = 5, + [307527] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11456), 1, - anon_sym_LT_LT_LT, - ACTIONS(11454), 2, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13940), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11452), 3, + ACTIONS(13938), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11450), 5, + ACTIONS(13936), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249340] = 3, + [307553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 1, - sym__concat, - ACTIONS(1240), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(14028), 1, + sym_variable_name, + ACTIONS(14026), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14024), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [249359] = 3, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11460), 2, + ACTIONS(14034), 1, + sym_variable_name, + ACTIONS(14032), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11458), 9, + ACTIONS(14030), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269972,13 +331499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [249378] = 3, + [307597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11464), 2, + ACTIONS(13782), 1, + sym_variable_name, + ACTIONS(13780), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11462), 9, + ACTIONS(13776), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -269988,154 +331517,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [249397] = 5, + [307619] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - ACTIONS(11470), 2, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13922), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11468), 3, + ACTIONS(13920), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11466), 5, + ACTIONS(13916), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249420] = 5, + [307645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14040), 1, + sym_variable_name, + ACTIONS(14038), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14036), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307667] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11480), 1, - anon_sym_LT_LT_LT, - ACTIONS(11478), 2, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13968), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11476), 3, + ACTIONS(13966), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11474), 5, + ACTIONS(13964), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249443] = 9, + [307693] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11482), 1, - anon_sym_DOLLAR, - ACTIONS(11485), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11488), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11491), 1, - anon_sym_BQUOTE, - ACTIONS(11494), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11497), 1, - sym_heredoc_content, - ACTIONS(11500), 1, - sym_heredoc_end, - STATE(4898), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [249474] = 5, + ACTIONS(13946), 1, + anon_sym_LT_LT, + ACTIONS(13952), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13950), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13948), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13944), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307719] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11508), 1, + ACTIONS(14048), 1, anon_sym_LT_LT_LT, - ACTIONS(11506), 2, + ACTIONS(14046), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11504), 3, + ACTIONS(14044), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11502), 5, + ACTIONS(14042), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - sym__concat, - ACTIONS(1248), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [249516] = 3, + [307742] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11510), 1, - anon_sym_RBRACE3, - ACTIONS(11512), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [249535] = 3, - ACTIONS(3), 1, + ACTIONS(14056), 1, + anon_sym_LT_LT_LT, + ACTIONS(14054), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14052), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14050), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307765] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11516), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11514), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [249554] = 5, + ACTIONS(14064), 1, + anon_sym_LT_LT_LT, + ACTIONS(14062), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14060), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14058), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307788] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11524), 1, + ACTIONS(14072), 1, anon_sym_LT_LT_LT, - ACTIONS(11522), 2, + ACTIONS(14070), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11520), 3, + ACTIONS(14068), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11518), 5, + ACTIONS(14066), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249577] = 3, + [307811] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14074), 1, + anon_sym_RBRACE3, + ACTIONS(14076), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [307830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, + ACTIONS(1314), 1, sym__concat, - ACTIONS(1268), 10, + ACTIONS(1312), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270146,12 +331699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249596] = 3, + [307849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(1310), 1, sym__concat, - ACTIONS(1236), 10, + ACTIONS(1308), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270162,28 +331715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11528), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11526), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [249634] = 3, + [307868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1338), 1, sym__concat, - ACTIONS(1260), 10, + ACTIONS(1336), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270194,12 +331731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249653] = 3, + [307887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(14078), 1, sym__concat, - ACTIONS(1252), 10, + ACTIONS(13333), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270210,12 +331747,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249672] = 3, + [307906] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13962), 1, + anon_sym_LT_LT_LT, + ACTIONS(13960), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13958), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13956), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 1, + ACTIONS(14082), 1, sym__concat, - ACTIONS(1280), 10, + ACTIONS(14080), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270226,50 +331781,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249691] = 3, - ACTIONS(3), 1, + [307948] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(11530), 1, - sym__concat, - ACTIONS(10751), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(14084), 1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, + ACTIONS(14086), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14088), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14090), 1, + anon_sym_BQUOTE, + ACTIONS(14092), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14094), 1, + sym_heredoc_content, + ACTIONS(14096), 1, + sym_heredoc_end, + STATE(6131), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [307979] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13926), 1, + anon_sym_LT_LT_LT, + ACTIONS(13922), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13920), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13916), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308002] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13954), 1, + anon_sym_LT_LT_LT, + ACTIONS(13950), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13948), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13944), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308025] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14084), 1, + anon_sym_DOLLAR, + ACTIONS(14086), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14088), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(14090), 1, anon_sym_BQUOTE, + ACTIONS(14092), 1, anon_sym_DOLLAR_BQUOTE, - [249710] = 9, + ACTIONS(14098), 1, + sym_heredoc_content, + ACTIONS(14100), 1, + sym_heredoc_end, + STATE(6137), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [308056] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14108), 1, + anon_sym_LT_LT_LT, + ACTIONS(14106), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14104), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14102), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308079] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14116), 1, + anon_sym_LT_LT_LT, + ACTIONS(14114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14112), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14110), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308102] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13942), 1, + anon_sym_LT_LT_LT, + ACTIONS(13940), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13938), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13936), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308125] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14124), 1, + anon_sym_LT_LT_LT, + ACTIONS(14122), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14120), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14118), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308148] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14132), 1, + anon_sym_LT_LT_LT, + ACTIONS(14130), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14128), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14126), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308171] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11532), 1, + ACTIONS(14134), 1, anon_sym_DOLLAR, - ACTIONS(11534), 1, + ACTIONS(14137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11536), 1, + ACTIONS(14140), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11538), 1, + ACTIONS(14143), 1, anon_sym_BQUOTE, - ACTIONS(11540), 1, + ACTIONS(14146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11542), 1, + ACTIONS(14149), 1, sym_heredoc_content, - ACTIONS(11544), 1, + ACTIONS(14152), 1, sym_heredoc_end, - STATE(4898), 4, + STATE(6137), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [249741] = 3, + [308202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(1294), 1, sym__concat, - ACTIONS(1240), 10, + ACTIONS(1292), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270280,62 +331989,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11548), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11546), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [249779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11286), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11282), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [249798] = 5, + [308221] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11556), 1, + ACTIONS(14160), 1, anon_sym_LT_LT_LT, - ACTIONS(11554), 2, + ACTIONS(14158), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11552), 3, + ACTIONS(14156), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11550), 5, + ACTIONS(14154), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249821] = 3, + [308244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 1, + ACTIONS(1358), 1, sym__concat, - ACTIONS(1224), 10, + ACTIONS(1356), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270346,12 +332023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249840] = 3, + [308263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11560), 1, + ACTIONS(1334), 1, sym__concat, - ACTIONS(11558), 10, + ACTIONS(1332), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270362,226 +332039,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [249859] = 9, + [308282] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11532), 1, + ACTIONS(14168), 1, + anon_sym_LT_LT_LT, + ACTIONS(14166), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14164), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14162), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 1, + sym__concat, + ACTIONS(1344), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(11534), 1, + anon_sym_DQUOTE, + sym_string_content, anon_sym_DOLLAR_LBRACE, - ACTIONS(11536), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11538), 1, anon_sym_BQUOTE, - ACTIONS(11540), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11562), 1, - sym_heredoc_content, - ACTIONS(11564), 1, - sym_heredoc_end, - STATE(4911), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [249890] = 5, + [308324] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11572), 1, + ACTIONS(14176), 1, anon_sym_LT_LT_LT, - ACTIONS(11570), 2, + ACTIONS(14174), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11568), 3, + ACTIONS(14172), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11566), 5, + ACTIONS(14170), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11576), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11574), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [249932] = 4, + [308347] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11334), 2, + ACTIONS(14184), 1, + anon_sym_LT_LT_LT, + ACTIONS(14182), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11332), 3, + ACTIONS(14180), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11330), 5, + ACTIONS(14178), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249952] = 4, + [308370] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11230), 2, + ACTIONS(13982), 1, + anon_sym_LT_LT_LT, + ACTIONS(13978), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11228), 3, + ACTIONS(13976), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11224), 5, + ACTIONS(13972), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [249972] = 8, - ACTIONS(71), 1, + [308393] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11578), 1, + ACTIONS(1306), 1, + sym__concat, + ACTIONS(1304), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(11580), 1, + sym_string_content, anon_sym_DOLLAR_LBRACE, - ACTIONS(11582), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11584), 1, anon_sym_BQUOTE, - ACTIONS(11586), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4378), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - STATE(5254), 3, - sym_string, - sym_expansion, - sym_command_substitution, - [250000] = 4, + [308412] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11302), 2, + ACTIONS(14192), 1, + anon_sym_LT_LT_LT, + ACTIONS(14190), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11300), 3, + ACTIONS(14188), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11296), 5, + ACTIONS(14186), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250020] = 4, + [308435] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11258), 2, + ACTIONS(14200), 1, + anon_sym_LT_LT_LT, + ACTIONS(14198), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11256), 3, + ACTIONS(14196), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11254), 5, + ACTIONS(14194), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250040] = 2, + [308458] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11512), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [250056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11588), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [250072] = 4, + ACTIONS(14202), 1, + anon_sym_LT_LT_LT, + ACTIONS(14014), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14012), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14008), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308481] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11594), 2, + ACTIONS(14210), 1, + anon_sym_LT_LT_LT, + ACTIONS(14208), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11592), 3, + ACTIONS(14206), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11590), 5, + ACTIONS(14204), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250092] = 4, + [308504] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11366), 2, + ACTIONS(14218), 1, + anon_sym_LT_LT_LT, + ACTIONS(14216), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11364), 3, + ACTIONS(14214), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11362), 5, + ACTIONS(14212), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250112] = 4, + [308527] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11388), 2, + ACTIONS(13970), 1, + anon_sym_LT_LT_LT, + ACTIONS(13968), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11386), 3, + ACTIONS(13966), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11382), 5, + ACTIONS(13964), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250132] = 2, + [308550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10751), 10, + ACTIONS(1310), 1, + sym__concat, + ACTIONS(1308), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -270592,836 +332267,1210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [250148] = 4, + [308569] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11426), 2, + ACTIONS(14226), 1, + anon_sym_LT_LT_LT, + ACTIONS(14224), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11424), 3, + ACTIONS(14222), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11420), 5, + ACTIONS(14220), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250168] = 4, + [308592] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11400), 2, + ACTIONS(14234), 1, + anon_sym_LT_LT_LT, + ACTIONS(14232), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11398), 3, + ACTIONS(14230), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11396), 5, + ACTIONS(14228), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250188] = 4, + [308615] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11416), 2, + ACTIONS(14242), 1, + anon_sym_LT_LT_LT, + ACTIONS(14240), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11414), 3, + ACTIONS(14238), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11412), 5, + ACTIONS(14236), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [250208] = 6, - ACTIONS(3), 1, + [308638] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1222), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11596), 1, - aux_sym_concatenation_token1, - ACTIONS(11598), 1, - sym__concat, - STATE(4950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1220), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [250231] = 10, + ACTIONS(13934), 1, + anon_sym_LT_LT_LT, + ACTIONS(13932), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13930), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13928), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [308661] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(11600), 1, - anon_sym_SLASH, - ACTIONS(11602), 1, + ACTIONS(14244), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14246), 1, + anon_sym_LPAREN, + ACTIONS(14248), 1, + anon_sym_if, + ACTIONS(14250), 1, + anon_sym_LBRACE, + ACTIONS(14252), 1, + anon_sym_LBRACK, + ACTIONS(14254), 1, + anon_sym_LBRACK_LBRACK, + STATE(4580), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308689] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14256), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14258), 1, + anon_sym_LPAREN, + ACTIONS(14260), 1, + anon_sym_if, + ACTIONS(14262), 1, + anon_sym_LBRACE, + ACTIONS(14264), 1, + anon_sym_LBRACK, + ACTIONS(14266), 1, + anon_sym_LBRACK_LBRACK, + STATE(4387), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308717] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(5001), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308745] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(4659), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308773] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14244), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14246), 1, + anon_sym_LPAREN, + ACTIONS(14248), 1, + anon_sym_if, + ACTIONS(14250), 1, + anon_sym_LBRACE, + ACTIONS(14252), 1, + anon_sym_LBRACK, + ACTIONS(14254), 1, + anon_sym_LBRACK_LBRACK, + STATE(4549), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308801] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14280), 1, anon_sym_DQUOTE, - ACTIONS(11604), 1, - anon_sym_RBRACE3, - ACTIONS(11606), 1, + ACTIONS(14282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14284), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11608), 1, + ACTIONS(14286), 1, anon_sym_BQUOTE, - ACTIONS(11610), 1, + ACTIONS(14288), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11612), 1, - sym__regex_no_slash, - STATE(5276), 1, + ACTIONS(5433), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(6677), 3, sym_string, - STATE(5458), 1, + sym_expansion, sym_command_substitution, - [250262] = 7, + [308829] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(165), 1, + ACTIONS(14290), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14292), 1, + anon_sym_LPAREN, + ACTIONS(14294), 1, + anon_sym_if, + ACTIONS(14296), 1, anon_sym_LBRACE, - ACTIONS(169), 1, + ACTIONS(14298), 1, anon_sym_LBRACK, - ACTIONS(173), 1, + ACTIONS(14300), 1, + anon_sym_LBRACK_LBRACK, + STATE(5405), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308857] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(4829), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308885] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14244), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14248), 1, + anon_sym_if, + ACTIONS(14250), 1, + anon_sym_LBRACE, + ACTIONS(14252), 1, + anon_sym_LBRACK, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(969), 1, + ACTIONS(14302), 1, anon_sym_LPAREN, - ACTIONS(11614), 1, + STATE(4420), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308913] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14256), 1, anon_sym_LPAREN_LPAREN, - STATE(4474), 3, + ACTIONS(14260), 1, + anon_sym_if, + ACTIONS(14262), 1, + anon_sym_LBRACE, + ACTIONS(14264), 1, + anon_sym_LBRACK, + ACTIONS(14266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14304), 1, + anon_sym_LPAREN, + STATE(4273), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250286] = 7, - ACTIONS(3), 1, + [308941] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(11596), 1, - aux_sym_concatenation_token1, - ACTIONS(11598), 1, - sym__concat, - ACTIONS(11616), 1, - anon_sym_in, - ACTIONS(11620), 1, - aux_sym_heredoc_redirect_token1, - STATE(4968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(11618), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [250310] = 7, - ACTIONS(19), 1, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, anon_sym_LPAREN, - ACTIONS(29), 1, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(14276), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(14278), 1, anon_sym_LBRACK_LBRACK, + STATE(5000), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [308969] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(14256), 1, anon_sym_LPAREN_LPAREN, - STATE(4153), 3, + ACTIONS(14260), 1, + anon_sym_if, + ACTIONS(14262), 1, + anon_sym_LBRACE, + ACTIONS(14264), 1, + anon_sym_LBRACK, + ACTIONS(14266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14304), 1, + anon_sym_LPAREN, + STATE(4346), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250334] = 7, - ACTIONS(29), 1, + [308997] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(14276), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14306), 1, + anon_sym_LPAREN, + STATE(4723), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309025] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(14308), 1, + anon_sym_LPAREN, + STATE(5367), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309053] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(14268), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(11624), 1, + ACTIONS(14270), 1, anon_sym_LPAREN, - STATE(4092), 3, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(4625), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250358] = 7, + [309081] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(401), 1, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14310), 1, anon_sym_LPAREN, - ACTIONS(419), 1, + STATE(4719), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309109] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14290), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14294), 1, + anon_sym_if, + ACTIONS(14296), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(14298), 1, anon_sym_LBRACK, - ACTIONS(425), 1, + ACTIONS(14300), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, + ACTIONS(14312), 1, + anon_sym_LPAREN, + STATE(5423), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309137] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14076), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [309153] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(5372), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309181] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(5375), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14314), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [309225] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14290), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14292), 1, + anon_sym_LPAREN, + ACTIONS(14294), 1, + anon_sym_if, + ACTIONS(14296), 1, + anon_sym_LBRACE, + ACTIONS(14298), 1, + anon_sym_LBRACK, + ACTIONS(14300), 1, + anon_sym_LBRACK_LBRACK, + STATE(5475), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309253] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(4747), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309281] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14268), 1, anon_sym_LPAREN_LPAREN, - STATE(3916), 3, + ACTIONS(14270), 1, + anon_sym_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_LBRACK, + ACTIONS(14278), 1, + anon_sym_LBRACK_LBRACK, + STATE(4758), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250382] = 7, + [309309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, - aux_sym_concatenation_token1, - ACTIONS(11598), 1, - sym__concat, - ACTIONS(11628), 1, - anon_sym_in, - ACTIONS(11632), 1, - aux_sym_heredoc_redirect_token1, - STATE(4950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(11630), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [250406] = 7, + ACTIONS(13333), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [309325] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, + ACTIONS(14268), 1, anon_sym_LPAREN_LPAREN, - STATE(3890), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250430] = 7, - ACTIONS(19), 1, + ACTIONS(14270), 1, anon_sym_LPAREN, - ACTIONS(29), 1, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(14276), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(14278), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4154), 3, + STATE(4685), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250454] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + [309353] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(14268), 1, anon_sym_LPAREN_LPAREN, - STATE(4427), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250478] = 7, - ACTIONS(29), 1, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(14276), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(14278), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11634), 1, + ACTIONS(14316), 1, anon_sym_LPAREN, - STATE(4146), 3, + STATE(4667), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250502] = 7, + [309381] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(165), 1, + ACTIONS(14268), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14272), 1, + anon_sym_if, + ACTIONS(14274), 1, anon_sym_LBRACE, - ACTIONS(169), 1, + ACTIONS(14276), 1, anon_sym_LBRACK, - ACTIONS(173), 1, + ACTIONS(14278), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11614), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11636), 1, + ACTIONS(14318), 1, anon_sym_LPAREN, - STATE(4446), 3, + STATE(4995), 4, + sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [250526] = 7, + [309409] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14320), 1, + anon_sym_SLASH, + ACTIONS(14322), 1, + anon_sym_DQUOTE, + ACTIONS(14324), 1, + anon_sym_RBRACE3, + ACTIONS(14326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14328), 1, + anon_sym_BQUOTE, + ACTIONS(14330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14332), 1, + sym__regex_no_slash, + STATE(6582), 1, + sym_string, + STATE(6749), 1, + sym_command_substitution, + [309440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, + ACTIONS(1263), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14334), 1, + aux_sym_concatenation_token1, + ACTIONS(14336), 1, + sym__concat, + STATE(6201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1261), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + sym__special_character, + [309463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11598), 1, + ACTIONS(14336), 1, sym__concat, - ACTIONS(11638), 1, + ACTIONS(14338), 1, anon_sym_in, - ACTIONS(11642), 1, + ACTIONS(14342), 1, aux_sym_heredoc_redirect_token1, - STATE(4968), 1, + STATE(6201), 1, aux_sym_concatenation_repeat1, - ACTIONS(11640), 3, + ACTIONS(14340), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250550] = 7, + [309487] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, + ACTIONS(14344), 1, + anon_sym_RPAREN, + ACTIONS(14346), 1, + anon_sym_DQUOTE, + ACTIONS(14348), 1, + sym_raw_string, + ACTIONS(14350), 1, + anon_sym_RBRACE3, + ACTIONS(14352), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14354), 1, + sym_regex, + STATE(6194), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [309513] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11598), 1, + ACTIONS(14336), 1, sym__concat, - ACTIONS(11644), 1, + ACTIONS(14356), 1, anon_sym_in, - ACTIONS(11648), 1, + ACTIONS(14360), 1, aux_sym_heredoc_redirect_token1, - STATE(4950), 1, + STATE(6201), 1, aux_sym_concatenation_repeat1, - ACTIONS(11646), 3, + ACTIONS(14358), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250574] = 6, + [309537] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(14334), 1, + aux_sym_concatenation_token1, + ACTIONS(14336), 1, + sym__concat, + ACTIONS(14362), 1, + anon_sym_in, + ACTIONS(14366), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11596), 1, + STATE(6193), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14364), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(14368), 1, sym__concat, - STATE(4954), 1, + STATE(6204), 1, aux_sym_concatenation_repeat1, - ACTIONS(1214), 4, + ACTIONS(1286), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250596] = 7, + [309583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14370), 1, + anon_sym_RPAREN, + ACTIONS(14373), 1, + anon_sym_DQUOTE, + ACTIONS(14376), 1, + sym_raw_string, + ACTIONS(14379), 1, + anon_sym_RBRACE3, + ACTIONS(14381), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14384), 1, + sym_regex, + STATE(6194), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [309609] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(7793), 1, aux_sym_number_token1, - ACTIONS(6430), 1, + ACTIONS(7795), 1, aux_sym_number_token2, - ACTIONS(11652), 1, + ACTIONS(14387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11654), 1, + ACTIONS(14389), 1, aux_sym__simple_variable_name_token1, - STATE(4972), 1, + STATE(6227), 1, sym__expansion_max_length_binary_expression, - STATE(4984), 3, + STATE(6215), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [250620] = 7, + [309633] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(7793), 1, aux_sym_number_token1, - ACTIONS(6430), 1, + ACTIONS(7795), 1, aux_sym_number_token2, - ACTIONS(11652), 1, + ACTIONS(14387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11656), 1, + ACTIONS(14391), 1, aux_sym__simple_variable_name_token1, - STATE(4972), 1, + STATE(6227), 1, sym__expansion_max_length_binary_expression, - STATE(4985), 3, + STATE(6212), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [250644] = 7, - ACTIONS(71), 1, + [309657] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(969), 1, - anon_sym_LPAREN, - ACTIONS(11614), 1, - anon_sym_LPAREN_LPAREN, - STATE(4429), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250668] = 6, + ACTIONS(14344), 1, + anon_sym_RPAREN, + ACTIONS(14346), 1, + anon_sym_DQUOTE, + ACTIONS(14352), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14393), 1, + sym_raw_string, + ACTIONS(14395), 1, + anon_sym_RBRACE3, + ACTIONS(14397), 1, + sym_regex, + STATE(6190), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [309683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11658), 1, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11661), 1, + ACTIONS(14336), 1, sym__concat, - STATE(4954), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1198), 4, + ACTIONS(14399), 1, anon_sym_in, + ACTIONS(14403), 1, + aux_sym_heredoc_redirect_token1, + STATE(6193), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14401), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250690] = 7, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11664), 1, - anon_sym_LPAREN, - STATE(4094), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250714] = 7, + [309707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11598), 1, + ACTIONS(14336), 1, sym__concat, - ACTIONS(11666), 1, + ACTIONS(14405), 1, anon_sym_in, - ACTIONS(11670), 1, + ACTIONS(14409), 1, aux_sym_heredoc_redirect_token1, - STATE(4968), 1, + STATE(6193), 1, aux_sym_concatenation_repeat1, - ACTIONS(11668), 3, + ACTIONS(14407), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250738] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4109), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250762] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4083), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250786] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4108), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250810] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11672), 1, - anon_sym_LPAREN, - STATE(3888), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250834] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11674), 1, - anon_sym_LPAREN, - STATE(4000), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250858] = 7, + [309731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, + ACTIONS(14334), 1, aux_sym_concatenation_token1, - ACTIONS(11598), 1, + ACTIONS(14336), 1, sym__concat, - ACTIONS(11676), 1, + ACTIONS(14411), 1, anon_sym_in, - ACTIONS(11680), 1, + ACTIONS(14415), 1, aux_sym_heredoc_redirect_token1, - STATE(4950), 1, + STATE(6201), 1, aux_sym_concatenation_repeat1, - ACTIONS(11678), 3, + ACTIONS(14413), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [250882] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, - anon_sym_LPAREN_LPAREN, - STATE(3999), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250906] = 7, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11682), 1, - anon_sym_LPAREN, - STATE(4085), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250930] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [309755] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4099), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250954] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + ACTIONS(1267), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14334), 1, + aux_sym_concatenation_token1, + ACTIONS(14417), 1, + sym__concat, + STATE(6204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1265), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309777] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4073), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [250978] = 7, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + ACTIONS(14334), 1, + aux_sym_concatenation_token1, + ACTIONS(14336), 1, + sym__concat, + ACTIONS(14419), 1, + anon_sym_in, + ACTIONS(14423), 1, + aux_sym_heredoc_redirect_token1, + STATE(6193), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14421), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309801] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(11684), 1, - anon_sym_LPAREN, - STATE(4415), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [251002] = 6, + ACTIONS(14334), 1, + aux_sym_concatenation_token1, + ACTIONS(14336), 1, + sym__concat, + ACTIONS(14425), 1, + anon_sym_in, + ACTIONS(14429), 1, + aux_sym_heredoc_redirect_token1, + STATE(6201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14427), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1253), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11596), 1, + ACTIONS(14431), 1, aux_sym_concatenation_token1, - ACTIONS(11686), 1, + ACTIONS(14434), 1, sym__concat, - STATE(4954), 1, + STATE(6204), 1, aux_sym_concatenation_repeat1, - ACTIONS(1208), 4, + ACTIONS(1251), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [251024] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [309847] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4425), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [251048] = 7, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + ACTIONS(1326), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [309862] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - anon_sym_LPAREN_LPAREN, - STATE(4074), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [251072] = 7, - ACTIONS(71), 1, + ACTIONS(1350), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [309877] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LPAREN, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_LBRACK, - ACTIONS(425), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11626), 1, - anon_sym_LPAREN_LPAREN, - STATE(3991), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [251096] = 2, + ACTIONS(1294), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [309892] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11688), 7, + ACTIONS(14439), 1, + anon_sym_COLON, + ACTIONS(14441), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [251109] = 3, + [309909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [309924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [309939] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1240), 1, + ACTIONS(1356), 1, anon_sym_DOLLAR, - ACTIONS(1242), 6, + ACTIONS(1358), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [251124] = 3, + [309954] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14443), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [309969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14425), 1, + anon_sym_in, + ACTIONS(14429), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14447), 1, + sym__special_character, + STATE(6240), 1, + aux_sym__literal_repeat1, + ACTIONS(14427), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(1346), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 5, + ACTIONS(1344), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251139] = 4, + [310005] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11690), 1, + ACTIONS(14443), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(11692), 1, anon_sym_RBRACE3, - ACTIONS(11688), 5, + [310018] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [251156] = 3, + anon_sym_COLON, + anon_sym_RBRACE3, + [310031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(1338), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 5, + ACTIONS(1336), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251171] = 4, + [310046] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11696), 1, + ACTIONS(14451), 1, anon_sym_COLON, - ACTIONS(11698), 1, + ACTIONS(14453), 1, anon_sym_RBRACE3, - ACTIONS(11694), 5, + ACTIONS(14449), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [251188] = 3, + [310063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 2, - sym__concat, + ACTIONS(14356), 1, + anon_sym_in, + ACTIONS(14360), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 5, + ACTIONS(14447), 1, + sym__special_character, + STATE(6240), 1, + aux_sym__literal_repeat1, + ACTIONS(14358), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [310084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14411), 1, anon_sym_in, + ACTIONS(14415), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14447), 1, + sym__special_character, + STATE(6240), 1, + aux_sym__literal_repeat1, + ACTIONS(14413), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251203] = 3, + [310105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, + ACTIONS(1314), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 5, + ACTIONS(1312), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251218] = 3, + [310120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1358), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 5, + ACTIONS(1356), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251233] = 6, + [310135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11676), 1, + ACTIONS(14338), 1, anon_sym_in, - ACTIONS(11680), 1, + ACTIONS(14342), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11700), 1, + ACTIONS(14447), 1, sym__special_character, - STATE(4989), 1, + STATE(6240), 1, aux_sym__literal_repeat1, - ACTIONS(11678), 3, + ACTIONS(14340), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [251254] = 3, - ACTIONS(3), 1, + [310156] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1246), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1244), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251269] = 3, + ACTIONS(1308), 1, + anon_sym_DOLLAR, + ACTIONS(1310), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [310171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 2, + ACTIONS(1253), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 5, + ACTIONS(1251), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251284] = 2, + [310186] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 1, + anon_sym_DOLLAR, + ACTIONS(1306), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [310201] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11702), 7, + ACTIONS(14449), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -271429,22 +333478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [251297] = 3, + [310214] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11704), 3, + ACTIONS(1330), 7, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 4, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_COLON, anon_sym_RBRACE3, - [251312] = 2, + [310227] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1318), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -271452,48 +333500,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [251325] = 3, - ACTIONS(71), 1, + [310240] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 1, - anon_sym_DOLLAR, - ACTIONS(1242), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [251340] = 3, + ACTIONS(1298), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310285] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1308), 1, anon_sym_DOLLAR, - ACTIONS(1270), 6, + ACTIONS(1310), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [251355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11706), 1, - sym__special_character, - STATE(4989), 1, - aux_sym__literal_repeat1, - ACTIONS(1292), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [251374] = 2, + [310300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1230), 7, + ACTIONS(1314), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -271501,13756 +333559,17223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [251387] = 3, + [310313] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1250), 6, + ACTIONS(1346), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [251402] = 3, + [310328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 2, + ACTIONS(1330), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 5, + ACTIONS(1328), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251417] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 1, - anon_sym_DOLLAR, - ACTIONS(1262), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [251432] = 3, + [310343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(1312), 1, anon_sym_DOLLAR, - ACTIONS(1238), 6, + ACTIONS(1314), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [251447] = 3, + [310358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 2, + ACTIONS(1318), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1236), 5, + ACTIONS(1316), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251462] = 3, + [310373] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 1, + ACTIONS(1336), 1, anon_sym_DOLLAR, - ACTIONS(1254), 6, + ACTIONS(1338), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [251477] = 3, + [310388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14455), 1, + sym__special_character, + STATE(6240), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [310407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 2, + ACTIONS(1310), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 5, + ACTIONS(1308), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251492] = 3, + [310422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 2, + ACTIONS(1306), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1198), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251507] = 6, + [310437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11644), 1, + ACTIONS(1342), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 5, anon_sym_in, - ACTIONS(11648), 1, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11700), 1, - sym__special_character, - STATE(4989), 1, - aux_sym__literal_repeat1, - ACTIONS(11646), 3, + ACTIONS(1352), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [251528] = 3, + aux_sym_concatenation_token1, + [310467] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [310480] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [310493] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [310506] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10144), 1, + anon_sym_BQUOTE, + ACTIONS(10146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14458), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4576), 2, + sym_expansion, + sym_command_substitution, + [310526] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9382), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9386), 1, + anon_sym_BQUOTE, + ACTIONS(9388), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3215), 2, + sym_expansion, + sym_command_substitution, + [310546] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14328), 1, + anon_sym_BQUOTE, + ACTIONS(14330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14387), 1, + anon_sym_DOLLAR_LBRACE, + STATE(6228), 2, + sym_expansion, + sym_command_substitution, + [310566] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10514), 1, + anon_sym_BQUOTE, + ACTIONS(10516), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14460), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1503), 2, + sym_expansion, + sym_command_substitution, + [310586] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14462), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1781), 2, + sym_expansion, + sym_command_substitution, + [310606] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9776), 1, + anon_sym_BQUOTE, + ACTIONS(9778), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14464), 1, + anon_sym_DOLLAR_LPAREN, + STATE(6236), 2, + sym_expansion, + sym_command_substitution, + [310626] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8888), 1, + anon_sym_BQUOTE, + ACTIONS(8890), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14466), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1157), 2, + sym_expansion, + sym_command_substitution, + [310646] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14468), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1233), 2, + sym_expansion, + sym_command_substitution, + [310666] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14470), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310680] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9688), 1, + anon_sym_BQUOTE, + ACTIONS(9690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14472), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1793), 2, + sym_expansion, + sym_command_substitution, + [310700] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14474), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310714] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14476), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310728] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310742] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14480), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310756] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14482), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310770] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10072), 1, + anon_sym_BQUOTE, + ACTIONS(10074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14484), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4701), 2, + sym_expansion, + sym_command_substitution, + [310790] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14482), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310804] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14486), 1, + anon_sym_fi, + ACTIONS(14488), 1, + anon_sym_elif, + ACTIONS(14490), 1, + anon_sym_else, + STATE(7320), 1, + sym_else_clause, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [310824] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14492), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310838] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14482), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310852] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14494), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [310866] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(465), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(469), 1, + anon_sym_BQUOTE, + ACTIONS(471), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14496), 1, + anon_sym_DOLLAR_LPAREN, + STATE(887), 2, + sym_expansion, + sym_command_substitution, + [310886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14500), 1, + anon_sym_COMMA, + ACTIONS(14502), 1, + aux_sym_heredoc_redirect_token1, + STATE(4651), 1, + sym__c_terminator, + STATE(6334), 1, + aux_sym__for_body_repeat1, + ACTIONS(14498), 2, + anon_sym_SEMI, + anon_sym_AMP, + [310906] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1085), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(14504), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2586), 2, + sym_expansion, + sym_command_substitution, + [310926] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8972), 1, + anon_sym_BQUOTE, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14506), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1530), 2, + sym_expansion, + sym_command_substitution, + [310946] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(14508), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2276), 2, + sym_expansion, + sym_command_substitution, + [310966] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9074), 1, + anon_sym_BQUOTE, + ACTIONS(9076), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14510), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1617), 2, + sym_expansion, + sym_command_substitution, + [310986] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14512), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311000] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9322), 1, + anon_sym_BQUOTE, + ACTIONS(9324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14514), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4561), 2, + sym_expansion, + sym_command_substitution, + [311020] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4834), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_BQUOTE, + ACTIONS(4840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14516), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2663), 2, + sym_expansion, + sym_command_substitution, + [311040] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9916), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9920), 1, + anon_sym_BQUOTE, + ACTIONS(9922), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3295), 2, + sym_expansion, + sym_command_substitution, + [311060] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14518), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14500), 1, + anon_sym_COMMA, + ACTIONS(14522), 1, + aux_sym_heredoc_redirect_token1, + STATE(4646), 1, + sym__c_terminator, + STATE(6463), 1, + aux_sym__for_body_repeat1, + ACTIONS(14520), 2, + anon_sym_SEMI, + anon_sym_AMP, + [311094] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14524), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4320), 2, + sym_expansion, + sym_command_substitution, + [311114] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8436), 1, + anon_sym_BQUOTE, + ACTIONS(8438), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14526), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1236), 2, + sym_expansion, + sym_command_substitution, + [311134] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4961), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4965), 1, + anon_sym_BQUOTE, + ACTIONS(4967), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14528), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2606), 2, + sym_expansion, + sym_command_substitution, + [311154] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9810), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9812), 1, + anon_sym_BQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14530), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4572), 2, + sym_expansion, + sym_command_substitution, + [311174] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8242), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14532), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1472), 2, + sym_expansion, + sym_command_substitution, + [311194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14500), 1, + anon_sym_COMMA, + ACTIONS(14536), 1, + aux_sym_heredoc_redirect_token1, + STATE(4700), 1, + sym__c_terminator, + STATE(6463), 1, + aux_sym__for_body_repeat1, + ACTIONS(14534), 2, + anon_sym_SEMI, + anon_sym_AMP, + [311214] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14512), 1, + anon_sym_RBRACE3, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311228] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9644), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9646), 1, + anon_sym_BQUOTE, + ACTIONS(9648), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14538), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4386), 2, + sym_expansion, + sym_command_substitution, + [311248] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14488), 1, + anon_sym_elif, + ACTIONS(14490), 1, + anon_sym_else, + ACTIONS(14540), 1, + anon_sym_fi, + STATE(7480), 1, + sym_else_clause, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [311268] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(125), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(129), 1, + anon_sym_BQUOTE, + ACTIONS(131), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14542), 1, + anon_sym_DOLLAR_LPAREN, + STATE(484), 2, + sym_expansion, + sym_command_substitution, + [311288] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7234), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7236), 1, + anon_sym_BQUOTE, + ACTIONS(7238), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14544), 1, + anon_sym_DOLLAR_LPAREN, + STATE(6519), 2, + sym_expansion, + sym_command_substitution, + [311308] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14546), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1668), 2, + sym_expansion, + sym_command_substitution, + [311328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251543] = 8, - ACTIONS(3), 1, + ACTIONS(1354), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1352), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [311342] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5279), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14548), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5489), 2, + sym_expansion, + sym_command_substitution, + [311362] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4785), 1, + anon_sym_BQUOTE, + ACTIONS(4787), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14550), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5399), 2, + sym_expansion, + sym_command_substitution, + [311382] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8158), 1, + anon_sym_BQUOTE, + ACTIONS(8160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14552), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4595), 2, + sym_expansion, + sym_command_substitution, + [311402] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10944), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10946), 1, + anon_sym_BQUOTE, + ACTIONS(10948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14554), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1875), 2, + sym_expansion, + sym_command_substitution, + [311422] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4169), 1, + anon_sym_BQUOTE, + ACTIONS(4171), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14556), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2444), 2, + sym_expansion, + sym_command_substitution, + [311442] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_DQUOTE, - ACTIONS(11709), 1, - anon_sym_RPAREN, - ACTIONS(11711), 1, - sym_raw_string, - ACTIONS(11713), 1, + ACTIONS(14512), 1, anon_sym_RBRACE3, - ACTIONS(11715), 1, - aux_sym__expansion_regex_token1, - ACTIONS(11717), 1, - sym_regex, - STATE(5847), 1, - sym_string, - [251568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1240), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251598] = 6, + ACTIONS(14437), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11628), 1, - anon_sym_in, - ACTIONS(11632), 1, + ACTIONS(14500), 1, + anon_sym_COMMA, + ACTIONS(14560), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11700), 1, - sym__special_character, - STATE(4989), 1, - aux_sym__literal_repeat1, - ACTIONS(11630), 3, + STATE(4742), 1, + sym__c_terminator, + STATE(6280), 1, + aux_sym__for_body_repeat1, + ACTIONS(14558), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [251619] = 2, + [311476] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1238), 7, + ACTIONS(14562), 1, + anon_sym_RBRACE3, + ACTIONS(14449), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [251632] = 3, - ACTIONS(3), 1, + [311490] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14566), 1, + anon_sym_RPAREN, + STATE(6439), 1, + aux_sym_concatenation_repeat1, + STATE(6570), 1, + aux_sym_case_item_repeat1, + ACTIONS(14568), 2, sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251647] = 3, - ACTIONS(3), 1, + [311510] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14570), 1, + anon_sym_RPAREN, + STATE(6439), 1, + aux_sym_concatenation_repeat1, + STATE(6710), 1, + aux_sym_case_item_repeat1, + ACTIONS(14568), 2, sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [251662] = 3, + [311530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, - sym__concat, + ACTIONS(1263), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 5, + ACTIONS(1261), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251677] = 2, + sym__special_character, + [311544] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [251690] = 3, + ACTIONS(9018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9020), 1, + anon_sym_BQUOTE, + ACTIONS(9022), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14572), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1384), 2, + sym_expansion, + sym_command_substitution, + [311564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251705] = 3, - ACTIONS(3), 1, + ACTIONS(1342), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1340), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [311578] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1232), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [251720] = 6, + ACTIONS(379), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5809), 1, + anon_sym_BQUOTE, + ACTIONS(14574), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2697), 2, + sym_expansion, + sym_command_substitution, + [311598] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(209), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14576), 1, + anon_sym_DOLLAR_LPAREN, + STATE(505), 2, + sym_expansion, + sym_command_substitution, + [311618] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9250), 1, + anon_sym_BQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14578), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1248), 2, + sym_expansion, + sym_command_substitution, + [311638] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(11721), 1, + ACTIONS(14580), 1, anon_sym_RPAREN, - STATE(5113), 1, + STATE(6373), 1, aux_sym_concatenation_repeat1, - STATE(5363), 1, + STATE(6707), 1, aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - [251740] = 6, - ACTIONS(3), 1, + [311658] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_COMMA, - ACTIONS(11729), 1, - aux_sym_heredoc_redirect_token1, - STATE(3827), 1, - sym__c_terminator, - STATE(5053), 1, - aux_sym__for_body_repeat1, - ACTIONS(11725), 2, - anon_sym_SEMI, - anon_sym_AMP, - [251760] = 6, + ACTIONS(8282), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8286), 1, + anon_sym_BQUOTE, + ACTIONS(8288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14582), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1449), 2, + sym_expansion, + sym_command_substitution, + [311678] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(11731), 1, + ACTIONS(14584), 1, anon_sym_RPAREN, - STATE(5111), 1, + STATE(6373), 1, aux_sym_concatenation_repeat1, - STATE(5358), 1, + STATE(6590), 1, aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - [251780] = 6, - ACTIONS(3), 1, + [311698] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_COMMA, - ACTIONS(11735), 1, - aux_sym_heredoc_redirect_token1, - STATE(3797), 1, - sym__c_terminator, - STATE(5038), 1, - aux_sym__for_body_repeat1, - ACTIONS(11733), 2, - anon_sym_SEMI, - anon_sym_AMP, - [251800] = 6, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8530), 1, + anon_sym_BQUOTE, + ACTIONS(8532), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14586), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2510), 2, + sym_expansion, + sym_command_substitution, + [311718] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11737), 1, + ACTIONS(14588), 1, anon_sym_SLASH, - ACTIONS(11741), 1, + ACTIONS(14592), 1, anon_sym_RBRACE3, - ACTIONS(11743), 1, + ACTIONS(14594), 1, sym__expansion_word, - STATE(5061), 1, + STATE(6475), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + ACTIONS(14590), 2, sym__concat, aux_sym_concatenation_token1, - [251820] = 6, + [311738] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8954), 1, + anon_sym_BQUOTE, + ACTIONS(8956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14596), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3175), 2, + sym_expansion, + sym_command_substitution, + [311758] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9132), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9136), 1, + anon_sym_BQUOTE, + ACTIONS(9138), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14598), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2399), 2, + sym_expansion, + sym_command_substitution, + [311778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_COMMA, - ACTIONS(11747), 1, - aux_sym_heredoc_redirect_token1, - STATE(3798), 1, - sym__c_terminator, - STATE(5053), 1, - aux_sym__for_body_repeat1, - ACTIONS(11745), 2, - anon_sym_SEMI, - anon_sym_AMP, - [251840] = 6, + ACTIONS(1322), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1320), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [311792] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14600), 1, + anon_sym_RPAREN, + STATE(6373), 1, + aux_sym_concatenation_repeat1, + STATE(6652), 1, + aux_sym_case_item_repeat1, + ACTIONS(14568), 2, + sym__concat, + aux_sym_concatenation_token1, + [311812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, + ACTIONS(14500), 1, anon_sym_COMMA, - ACTIONS(11751), 1, + ACTIONS(14604), 1, aux_sym_heredoc_redirect_token1, - STATE(3545), 1, + STATE(4236), 1, sym__c_terminator, - STATE(5025), 1, + STATE(6463), 1, aux_sym__for_body_repeat1, - ACTIONS(11749), 2, + ACTIONS(14602), 2, anon_sym_SEMI, anon_sym_AMP, - [251860] = 3, + [311832] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11753), 1, - anon_sym_RBRACE3, - ACTIONS(11688), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [251874] = 3, + ACTIONS(4647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4651), 1, + anon_sym_BQUOTE, + ACTIONS(4653), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14606), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2583), 2, + sym_expansion, + sym_command_substitution, + [311852] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_RBRACE3, - ACTIONS(11694), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [251888] = 6, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_BQUOTE, + ACTIONS(8356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14608), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1538), 2, + sym_expansion, + sym_command_substitution, + [311872] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11759), 1, - anon_sym_RBRACE3, - ACTIONS(11761), 1, - sym__expansion_word, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, - sym__concat, - aux_sym_concatenation_token1, - [251908] = 6, + ACTIONS(5329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5333), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14610), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5470), 2, + sym_expansion, + sym_command_substitution, + [311892] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11763), 1, - anon_sym_RPAREN, - STATE(5111), 1, + ACTIONS(11820), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11822), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11824), 1, + anon_sym_BQUOTE, + ACTIONS(11826), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3245), 2, + sym_expansion, + sym_command_substitution, + [311912] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14612), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1479), 2, + sym_expansion, + sym_command_substitution, + [311932] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8324), 1, + anon_sym_BQUOTE, + ACTIONS(8326), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14614), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5435), 2, + sym_expansion, + sym_command_substitution, + [311952] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6373), 1, aux_sym_concatenation_repeat1, - STATE(5285), 1, - aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - [251928] = 6, + ACTIONS(1263), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [311968] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14488), 1, + anon_sym_elif, + ACTIONS(14490), 1, + anon_sym_else, + ACTIONS(14616), 1, + anon_sym_fi, + STATE(7012), 1, + sym_else_clause, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [311988] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(11765), 1, + ACTIONS(14618), 1, anon_sym_RPAREN, - STATE(5113), 1, + STATE(6439), 1, aux_sym_concatenation_repeat1, - STATE(5284), 1, + STATE(6711), 1, aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - [251948] = 6, + [312008] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11767), 1, - anon_sym_fi, - ACTIONS(11769), 1, - anon_sym_elif, - ACTIONS(11771), 1, - anon_sym_else, - STATE(5722), 1, - sym_else_clause, - STATE(5129), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [251968] = 6, + ACTIONS(8386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8390), 1, + anon_sym_BQUOTE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14620), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4405), 2, + sym_expansion, + sym_command_substitution, + [312028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, + ACTIONS(14500), 1, anon_sym_COMMA, - ACTIONS(11775), 1, + ACTIONS(14624), 1, aux_sym_heredoc_redirect_token1, - STATE(3541), 1, + STATE(4803), 1, sym__c_terminator, - STATE(5053), 1, + STATE(6286), 1, aux_sym__for_body_repeat1, - ACTIONS(11773), 2, + ACTIONS(14622), 2, anon_sym_SEMI, anon_sym_AMP, - [251988] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11777), 1, - anon_sym_RBRACE3, - ACTIONS(11694), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [252002] = 3, + [312048] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11779), 1, - anon_sym_RBRACE3, - ACTIONS(11688), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [252016] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11769), 1, + ACTIONS(14488), 1, anon_sym_elif, - ACTIONS(11771), 1, + ACTIONS(14490), 1, anon_sym_else, - ACTIONS(11781), 1, + ACTIONS(14626), 1, anon_sym_fi, - STATE(5690), 1, + STATE(6921), 1, sym_else_clause, - STATE(5129), 2, + STATE(6400), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [252036] = 6, + [312068] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8010), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14628), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3529), 2, + sym_expansion, + sym_command_substitution, + [312088] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8860), 1, + anon_sym_BQUOTE, + ACTIONS(8862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14630), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2111), 2, + sym_expansion, + sym_command_substitution, + [312108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, + ACTIONS(14500), 1, anon_sym_COMMA, - ACTIONS(11785), 1, + ACTIONS(14634), 1, aux_sym_heredoc_redirect_token1, - STATE(3865), 1, + STATE(4741), 1, sym__c_terminator, - STATE(5013), 1, + STATE(6463), 1, aux_sym__for_body_repeat1, - ACTIONS(11783), 2, + ACTIONS(14632), 2, anon_sym_SEMI, anon_sym_AMP, - [252056] = 6, + [312128] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14636), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1971), 2, + sym_expansion, + sym_command_substitution, + [312148] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14638), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5151), 2, + sym_expansion, + sym_command_substitution, + [312168] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11769), 1, + ACTIONS(14488), 1, anon_sym_elif, - ACTIONS(11771), 1, + ACTIONS(14490), 1, anon_sym_else, - ACTIONS(11787), 1, + ACTIONS(14640), 1, anon_sym_fi, - STATE(5767), 1, + STATE(7004), 1, sym_else_clause, - STATE(5129), 2, + STATE(6400), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [252076] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11789), 1, - anon_sym_RBRACE3, - ACTIONS(11694), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [252090] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11789), 1, - anon_sym_RBRACE3, - ACTIONS(11694), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [252104] = 6, + [312188] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(11791), 1, + ACTIONS(14642), 1, anon_sym_RPAREN, - STATE(5113), 1, + STATE(6439), 1, aux_sym_concatenation_repeat1, - STATE(5220), 1, + STATE(6597), 1, aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - [252124] = 6, + [312208] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11793), 1, - anon_sym_RPAREN, - STATE(5111), 1, - aux_sym_concatenation_repeat1, - STATE(5222), 1, - aux_sym_case_item_repeat1, - ACTIONS(11723), 2, - sym__concat, - aux_sym_concatenation_token1, - [252144] = 6, + ACTIONS(14488), 1, + anon_sym_elif, + ACTIONS(14490), 1, + anon_sym_else, + ACTIONS(14644), 1, + anon_sym_fi, + STATE(6862), 1, + sym_else_clause, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312228] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11769), 1, + ACTIONS(14488), 1, anon_sym_elif, - ACTIONS(11771), 1, + ACTIONS(14490), 1, anon_sym_else, - ACTIONS(11795), 1, + ACTIONS(14646), 1, anon_sym_fi, - STATE(5768), 1, + STATE(7416), 1, sym_else_clause, - STATE(5129), 2, + STATE(6400), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [252164] = 3, + [312248] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11789), 1, - anon_sym_RBRACE3, - ACTIONS(11694), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [252178] = 3, + ACTIONS(9948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9950), 1, + anon_sym_BQUOTE, + ACTIONS(9952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14648), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4388), 2, + sym_expansion, + sym_command_substitution, + [312268] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2654), 1, + anon_sym_BQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14650), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2333), 2, + sym_expansion, + sym_command_substitution, + [312288] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8076), 1, + anon_sym_BQUOTE, + ACTIONS(8078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14652), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1689), 2, + sym_expansion, + sym_command_substitution, + [312308] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11797), 1, + ACTIONS(14654), 1, anon_sym_RBRACE3, - ACTIONS(11688), 5, + ACTIONS(14437), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [252192] = 6, - ACTIONS(3), 1, + [312322] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_COMMA, - ACTIONS(11801), 1, - aux_sym_heredoc_redirect_token1, - STATE(3755), 1, - sym__c_terminator, - STATE(5053), 1, - aux_sym__for_body_repeat1, - ACTIONS(11799), 2, - anon_sym_SEMI, - anon_sym_AMP, - [252212] = 6, + ACTIONS(5419), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5423), 1, + anon_sym_BQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14656), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5521), 2, + sym_expansion, + sym_command_substitution, + [312342] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11803), 1, - anon_sym_RPAREN, - STATE(5113), 1, - aux_sym_concatenation_repeat1, - STATE(5253), 1, - aux_sym_case_item_repeat1, - ACTIONS(11723), 2, + ACTIONS(14658), 1, + anon_sym_SLASH, + ACTIONS(14660), 1, + anon_sym_RBRACE3, + ACTIONS(14662), 1, + sym__expansion_word, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, sym__concat, aux_sym_concatenation_token1, - [252232] = 6, + [312362] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11805), 1, - anon_sym_RPAREN, - STATE(5111), 1, - aux_sym_concatenation_repeat1, - STATE(5256), 1, - aux_sym_case_item_repeat1, - ACTIONS(11723), 2, - sym__concat, - aux_sym_concatenation_token1, - [252252] = 6, + ACTIONS(9296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9298), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9300), 1, + anon_sym_BQUOTE, + ACTIONS(9302), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2852), 2, + sym_expansion, + sym_command_substitution, + [312382] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11769), 1, - anon_sym_elif, - ACTIONS(11771), 1, - anon_sym_else, - ACTIONS(11807), 1, - anon_sym_fi, - STATE(6013), 1, - sym_else_clause, - STATE(5129), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [252272] = 3, - ACTIONS(3), 1, + ACTIONS(9000), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9002), 1, + anon_sym_BQUOTE, + ACTIONS(9004), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14664), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2257), 2, + sym_expansion, + sym_command_substitution, + [312402] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1222), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [252286] = 6, + ACTIONS(4516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4520), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14666), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2576), 2, + sym_expansion, + sym_command_substitution, + [312422] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9208), 1, + anon_sym_BQUOTE, + ACTIONS(9210), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14668), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1300), 2, + sym_expansion, + sym_command_substitution, + [312442] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11809), 1, + ACTIONS(8914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8916), 1, + anon_sym_BQUOTE, + ACTIONS(8918), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14670), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1888), 2, + sym_expansion, + sym_command_substitution, + [312462] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14672), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4862), 2, + sym_expansion, + sym_command_substitution, + [312482] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14674), 1, anon_sym_SLASH, - ACTIONS(11811), 1, + ACTIONS(14676), 1, anon_sym_RBRACE3, - ACTIONS(11813), 1, + ACTIONS(14678), 1, sym__expansion_word, - STATE(5061), 1, + STATE(6475), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + ACTIONS(14590), 2, sym__concat, aux_sym_concatenation_token1, - [252306] = 4, + [312502] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9102), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14680), 1, + anon_sym_DOLLAR_LPAREN, + STATE(984), 2, + sym_expansion, + sym_command_substitution, + [312522] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14682), 1, + anon_sym_DOLLAR_LPAREN, + STATE(964), 2, + sym_expansion, + sym_command_substitution, + [312542] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12245), 1, + anon_sym_BQUOTE, + ACTIONS(12247), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3021), 2, + sym_expansion, + sym_command_substitution, + [312562] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE, + ACTIONS(8938), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14684), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1783), 2, + sym_expansion, + sym_command_substitution, + [312582] = 6, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14686), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1113), 2, + sym_expansion, + sym_command_substitution, + [312602] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(332), 1, + anon_sym_BQUOTE, + ACTIONS(334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14688), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1058), 2, + sym_expansion, + sym_command_substitution, + [312622] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12181), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12183), 1, + anon_sym_BQUOTE, + ACTIONS(12185), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3282), 2, + sym_expansion, + sym_command_substitution, + [312642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14692), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(14690), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [312656] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14694), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5628), 2, + sym_expansion, + sym_command_substitution, + [312676] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14488), 1, + anon_sym_elif, + ACTIONS(14490), 1, + anon_sym_else, + ACTIONS(14696), 1, + anon_sym_fi, + STATE(7417), 1, + sym_else_clause, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312696] = 6, ACTIONS(71), 1, sym_comment, - STATE(5113), 1, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14698), 1, + anon_sym_RPAREN, + STATE(6373), 1, aux_sym_concatenation_repeat1, - ACTIONS(11723), 2, + STATE(6598), 1, + aux_sym_case_item_repeat1, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1222), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [252322] = 6, + [312716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, + ACTIONS(14500), 1, anon_sym_COMMA, - ACTIONS(11817), 1, + ACTIONS(14702), 1, aux_sym_heredoc_redirect_token1, - STATE(3743), 1, + STATE(4241), 1, sym__c_terminator, - STATE(5017), 1, + STATE(6319), 1, aux_sym__for_body_repeat1, - ACTIONS(11815), 2, + ACTIONS(14700), 2, anon_sym_SEMI, anon_sym_AMP, - [252342] = 6, + [312736] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11769), 1, - anon_sym_elif, - ACTIONS(11771), 1, - anon_sym_else, - ACTIONS(11819), 1, - anon_sym_fi, - STATE(6039), 1, - sym_else_clause, - STATE(5129), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [252362] = 4, + ACTIONS(5126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5130), 1, + anon_sym_BQUOTE, + ACTIONS(5132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14704), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2870), 2, + sym_expansion, + sym_command_substitution, + [312756] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [252377] = 6, + ACTIONS(8488), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8492), 1, + anon_sym_BQUOTE, + ACTIONS(8494), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14706), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1683), 2, + sym_expansion, + sym_command_substitution, + [312776] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(4064), 1, + STATE(5099), 1, sym__heredoc_body, - STATE(4065), 1, + STATE(5100), 1, sym__simple_heredoc_body, - STATE(5714), 1, + STATE(6796), 1, + sym_heredoc_body, + [312795] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14712), 1, + sym_simple_heredoc_body, + STATE(5630), 1, + sym__simple_heredoc_body, + STATE(5631), 1, + sym__heredoc_body, + STATE(7466), 1, sym_heredoc_body, - [252396] = 3, + [312814] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11827), 1, + ACTIONS(14714), 1, sym__concat, - ACTIONS(5515), 4, + ACTIONS(6836), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [252409] = 5, + [312827] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14712), 1, + sym_simple_heredoc_body, + STATE(5641), 1, + sym__simple_heredoc_body, + STATE(5642), 1, + sym__heredoc_body, + STATE(7466), 1, + sym_heredoc_body, + [312846] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11829), 1, + ACTIONS(14716), 1, anon_sym_SLASH, - ACTIONS(11831), 1, + ACTIONS(14718), 1, anon_sym_RBRACE3, - STATE(5061), 1, + STATE(6475), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + ACTIONS(14590), 2, sym__concat, aux_sym_concatenation_token1, - [252426] = 5, + [312863] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14568), 1, + aux_sym_concatenation_token1, + ACTIONS(14720), 1, + sym__concat, + STATE(6419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1267), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [312880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14419), 1, + anon_sym_in, + ACTIONS(14423), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14421), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [312895] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + STATE(4892), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [312912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14399), 1, + anon_sym_in, + ACTIONS(14403), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14401), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [312927] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(4979), 1, + sym__simple_heredoc_body, + STATE(4983), 1, + sym__heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + [312946] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(4970), 1, + sym__simple_heredoc_body, + STATE(4973), 1, + sym__heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + [312965] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11757), 1, + ACTIONS(14674), 1, anon_sym_SLASH, - ACTIONS(11759), 1, + ACTIONS(14676), 1, anon_sym_RBRACE3, - STATE(5061), 1, + STATE(6475), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + ACTIONS(14590), 2, sym__concat, aux_sym_concatenation_token1, - [252443] = 3, + [312982] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11833), 1, - sym__concat, - ACTIONS(5509), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [252456] = 5, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(7519), 1, + sym_heredoc_body, + STATE(4890), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [312999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11837), 1, - anon_sym_COMMA, - ACTIONS(11840), 1, + ACTIONS(14726), 1, + anon_sym_in, + ACTIONS(14730), 1, aux_sym_heredoc_redirect_token1, - STATE(5053), 1, - aux_sym__for_body_repeat1, - ACTIONS(11835), 2, + ACTIONS(14728), 3, anon_sym_SEMI, anon_sym_AMP, - [252473] = 3, + anon_sym_SEMI_SEMI, + [313014] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11842), 1, - sym__concat, - ACTIONS(5530), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [252486] = 6, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(7519), 1, + sym_heredoc_body, + STATE(4937), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313031] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11765), 1, - anon_sym_RPAREN, - ACTIONS(11844), 1, - sym__special_character, - STATE(5185), 1, - aux_sym__literal_repeat1, - STATE(5289), 1, - aux_sym_case_item_repeat1, - [252505] = 6, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(5112), 1, + sym__simple_heredoc_body, + STATE(5120), 1, + sym__heredoc_body, + STATE(6796), 1, + sym_heredoc_body, + [313050] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(165), 1, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + STATE(4968), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313067] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14712), 1, + sym_simple_heredoc_body, + STATE(5645), 1, + sym__simple_heredoc_body, + STATE(5646), 1, + sym__heredoc_body, + STATE(7466), 1, + sym_heredoc_body, + [313086] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(689), 1, anon_sym_LBRACE, - ACTIONS(11846), 1, + ACTIONS(14732), 1, anon_sym_SEMI, - ACTIONS(11848), 1, + ACTIONS(14734), 1, anon_sym_do, - STATE(4483), 1, - sym_compound_statement, - STATE(4533), 1, + STATE(5061), 1, sym_do_group, - [252524] = 5, + STATE(5063), 1, + sym_compound_statement, + [313105] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14724), 1, sym_simple_heredoc_body, - STATE(5732), 1, - sym_heredoc_body, - STATE(4508), 2, + STATE(4944), 1, sym__heredoc_body, + STATE(4947), 1, sym__simple_heredoc_body, - [252541] = 3, + STATE(7519), 1, + sym_heredoc_body, + [313124] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11852), 1, + ACTIONS(14736), 1, sym__concat, - ACTIONS(5536), 4, + ACTIONS(6842), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [313137] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, + [313152] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [252554] = 5, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313167] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(5732), 1, + STATE(7466), 1, sym_heredoc_body, - STATE(4542), 2, + STATE(5649), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252571] = 5, + [313184] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5714), 1, - sym_heredoc_body, - STATE(3977), 2, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(4872), 1, sym__heredoc_body, + STATE(4881), 1, sym__simple_heredoc_body, - [252588] = 4, + STATE(7519), 1, + sym_heredoc_body, + [313203] = 4, ACTIONS(71), 1, sym_comment, - STATE(5137), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + STATE(6373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14568), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(11854), 2, - anon_sym_SLASH, + ACTIONS(14740), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [313218] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [252603] = 5, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313233] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - STATE(6030), 1, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(6796), 1, sym_heredoc_body, - STATE(4478), 2, + STATE(5101), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252620] = 5, + [313250] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(14742), 1, + anon_sym_SEMI, + ACTIONS(14744), 1, + anon_sym_do, + STATE(5673), 1, + sym_do_group, + STATE(5675), 1, + sym_compound_statement, + [313269] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5714), 1, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(7519), 1, sym_heredoc_body, - STATE(4001), 2, + STATE(4882), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252637] = 6, + [313286] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - STATE(4494), 1, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(5052), 1, sym__simple_heredoc_body, - STATE(4516), 1, + STATE(5105), 1, sym__heredoc_body, - STATE(5732), 1, + STATE(6796), 1, sym_heredoc_body, - [252656] = 6, + [313305] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(4509), 1, + STATE(7466), 1, + sym_heredoc_body, + STATE(5633), 2, sym__heredoc_body, - STATE(4547), 1, sym__simple_heredoc_body, - STATE(5732), 1, + [313322] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14748), 1, + anon_sym_elif, + ACTIONS(14746), 2, + anon_sym_fi, + anon_sym_else, + STATE(6400), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [313337] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(4929), 1, + sym__heredoc_body, + STATE(4936), 1, + sym__simple_heredoc_body, + STATE(7519), 1, + sym_heredoc_body, + [313356] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313371] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14753), 1, + sym__concat, + ACTIONS(6827), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [313384] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(6796), 1, sym_heredoc_body, - [252675] = 5, + STATE(5103), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313401] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14698), 1, + anon_sym_RPAREN, + ACTIONS(14755), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + STATE(6595), 1, + aux_sym_case_item_repeat1, + [313420] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(5732), 1, + STATE(7011), 1, sym_heredoc_body, - STATE(4548), 2, + STATE(5568), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252692] = 4, + [313437] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14759), 1, + sym__concat, + ACTIONS(6818), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [313450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11858), 1, + ACTIONS(14761), 1, anon_sym_in, - ACTIONS(11862), 1, + ACTIONS(14765), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11860), 3, + ACTIONS(14763), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [252707] = 5, + [313465] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11856), 1, - sym_simple_heredoc_body, - STATE(6030), 1, - sym_heredoc_body, - STATE(4473), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [252724] = 5, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14600), 1, + anon_sym_RPAREN, + ACTIONS(14755), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + STATE(6627), 1, + aux_sym_case_item_repeat1, + [313484] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14767), 1, + anon_sym_SLASH, + ACTIONS(14769), 1, + anon_sym_RBRACE3, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, + sym__concat, + aux_sym_concatenation_token1, + [313501] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(6030), 1, + STATE(7466), 1, sym_heredoc_body, - STATE(4470), 2, + STATE(5653), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252741] = 6, + [313518] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(4048), 1, - sym__simple_heredoc_body, - STATE(4054), 1, + STATE(5067), 1, sym__heredoc_body, - STATE(5714), 1, + STATE(5068), 1, + sym__simple_heredoc_body, + STATE(6796), 1, sym_heredoc_body, - [252760] = 4, + [313537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11666), 1, + ACTIONS(14405), 1, anon_sym_in, - ACTIONS(11670), 1, + ACTIONS(14409), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11668), 3, + ACTIONS(14407), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [252775] = 5, + [313552] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14724), 1, sym_simple_heredoc_body, - STATE(5732), 1, + STATE(7519), 1, sym_heredoc_body, - STATE(4520), 2, + STATE(4922), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252792] = 6, + [313569] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14584), 1, + anon_sym_RPAREN, + ACTIONS(14755), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + STATE(6703), 1, + aux_sym_case_item_repeat1, + [313588] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(3956), 1, - sym__simple_heredoc_body, - STATE(4035), 1, - sym__heredoc_body, - STATE(5578), 1, + STATE(7011), 1, sym_heredoc_body, - [252811] = 6, + STATE(5571), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313605] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14771), 1, + anon_sym_SEMI, + ACTIONS(14773), 1, + anon_sym_do, + STATE(5005), 1, + sym_do_group, + STATE(5009), 1, + sym_compound_statement, + [313624] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14724), 1, sym_simple_heredoc_body, - STATE(4468), 1, - sym__simple_heredoc_body, - STATE(4469), 1, - sym__heredoc_body, - STATE(6030), 1, + STATE(7519), 1, sym_heredoc_body, - [252830] = 6, + STATE(4932), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313641] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(14775), 2, + sym__concat, + aux_sym_concatenation_token1, + [313656] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14568), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(14778), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [313671] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(4466), 1, + STATE(5635), 1, sym__simple_heredoc_body, - STATE(4467), 1, + STATE(5636), 1, sym__heredoc_body, - STATE(6030), 1, + STATE(7466), 1, sym_heredoc_body, - [252849] = 5, + [313690] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14722), 1, sym_simple_heredoc_body, - STATE(6030), 1, - sym_heredoc_body, - STATE(4463), 2, + STATE(5002), 1, sym__heredoc_body, + STATE(5011), 1, sym__simple_heredoc_body, - [252866] = 5, + STATE(6845), 1, + sym_heredoc_body, + [313709] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14722), 1, sym_simple_heredoc_body, - STATE(6030), 1, + STATE(6845), 1, sym_heredoc_body, - STATE(4454), 2, + STATE(4915), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252883] = 6, + [313726] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11856), 1, - sym_simple_heredoc_body, - STATE(4451), 1, - sym__simple_heredoc_body, - STATE(4452), 1, - sym__heredoc_body, - STATE(6030), 1, - sym_heredoc_body, - [252902] = 6, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313741] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14780), 1, + anon_sym_SLASH, + ACTIONS(14782), 1, + anon_sym_RBRACE3, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, + sym__concat, + aux_sym_concatenation_token1, + [313758] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14580), 1, + anon_sym_RPAREN, + ACTIONS(14755), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + STATE(6694), 1, + aux_sym_case_item_repeat1, + [313777] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14658), 1, + anon_sym_SLASH, + ACTIONS(14660), 1, + anon_sym_RBRACE3, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, + sym__concat, + aux_sym_concatenation_token1, + [313794] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11856), 1, - sym_simple_heredoc_body, - STATE(4448), 1, - sym__simple_heredoc_body, - STATE(4449), 1, - sym__heredoc_body, - STATE(6030), 1, - sym_heredoc_body, - [252921] = 5, + ACTIONS(14784), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313809] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(6030), 1, + STATE(7011), 1, sym_heredoc_body, - STATE(4455), 2, + STATE(5574), 2, sym__heredoc_body, sym__simple_heredoc_body, - [252938] = 6, + [313826] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14724), 1, sym_simple_heredoc_body, - STATE(4430), 1, + STATE(4923), 1, sym__heredoc_body, - STATE(4431), 1, + STATE(4926), 1, sym__simple_heredoc_body, - STATE(6030), 1, + STATE(7519), 1, sym_heredoc_body, - [252957] = 6, + [313845] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11856), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - STATE(4438), 1, - sym__heredoc_body, - STATE(4439), 1, - sym__simple_heredoc_body, - STATE(6030), 1, - sym_heredoc_body, - [252976] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, - sym_simple_heredoc_body, - STATE(4069), 1, + STATE(5087), 1, sym__heredoc_body, - STATE(4070), 1, + STATE(5098), 1, sym__simple_heredoc_body, - STATE(5578), 1, + STATE(6796), 1, sym_heredoc_body, - [252995] = 6, + [313864] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(4540), 1, + STATE(5576), 1, sym__simple_heredoc_body, - STATE(4541), 1, + STATE(5600), 1, sym__heredoc_body, - STATE(5732), 1, + STATE(7011), 1, sym_heredoc_body, - [253014] = 5, + [313883] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - STATE(5578), 1, - sym_heredoc_body, - STATE(4068), 2, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(5072), 1, sym__heredoc_body, + STATE(5077), 1, sym__simple_heredoc_body, - [253031] = 5, + STATE(6796), 1, + sym_heredoc_body, + [313902] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, + ACTIONS(14708), 1, sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5714), 1, + STATE(6796), 1, sym_heredoc_body, - STATE(4010), 2, + STATE(5083), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253048] = 6, + [313919] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11864), 1, - sym_simple_heredoc_body, - STATE(4066), 1, - sym__heredoc_body, - STATE(4067), 1, - sym__simple_heredoc_body, - STATE(5578), 1, - sym_heredoc_body, - [253067] = 6, + ACTIONS(1310), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [313930] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(1306), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [313941] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(4012), 1, + ACTIONS(14757), 1, + sym_simple_heredoc_body, + STATE(5578), 1, sym__heredoc_body, - STATE(4013), 1, + STATE(5579), 1, sym__simple_heredoc_body, - STATE(5714), 1, + STATE(7011), 1, sym_heredoc_body, - [253086] = 4, + [313960] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7151), 1, + ACTIONS(1310), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(5130), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253101] = 6, + [313971] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14568), 1, + aux_sym_concatenation_token1, + ACTIONS(14786), 1, + sym__concat, + STATE(6419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [313988] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(4017), 1, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(4867), 1, sym__heredoc_body, - STATE(4019), 1, + STATE(4908), 1, sym__simple_heredoc_body, - STATE(5714), 1, + STATE(7519), 1, sym_heredoc_body, - [253120] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11866), 1, - anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253135] = 6, + [314007] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(419), 1, + ACTIONS(433), 1, anon_sym_LBRACE, - ACTIONS(11868), 1, + ACTIONS(14788), 1, anon_sym_SEMI, - ACTIONS(11870), 1, + ACTIONS(14790), 1, anon_sym_do, - STATE(3927), 1, - sym_compound_statement, - STATE(3928), 1, + STATE(4916), 1, sym_do_group, - [253154] = 5, + STATE(4927), 1, + sym_compound_statement, + [314026] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5714), 1, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(6845), 1, sym_heredoc_body, - STATE(4021), 2, + STATE(4989), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253171] = 5, + [314043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14792), 1, + anon_sym_in, + ACTIONS(14796), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14794), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [314058] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_SLASH, - ACTIONS(11811), 1, - anon_sym_RBRACE3, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, - sym__concat, - aux_sym_concatenation_token1, - [253188] = 5, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14724), 1, + sym_simple_heredoc_body, + STATE(4956), 1, + sym__heredoc_body, + STATE(4957), 1, + sym__simple_heredoc_body, + STATE(7519), 1, + sym_heredoc_body, + [314077] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, - anon_sym_SLASH, - ACTIONS(11874), 1, - anon_sym_RBRACE3, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, - sym__concat, - aux_sym_concatenation_token1, - [253205] = 6, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(6796), 1, + sym_heredoc_body, + STATE(5080), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314094] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(4536), 1, + STATE(5626), 1, sym__simple_heredoc_body, - STATE(4538), 1, + STATE(5627), 1, sym__heredoc_body, - STATE(5732), 1, + STATE(7466), 1, sym_heredoc_body, - [253224] = 6, + [314113] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14724), 1, sym_simple_heredoc_body, - STATE(4053), 1, + STATE(7519), 1, + sym_heredoc_body, + STATE(4933), 2, sym__heredoc_body, - STATE(4055), 1, sym__simple_heredoc_body, - STATE(5578), 1, - sym_heredoc_body, - [253243] = 4, + [314130] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(8038), 1, anon_sym_RBRACE3, - STATE(5131), 1, + STATE(6389), 1, aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [253258] = 4, + [314145] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(14588), 1, + anon_sym_SLASH, + ACTIONS(14592), 1, anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253273] = 5, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, + sym__concat, + aux_sym_concatenation_token1, + [314162] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(5578), 1, + STATE(7466), 1, sym_heredoc_body, - STATE(4051), 2, + STATE(5639), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253290] = 2, + [314179] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [253301] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1270), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [253312] = 2, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14712), 1, + sym_simple_heredoc_body, + STATE(7466), 1, + sym_heredoc_body, + STATE(5640), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314196] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [253323] = 5, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(6796), 1, + sym_heredoc_body, + STATE(5035), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314213] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(5578), 1, + STATE(7011), 1, sym_heredoc_body, - STATE(4047), 2, + STATE(5581), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253340] = 6, + [314230] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(4045), 1, - sym__simple_heredoc_body, - STATE(4049), 1, - sym__heredoc_body, - STATE(5578), 1, + STATE(7011), 1, sym_heredoc_body, - [253359] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(5106), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1200), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(11878), 2, - sym__concat, - aux_sym_concatenation_token1, - [253374] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11803), 1, - anon_sym_RPAREN, - ACTIONS(11844), 1, - sym__special_character, - STATE(5185), 1, - aux_sym__literal_repeat1, - STATE(5259), 1, - aux_sym_case_item_repeat1, - [253393] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253408] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11876), 1, - anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253423] = 5, + STATE(5585), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314247] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14722), 1, sym_simple_heredoc_body, - STATE(5732), 1, + STATE(6845), 1, sym_heredoc_body, - STATE(4535), 2, + STATE(5022), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253440] = 5, + [314264] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11723), 1, - aux_sym_concatenation_token1, - ACTIONS(11881), 1, - sym__concat, - STATE(5106), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1210), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [253457] = 6, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(4935), 1, + sym__heredoc_body, + STATE(4948), 1, + sym__simple_heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + [314283] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14722), 1, sym_simple_heredoc_body, - STATE(4528), 1, - sym__simple_heredoc_body, - STATE(4532), 1, + STATE(4900), 1, sym__heredoc_body, - STATE(5732), 1, + STATE(4920), 1, + sym__simple_heredoc_body, + STATE(6845), 1, sym_heredoc_body, - [253476] = 5, + [314302] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11723), 1, - aux_sym_concatenation_token1, - ACTIONS(11883), 1, - sym__concat, - STATE(5106), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1216), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [253493] = 4, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14722), 1, + sym_simple_heredoc_body, + STATE(6845), 1, + sym_heredoc_body, + STATE(4961), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314319] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - STATE(5131), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253508] = 4, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14757), 1, + sym_simple_heredoc_body, + STATE(5565), 1, + sym__heredoc_body, + STATE(5589), 1, + sym__simple_heredoc_body, + STATE(7011), 1, + sym_heredoc_body, + [314338] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 1, + STATE(6460), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14798), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - STATE(5047), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253523] = 4, + ACTIONS(14800), 2, + sym__concat, + aux_sym_concatenation_token1, + [314353] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_RBRACE3, - STATE(5098), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [253538] = 6, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14757), 1, + sym_simple_heredoc_body, + STATE(5586), 1, + sym__simple_heredoc_body, + STATE(5590), 1, + sym__heredoc_body, + STATE(7011), 1, + sym_heredoc_body, + [314372] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(4037), 1, - sym__heredoc_body, - STATE(4038), 1, + STATE(5617), 1, sym__simple_heredoc_body, - STATE(5578), 1, + STATE(5638), 1, + sym__heredoc_body, + STATE(7466), 1, sym_heredoc_body, - [253557] = 5, + [314391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14805), 1, + anon_sym_COMMA, + ACTIONS(14808), 1, + aux_sym_heredoc_redirect_token1, + STATE(6463), 1, + aux_sym__for_body_repeat1, + ACTIONS(14803), 2, + anon_sym_SEMI, + anon_sym_AMP, + [314408] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14722), 1, sym_simple_heredoc_body, - STATE(5578), 1, - sym_heredoc_body, - STATE(4024), 2, + STATE(4886), 1, sym__heredoc_body, + STATE(4887), 1, sym__simple_heredoc_body, - [253574] = 3, + STATE(6845), 1, + sym_heredoc_body, + [314427] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(11704), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [253587] = 5, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [314442] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14712), 1, sym_simple_heredoc_body, - STATE(5578), 1, + STATE(7466), 1, sym_heredoc_body, - STATE(4015), 2, + STATE(5658), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253604] = 5, + [314459] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11864), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(5578), 1, + STATE(7011), 1, sym_heredoc_body, - STATE(4014), 2, + STATE(5595), 2, sym__heredoc_body, sym__simple_heredoc_body, - [253621] = 6, + [314476] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(11850), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - STATE(4523), 1, - sym__simple_heredoc_body, - STATE(4524), 1, + STATE(5596), 1, sym__heredoc_body, - STATE(5732), 1, + STATE(5597), 1, + sym__simple_heredoc_body, + STATE(7011), 1, sym_heredoc_body, - [253640] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(5113), 1, - aux_sym_concatenation_repeat1, - ACTIONS(11723), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(11889), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [253655] = 4, + [314495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11891), 1, + ACTIONS(14362), 1, anon_sym_in, - ACTIONS(11895), 1, + ACTIONS(14366), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11893), 3, + ACTIONS(14364), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [253670] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(5111), 1, - aux_sym_concatenation_repeat1, - ACTIONS(11723), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(11897), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [253685] = 6, + [314510] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11791), 1, - anon_sym_RPAREN, - ACTIONS(11844), 1, - sym__special_character, - STATE(5185), 1, - aux_sym__literal_repeat1, - STATE(5225), 1, - aux_sym_case_item_repeat1, - [253704] = 4, + ACTIONS(14812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(14445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [314523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, + ACTIONS(14814), 1, anon_sym_in, - ACTIONS(11642), 1, + ACTIONS(14818), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11640), 3, + ACTIONS(14816), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [253719] = 4, + [314538] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, + ACTIONS(8548), 1, anon_sym_RBRACE3, - STATE(5131), 1, + STATE(6476), 1, aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [253734] = 4, + [314553] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11903), 1, - anon_sym_elif, - ACTIONS(11901), 2, - anon_sym_fi, - anon_sym_else, - STATE(5129), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [253749] = 4, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(6796), 1, + sym_heredoc_body, + STATE(5066), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [314570] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, + ACTIONS(14820), 1, anon_sym_RBRACE3, - STATE(5131), 1, + STATE(6474), 1, aux_sym__expansion_body_repeat1, - ACTIONS(6673), 3, + ACTIONS(14822), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [253764] = 4, + [314585] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6460), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(14825), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [314600] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11906), 1, + ACTIONS(14827), 1, anon_sym_RBRACE3, - STATE(5131), 1, + STATE(6474), 1, aux_sym__expansion_body_repeat1, - ACTIONS(11908), 3, + ACTIONS(8050), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [253779] = 6, + [314615] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11721), 1, - anon_sym_RPAREN, - ACTIONS(11844), 1, - sym__special_character, - STATE(5185), 1, - aux_sym__literal_repeat1, - STATE(5292), 1, - aux_sym_case_item_repeat1, - [253798] = 5, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + STATE(6474), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [314630] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11911), 1, - anon_sym_SLASH, - ACTIONS(11913), 1, + ACTIONS(8550), 1, anon_sym_RBRACE3, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, - sym__concat, - aux_sym_concatenation_token1, - [253815] = 5, + STATE(6424), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8050), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [314645] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, + ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5714), 1, - sym_heredoc_body, - STATE(4063), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [253832] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11823), 1, + ACTIONS(14757), 1, sym_simple_heredoc_body, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - STATE(4061), 1, + STATE(5598), 1, sym__heredoc_body, - STATE(4062), 1, + STATE(5599), 1, sym__simple_heredoc_body, - STATE(5714), 1, + STATE(7011), 1, sym_heredoc_body, - [253851] = 5, + [314664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11737), 1, - anon_sym_SLASH, - ACTIONS(11741), 1, - anon_sym_RBRACE3, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + ACTIONS(1338), 4, sym__concat, - aux_sym_concatenation_token1, - [253868] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(5137), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11915), 2, anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(11917), 2, - sym__concat, aux_sym_concatenation_token1, - [253883] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11920), 1, - anon_sym_SEMI, - ACTIONS(11922), 1, - anon_sym_do, - STATE(3950), 1, - sym_do_group, - STATE(3953), 1, - sym_compound_statement, - [253902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11924), 1, - anon_sym_in, - ACTIONS(11928), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11926), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [253917] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - ACTIONS(11850), 1, - sym_simple_heredoc_body, - STATE(5732), 1, - sym_heredoc_body, - STATE(4534), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [253934] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - STATE(5714), 1, - sym_heredoc_body, - STATE(4058), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [253951] = 4, + anon_sym_RBRACE3, + [314674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11616), 1, - anon_sym_in, - ACTIONS(11620), 1, + ACTIONS(14808), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11618), 3, + ACTIONS(14803), 3, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [253966] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11823), 1, - sym_simple_heredoc_body, - ACTIONS(11825), 1, - sym__heredoc_body_beginning, - STATE(4059), 1, - sym__heredoc_body, - STATE(4060), 1, - sym__simple_heredoc_body, - STATE(5714), 1, - sym_heredoc_body, - [253985] = 2, + [314686] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(7787), 1, + sym__special_character, + ACTIONS(14780), 1, + anon_sym_SLASH, + ACTIONS(14782), 1, anon_sym_RBRACE3, - [253995] = 2, + STATE(6500), 1, + aux_sym__literal_repeat1, + [314702] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(1310), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254005] = 2, + [314712] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1306), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254015] = 2, + [314722] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1310), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254025] = 2, + [314732] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(1326), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254035] = 2, + [314742] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [254045] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11915), 4, + ACTIONS(14798), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [254055] = 5, + [314752] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6422), 1, + ACTIONS(7787), 1, sym__special_character, - ACTIONS(11911), 1, + ACTIONS(14767), 1, anon_sym_SLASH, - ACTIONS(11913), 1, + ACTIONS(14769), 1, anon_sym_RBRACE3, - STATE(5154), 1, + STATE(6500), 1, aux_sym__literal_repeat1, - [254071] = 2, + [314768] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(14829), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254081] = 2, + [314778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1298), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [254091] = 4, + [314788] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11930), 1, - sym__special_character, - STATE(5154), 1, - aux_sym__literal_repeat1, - ACTIONS(1294), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [254105] = 2, + ACTIONS(14831), 1, + anon_sym_esac, + ACTIONS(14833), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14835), 1, + anon_sym_SEMI_AMP, + ACTIONS(14837), 1, + anon_sym_SEMI_SEMI_AMP, + [314804] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254115] = 2, + ACTIONS(14839), 1, + anon_sym_esac, + ACTIONS(14841), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14843), 1, + anon_sym_SEMI_AMP, + ACTIONS(14845), 1, + anon_sym_SEMI_SEMI_AMP, + [314820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14849), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14847), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [314832] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1253), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254125] = 4, + [314842] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11933), 1, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(14734), 1, + anon_sym_do, + STATE(5085), 1, + sym_do_group, + STATE(5088), 1, + sym_compound_statement, + [314858] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14831), 1, anon_sym_esac, - ACTIONS(11935), 1, + ACTIONS(14851), 1, anon_sym_SEMI_SEMI, - ACTIONS(11937), 2, + ACTIONS(14853), 1, anon_sym_SEMI_AMP, + ACTIONS(14855), 1, anon_sym_SEMI_SEMI_AMP, - [254139] = 2, + [314874] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1314), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [254149] = 2, + [314884] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1238), 4, + ACTIONS(14857), 1, + anon_sym_RBRACE3, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, sym__concat, - anon_sym_SLASH, aux_sym_concatenation_token1, + [314898] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254159] = 2, + [314908] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, - sym__concat, + ACTIONS(14859), 1, + sym__special_character, + STATE(6500), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, anon_sym_SLASH, - aux_sym_concatenation_token1, anon_sym_RBRACE3, - [254169] = 4, + [314922] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11939), 1, + ACTIONS(14862), 1, anon_sym_esac, - ACTIONS(11941), 1, + ACTIONS(14864), 1, anon_sym_SEMI_SEMI, - ACTIONS(11943), 2, + ACTIONS(14866), 1, anon_sym_SEMI_AMP, + ACTIONS(14868), 1, anon_sym_SEMI_SEMI_AMP, - [254183] = 2, + [314938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(1338), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254193] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11945), 1, - anon_sym_esac, - ACTIONS(11947), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11949), 1, - anon_sym_SEMI_AMP, - ACTIONS(11951), 1, - anon_sym_SEMI_SEMI_AMP, - [254209] = 4, + [314948] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11844), 1, - sym__special_character, - STATE(5185), 1, - aux_sym__literal_repeat1, - ACTIONS(11889), 2, + ACTIONS(1346), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - [254223] = 2, + aux_sym_concatenation_token1, + [314958] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254233] = 2, + [314968] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5772), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [314978] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [314988] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [314998] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(14744), 1, + anon_sym_do, + STATE(5687), 1, + sym_do_group, + STATE(5689), 1, + sym_compound_statement, + [315014] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 4, + ACTIONS(1354), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254243] = 4, + [315024] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_esac, - ACTIONS(11955), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11957), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [254257] = 4, + ACTIONS(1342), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [315034] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11959), 1, + ACTIONS(14839), 1, anon_sym_esac, - ACTIONS(11961), 1, + ACTIONS(14870), 1, anon_sym_SEMI_SEMI, - ACTIONS(11963), 2, + ACTIONS(14872), 1, anon_sym_SEMI_AMP, + ACTIONS(14874), 1, anon_sym_SEMI_SEMI_AMP, - [254271] = 5, + [315050] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11965), 1, - anon_sym_esac, - ACTIONS(11967), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11969), 1, - anon_sym_SEMI_AMP, - ACTIONS(11971), 1, - anon_sym_SEMI_SEMI_AMP, - [254287] = 5, - ACTIONS(29), 1, + ACTIONS(433), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11922), 1, + ACTIONS(14790), 1, anon_sym_do, - STATE(3978), 1, + STATE(5003), 1, sym_do_group, - STATE(3979), 1, + STATE(5006), 1, sym_compound_statement, - [254303] = 4, + [315066] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [315076] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11973), 1, + ACTIONS(1322), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, + [315086] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [254317] = 2, + anon_sym_RBRACE3, + [315096] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1314), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [315106] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5768), 4, + sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [254327] = 5, + anon_sym_RBRACE3, + [315116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11965), 1, - anon_sym_esac, - ACTIONS(11975), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11977), 1, - anon_sym_SEMI_AMP, - ACTIONS(11979), 1, - anon_sym_SEMI_SEMI_AMP, - [254343] = 2, + ACTIONS(1354), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [315126] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1330), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254353] = 2, + [315136] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1200), 4, + ACTIONS(1322), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254363] = 5, + [315146] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(11945), 1, + ACTIONS(14862), 1, anon_sym_esac, - ACTIONS(11981), 1, + ACTIONS(14876), 1, anon_sym_SEMI_SEMI, - ACTIONS(11983), 1, + ACTIONS(14878), 1, anon_sym_SEMI_AMP, - ACTIONS(11985), 1, + ACTIONS(14880), 1, anon_sym_SEMI_SEMI_AMP, - [254379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11989), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11987), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [254391] = 2, + [315162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1246), 4, + ACTIONS(1298), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254401] = 2, + [315172] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1318), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254411] = 2, + [315182] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14882), 1, + anon_sym_esac, + ACTIONS(14884), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14886), 1, + anon_sym_SEMI_AMP, + ACTIONS(14888), 1, + anon_sym_SEMI_SEMI_AMP, + [315198] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [315208] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1334), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254421] = 2, + [315218] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5640), 4, + ACTIONS(7160), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254431] = 5, + [315228] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6422), 1, - sym__special_character, - ACTIONS(11872), 1, - anon_sym_SLASH, - ACTIONS(11874), 1, + ACTIONS(6818), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - STATE(5154), 1, - aux_sym__literal_repeat1, - [254447] = 2, + [315238] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11991), 4, + ACTIONS(7164), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254457] = 2, + [315248] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4708), 4, - sym__concat, + ACTIONS(7787), 1, + sym__special_character, + ACTIONS(14716), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(14718), 1, anon_sym_RBRACE3, - [254467] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11993), 1, - sym__special_character, - STATE(5185), 1, + STATE(6500), 1, aux_sym__literal_repeat1, - ACTIONS(1294), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [254481] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1262), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254491] = 5, - ACTIONS(71), 1, + [315264] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(11848), 1, - anon_sym_do, - STATE(4502), 1, - sym_compound_statement, - STATE(4504), 1, - sym_do_group, - [254507] = 2, + ACTIONS(14892), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14890), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [315276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1306), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [254517] = 2, + anon_sym_RBRACE3, + [315286] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1230), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254527] = 2, + ACTIONS(14894), 1, + anon_sym_esac, + ACTIONS(14896), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14898), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [315300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1302), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11998), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11996), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [254549] = 2, + [315310] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1234), 4, + ACTIONS(1294), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [254559] = 5, + [315320] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(14900), 1, anon_sym_esac, - ACTIONS(12002), 1, + ACTIONS(14902), 1, anon_sym_SEMI_SEMI, - ACTIONS(12004), 1, + ACTIONS(14904), 2, anon_sym_SEMI_AMP, - ACTIONS(12006), 1, anon_sym_SEMI_SEMI_AMP, - [254575] = 2, + [315334] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(4715), 4, + ACTIONS(1310), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [254585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11840), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11835), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [254597] = 5, + [315344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12008), 1, - anon_sym_esac, - ACTIONS(12010), 1, - anon_sym_SEMI_SEMI, - ACTIONS(12012), 1, - anon_sym_SEMI_AMP, - ACTIONS(12014), 1, - anon_sym_SEMI_SEMI_AMP, - [254613] = 5, + ACTIONS(1306), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [315354] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12008), 1, + ACTIONS(14906), 1, anon_sym_esac, - ACTIONS(12016), 1, + ACTIONS(14908), 1, anon_sym_SEMI_SEMI, - ACTIONS(12018), 1, + ACTIONS(14910), 2, anon_sym_SEMI_AMP, - ACTIONS(12020), 1, anon_sym_SEMI_SEMI_AMP, - [254629] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1274), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254639] = 2, + [315368] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5515), 4, + ACTIONS(1310), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254649] = 5, + [315378] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(14912), 1, anon_sym_esac, - ACTIONS(12022), 1, + ACTIONS(14914), 1, anon_sym_SEMI_SEMI, - ACTIONS(12024), 1, + ACTIONS(14916), 2, anon_sym_SEMI_AMP, - ACTIONS(12026), 1, anon_sym_SEMI_SEMI_AMP, - [254665] = 5, + [315392] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(419), 1, + ACTIONS(14882), 1, + anon_sym_esac, + ACTIONS(14918), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14920), 1, + anon_sym_SEMI_AMP, + ACTIONS(14922), 1, + anon_sym_SEMI_SEMI_AMP, + [315408] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14755), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + ACTIONS(14740), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [315422] = 5, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(11870), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14773), 1, anon_sym_do, - STATE(3944), 1, - sym_compound_statement, - STATE(3951), 1, + STATE(4931), 1, sym_do_group, - [254681] = 2, + STATE(4938), 1, + sym_compound_statement, + [315438] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 4, - sym__concat, + ACTIONS(14924), 1, + sym__special_character, + STATE(6545), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254691] = 2, + [315452] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5509), 4, + ACTIONS(6827), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [254701] = 2, + [315462] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 4, - sym__concat, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(14927), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315473] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(14931), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315486] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(14933), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315497] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14808), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(14935), 1, + anon_sym_COMMA, + STATE(6550), 1, + aux_sym__for_body_repeat1, + [315510] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14938), 1, + anon_sym_COMMA, + ACTIONS(14940), 1, + anon_sym_RPAREN, + STATE(6640), 1, + aux_sym__for_body_repeat1, + [315523] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(14942), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315536] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7354), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(14944), 1, + anon_sym_COMMA, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315549] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254711] = 5, + [315558] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6422), 1, - sym__special_character, - ACTIONS(11829), 1, - anon_sym_SLASH, - ACTIONS(11831), 1, - anon_sym_RBRACE3, - STATE(5154), 1, - aux_sym__literal_repeat1, - [254727] = 2, + ACTIONS(1306), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [315567] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, + ACTIONS(1310), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254737] = 2, + [315576] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1238), 4, - sym__concat, + ACTIONS(1354), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [254747] = 2, + [315585] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5644), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [254757] = 4, + ACTIONS(12339), 1, + anon_sym_PIPE, + ACTIONS(14947), 1, + anon_sym_PIPE_AMP, + STATE(5102), 1, + aux_sym_pipeline_repeat1, + [315598] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6076), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(12028), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - STATE(5209), 1, + ACTIONS(14949), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254770] = 4, + [315611] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(14951), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315622] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [315631] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12031), 1, + ACTIONS(14953), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254783] = 4, + [315644] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12033), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(12035), 1, + ACTIONS(1314), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [315653] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [315662] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, anon_sym_COMMA, - STATE(5275), 1, - aux_sym__for_body_repeat1, - [254796] = 4, + ACTIONS(14955), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315675] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12906), 1, + anon_sym_PIPE, + ACTIONS(14957), 1, + anon_sym_PIPE_AMP, + STATE(5499), 1, + aux_sym_pipeline_repeat1, + [315688] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14959), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [315701] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13001), 1, + anon_sym_PIPE, + ACTIONS(13003), 1, + anon_sym_PIPE_AMP, + STATE(5602), 1, + aux_sym_pipeline_repeat1, + [315714] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14566), 1, + anon_sym_RPAREN, + STATE(6567), 1, + aux_sym_case_item_repeat1, + [315727] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14961), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [315740] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [315749] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12337), 1, + anon_sym_PIPE, + ACTIONS(14963), 1, + anon_sym_PIPE_AMP, + STATE(5095), 1, + aux_sym_pipeline_repeat1, + [315762] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [315771] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12037), 1, + ACTIONS(14965), 1, anon_sym_RPAREN_RPAREN, - STATE(5277), 1, - aux_sym__for_body_repeat1, - [254809] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315784] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(14967), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315795] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12039), 1, + ACTIONS(14969), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254822] = 4, + [315808] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12041), 1, + ACTIONS(14971), 1, anon_sym_RPAREN_RPAREN, - STATE(5270), 1, - aux_sym__for_body_repeat1, - [254835] = 3, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12043), 2, + ACTIONS(14973), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [254846] = 4, + [315832] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12047), 1, + ACTIONS(14975), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, - aux_sym__for_body_repeat1, - [254859] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315845] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12049), 1, + ACTIONS(14977), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254872] = 4, + [315858] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1263), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [315867] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14979), 1, + anon_sym_SLASH, + ACTIONS(14981), 1, + anon_sym_RBRACE3, + ACTIONS(14983), 1, + sym__regex_no_slash, + [315880] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14985), 1, + sym__concat, + ACTIONS(6827), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315891] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(12066), 1, + anon_sym_PIPE, + ACTIONS(14987), 1, + anon_sym_PIPE_AMP, + STATE(4824), 1, + aux_sym_pipeline_repeat1, + [315904] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14989), 1, + sym__concat, + ACTIONS(6818), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315915] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12051), 1, + ACTIONS(14991), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254885] = 4, + [315928] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12053), 1, + ACTIONS(14993), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, + ACTIONS(14995), 1, + anon_sym_COMMA, + STATE(6550), 1, aux_sym__for_body_repeat1, - [254898] = 4, + [315941] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12055), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(14997), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [315954] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14938), 1, + anon_sym_COMMA, + ACTIONS(14999), 1, anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [254911] = 4, + STATE(6679), 1, + aux_sym__for_body_repeat1, + [315967] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(11763), 1, + ACTIONS(15001), 1, anon_sym_RPAREN, - STATE(5286), 1, + STATE(6599), 1, aux_sym_case_item_repeat1, - [254924] = 4, + [315980] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12057), 1, + ACTIONS(14618), 1, anon_sym_RPAREN, - STATE(5282), 1, + STATE(6676), 1, aux_sym_case_item_repeat1, - [254937] = 4, + [315993] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12059), 1, + ACTIONS(15003), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [254950] = 4, + [316006] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15005), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316019] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15007), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316032] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12061), 1, + ACTIONS(15009), 1, anon_sym_RPAREN, - STATE(5282), 1, + STATE(6599), 1, aux_sym_case_item_repeat1, - [254963] = 4, + [316045] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12063), 1, + ACTIONS(15011), 1, anon_sym_RPAREN, - STATE(5282), 1, + STATE(6599), 1, aux_sym_case_item_repeat1, - [254976] = 4, + [316058] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10077), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12065), 1, - anon_sym_PIPE_AMP, - STATE(4104), 1, - aux_sym_pipeline_repeat1, - [254989] = 3, + ACTIONS(15013), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [316071] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15015), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [316084] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15017), 1, + anon_sym_PIPE, + ACTIONS(15020), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [316097] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15022), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316110] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15024), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316123] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15026), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316136] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12067), 2, + ACTIONS(15028), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255000] = 2, + [316147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1226), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [255009] = 4, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15030), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316158] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12069), 1, + ACTIONS(14938), 1, anon_sym_COMMA, - ACTIONS(12071), 1, + ACTIONS(15032), 1, anon_sym_RPAREN, - STATE(5247), 1, + STATE(6589), 1, aux_sym__for_body_repeat1, - [255022] = 4, + [316171] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(9612), 1, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15034), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316184] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15036), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316197] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15038), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316210] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15040), 1, + sym__concat, + ACTIONS(6836), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316221] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15042), 1, + sym__concat, + ACTIONS(6842), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316232] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15044), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14910), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [316243] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15046), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316256] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15048), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316269] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12304), 1, anon_sym_PIPE, - ACTIONS(12073), 1, + ACTIONS(15050), 1, anon_sym_PIPE_AMP, - STATE(3833), 1, + STATE(5036), 1, aux_sym_pipeline_repeat1, - [255035] = 3, + [316282] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(1294), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [316291] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12075), 2, + ACTIONS(15052), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255046] = 4, + [316302] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12077), 1, + ACTIONS(15054), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255059] = 2, + [316315] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [255068] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12069), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12079), 1, - anon_sym_RPAREN, - STATE(5236), 1, + ACTIONS(15056), 1, + anon_sym_RPAREN_RPAREN, + STATE(6681), 1, aux_sym__for_body_repeat1, - [255081] = 4, + [316328] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15058), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316339] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14843), 1, + anon_sym_SEMI_AMP, + ACTIONS(14845), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15060), 1, + anon_sym_SEMI_SEMI, + [316352] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12081), 1, + ACTIONS(15062), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255094] = 4, + [316365] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12069), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12083), 1, - anon_sym_RPAREN, - STATE(5255), 1, - aux_sym__for_body_repeat1, - [255107] = 4, + ACTIONS(15064), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316378] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12085), 1, + ACTIONS(15066), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255120] = 2, + [316391] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [255129] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15068), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316404] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12087), 1, + ACTIONS(15070), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255142] = 4, + [316417] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12069), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12089), 1, - anon_sym_RPAREN, - STATE(5255), 1, + ACTIONS(15072), 1, + anon_sym_RPAREN_RPAREN, + STATE(6550), 1, aux_sym__for_body_repeat1, - [255155] = 3, + [316430] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15074), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [316443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12091), 2, + ACTIONS(15076), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255166] = 4, + [316454] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12093), 1, + ACTIONS(15078), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255179] = 3, + [316467] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12095), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255190] = 3, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15080), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316480] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12097), 1, + STATE(6475), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14590), 2, sym__concat, - ACTIONS(5509), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255201] = 4, + aux_sym_concatenation_token1, + [316491] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12099), 1, + ACTIONS(15082), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255214] = 4, + STATE(6587), 1, + aux_sym__for_body_repeat1, + [316504] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12101), 1, + ACTIONS(15084), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255227] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12069), 1, - anon_sym_COMMA, - ACTIONS(12103), 1, - anon_sym_RPAREN, - STATE(5255), 1, - aux_sym__for_body_repeat1, - [255240] = 3, + [316517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12105), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255251] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12107), 1, - sym__concat, - ACTIONS(5515), 2, + ACTIONS(15086), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255262] = 2, + [316528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1354), 3, sym__regex_no_slash, anon_sym_SLASH, anon_sym_RBRACE3, - [255271] = 4, + [316537] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12109), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255284] = 3, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15088), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316548] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12111), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11943), 2, + ACTIONS(14886), 1, anon_sym_SEMI_AMP, + ACTIONS(14888), 1, anon_sym_SEMI_SEMI_AMP, - [255295] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12113), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255308] = 3, + ACTIONS(15090), 1, + anon_sym_SEMI_SEMI, + [316561] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12115), 1, - sym_extglob_pattern, - ACTIONS(5476), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [255319] = 4, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15092), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316572] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11840), 1, - anon_sym_RPAREN, - ACTIONS(12117), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - STATE(5255), 1, - aux_sym__for_body_repeat1, - [255332] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12120), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255345] = 4, + ACTIONS(15094), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316585] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12122), 1, + ACTIONS(14938), 1, + anon_sym_COMMA, + ACTIONS(15096), 1, anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255358] = 3, + STATE(6679), 1, + aux_sym__for_body_repeat1, + [316598] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12124), 2, + ACTIONS(15098), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255369] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12126), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255382] = 3, + [316609] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12128), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11937), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [255393] = 3, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15100), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316622] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12130), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255404] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15102), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316635] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12132), 1, + ACTIONS(15104), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255417] = 2, + [316648] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [255426] = 4, + ACTIONS(1342), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [316657] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12134), 1, + ACTIONS(15106), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255439] = 4, + STATE(6550), 1, + aux_sym__for_body_repeat1, + [316670] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12136), 1, + ACTIONS(15108), 1, anon_sym_RPAREN_RPAREN, - STATE(5327), 1, - aux_sym__for_body_repeat1, - [255452] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316683] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12138), 1, + ACTIONS(15110), 1, anon_sym_RPAREN_RPAREN, - STATE(5332), 1, + STATE(6626), 1, aux_sym__for_body_repeat1, - [255465] = 4, + [316696] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(15112), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14916), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [316707] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12140), 1, + ACTIONS(15114), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255478] = 3, + [316720] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12142), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255489] = 4, + ACTIONS(1261), 1, + sym__special_character, + ACTIONS(1263), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [316731] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15116), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [316744] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12144), 1, + ACTIONS(15118), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255502] = 4, + [316757] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12146), 1, + ACTIONS(15120), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, + STATE(6550), 1, aux_sym__for_body_repeat1, - [255515] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12148), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255526] = 3, + [316770] = 4, ACTIONS(71), 1, sym_comment, - STATE(5061), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(11739), 2, - sym__concat, - aux_sym_concatenation_token1, - [255537] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15122), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316783] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(9865), 1, - anon_sym_PIPE, - ACTIONS(12150), 1, - anon_sym_PIPE_AMP, - STATE(3941), 1, - aux_sym_pipeline_repeat1, - [255550] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15124), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316796] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12152), 1, + ACTIONS(15126), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255563] = 4, + [316809] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12154), 1, + ACTIONS(15128), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, + STATE(6654), 1, aux_sym__for_body_repeat1, - [255576] = 4, + [316822] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_SLASH, - ACTIONS(12158), 1, - anon_sym_RBRACE3, - ACTIONS(12160), 1, - sym__regex_no_slash, - [255589] = 4, + ACTIONS(14938), 1, + anon_sym_COMMA, + ACTIONS(15130), 1, + anon_sym_RPAREN, + STATE(6679), 1, + aux_sym__for_body_repeat1, + [316835] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12162), 1, + ACTIONS(15132), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, - aux_sym__for_body_repeat1, - [255602] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316848] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12164), 1, + ACTIONS(15134), 1, anon_sym_RPAREN_RPAREN, - STATE(5336), 1, - aux_sym__for_body_repeat1, - [255615] = 3, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [316861] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1220), 1, - sym__special_character, - ACTIONS(1222), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [255626] = 2, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15136), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316872] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1322), 3, sym__regex_no_slash, anon_sym_SLASH, anon_sym_RBRACE3, - [255635] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11793), 1, - anon_sym_RPAREN, - STATE(5224), 1, - aux_sym_case_item_repeat1, - [255648] = 4, + [316881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_PIPE, - ACTIONS(12169), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255661] = 2, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15138), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316892] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [255670] = 4, + ACTIONS(14995), 1, + anon_sym_COMMA, + ACTIONS(15140), 1, + anon_sym_RPAREN_RPAREN, + STATE(6706), 1, + aux_sym__for_body_repeat1, + [316905] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12171), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255683] = 4, + ACTIONS(15142), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14904), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [316916] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12173), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255696] = 4, + ACTIONS(14872), 1, + anon_sym_SEMI_AMP, + ACTIONS(14874), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15144), 1, + anon_sym_SEMI_SEMI, + [316929] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12175), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255709] = 4, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15146), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316940] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12177), 1, + ACTIONS(15148), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255722] = 4, + [316953] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12179), 1, + ACTIONS(15150), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255735] = 4, + STATE(6550), 1, + aux_sym__for_body_repeat1, + [316966] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12181), 1, + ACTIONS(14938), 1, + anon_sym_COMMA, + ACTIONS(15152), 1, anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255748] = 3, + STATE(6659), 1, + aux_sym__for_body_repeat1, + [316979] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12183), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [255759] = 3, + ACTIONS(15154), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14898), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [316990] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12185), 2, + ACTIONS(15156), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255770] = 4, + [317001] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(12203), 1, anon_sym_PIPE, - ACTIONS(12187), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [255783] = 4, + ACTIONS(15158), 1, + anon_sym_PIPE_AMP, + STATE(4904), 1, + aux_sym_pipeline_repeat1, + [317014] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12189), 1, + ACTIONS(15160), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, + STATE(6646), 1, aux_sym__for_body_repeat1, - [255796] = 4, + [317027] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10523), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12191), 1, - anon_sym_PIPE_AMP, - STATE(4397), 1, - aux_sym_pipeline_repeat1, - [255809] = 4, + ACTIONS(15162), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317040] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15164), 1, + sym_extglob_pattern, + ACTIONS(6749), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [317051] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12193), 1, + ACTIONS(15166), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255822] = 4, + STATE(6714), 1, + aux_sym__for_body_repeat1, + [317064] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14808), 1, + anon_sym_RPAREN, + ACTIONS(15168), 1, anon_sym_COMMA, - ACTIONS(12195), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [255835] = 4, + STATE(6679), 1, + aux_sym__for_body_repeat1, + [317077] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12197), 1, + ACTIONS(15171), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255848] = 4, + [317090] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11731), 1, - anon_sym_RPAREN, - STATE(5357), 1, - aux_sym_case_item_repeat1, - [255861] = 4, + ACTIONS(14995), 1, + anon_sym_COMMA, + ACTIONS(15173), 1, + anon_sym_RPAREN_RPAREN, + STATE(6550), 1, + aux_sym__for_body_repeat1, + [317103] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12199), 1, + ACTIONS(15175), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255874] = 2, + [317116] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1222), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [255883] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(15177), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255896] = 4, + [317129] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12203), 1, + ACTIONS(15179), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255909] = 4, + [317142] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12205), 1, + ACTIONS(15181), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255922] = 3, + [317155] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12207), 2, + ACTIONS(15183), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [255933] = 2, + [317166] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [255942] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15185), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317179] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12209), 1, + ACTIONS(15187), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255955] = 4, + [317192] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11840), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(12211), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - STATE(5307), 1, + ACTIONS(15189), 1, + anon_sym_RPAREN_RPAREN, + STATE(6550), 1, aux_sym__for_body_repeat1, - [255968] = 4, + [317205] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14920), 1, + anon_sym_SEMI_AMP, + ACTIONS(14922), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15191), 1, + anon_sym_SEMI_SEMI, + [317218] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12214), 1, + ACTIONS(15193), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [255981] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1270), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [255990] = 2, + [317231] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [255999] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15195), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317244] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12216), 1, + ACTIONS(15197), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256012] = 4, + [317257] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15199), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317270] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(14570), 1, + anon_sym_RPAREN, + STATE(6709), 1, + aux_sym_case_item_repeat1, + [317283] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15201), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317294] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12218), 1, + ACTIONS(15203), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256025] = 4, + [317307] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12220), 1, + ACTIONS(15205), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256038] = 4, + [317320] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym_PIPE, - ACTIONS(12222), 1, - anon_sym_PIPE_AMP, - STATE(4103), 1, - aux_sym_pipeline_repeat1, - [256051] = 4, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15207), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317333] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11949), 1, + ACTIONS(14835), 1, anon_sym_SEMI_AMP, - ACTIONS(11951), 1, + ACTIONS(14837), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(12224), 1, + ACTIONS(15209), 1, anon_sym_SEMI_SEMI, - [256064] = 3, + [317346] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12226), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11957), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [256075] = 3, + ACTIONS(6881), 1, + anon_sym_COMMA, + ACTIONS(15211), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317359] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12228), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11963), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [256086] = 4, + ACTIONS(14995), 1, + anon_sym_COMMA, + ACTIONS(15213), 1, + anon_sym_RPAREN_RPAREN, + STATE(6670), 1, + aux_sym__for_body_repeat1, + [317372] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12069), 1, - anon_sym_COMMA, - ACTIONS(12230), 1, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15215), 1, anon_sym_RPAREN, - STATE(5240), 1, - aux_sym__for_body_repeat1, - [256099] = 3, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317385] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12232), 2, + ACTIONS(15217), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256110] = 3, + [317396] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12234), 1, - sym__concat, - ACTIONS(5530), 2, + ACTIONS(14929), 1, + anon_sym_LBRACK, + ACTIONS(15219), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256121] = 4, + [317407] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12236), 1, + ACTIONS(15221), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256134] = 4, + STATE(6550), 1, + aux_sym__for_body_repeat1, + [317420] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15223), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317433] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12238), 1, + ACTIONS(15225), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256147] = 4, + [317446] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(10066), 1, + ACTIONS(14564), 1, anon_sym_PIPE, - ACTIONS(12240), 1, - anon_sym_PIPE_AMP, - STATE(4096), 1, - aux_sym_pipeline_repeat1, - [256160] = 3, + ACTIONS(15227), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317459] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12242), 1, - sym__concat, - ACTIONS(5536), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [256171] = 4, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15229), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317472] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, + anon_sym_PIPE, + ACTIONS(15231), 1, + anon_sym_RPAREN, + STATE(6599), 1, + aux_sym_case_item_repeat1, + [317485] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12244), 1, + ACTIONS(15233), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256184] = 4, + [317498] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12246), 1, + ACTIONS(15235), 1, anon_sym_RPAREN_RPAREN, - STATE(5293), 1, + STATE(6689), 1, aux_sym__for_body_repeat1, - [256197] = 4, + [317511] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(12248), 1, + ACTIONS(15237), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, + STATE(6550), 1, aux_sym__for_body_repeat1, - [256210] = 4, + [317524] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12250), 1, + ACTIONS(15239), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256223] = 4, + [317537] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12252), 1, - anon_sym_RPAREN_RPAREN, - STATE(5216), 1, - aux_sym__for_body_repeat1, - [256236] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11969), 1, + ACTIONS(14878), 1, anon_sym_SEMI_AMP, - ACTIONS(11971), 1, + ACTIONS(14880), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(12254), 1, + ACTIONS(15241), 1, anon_sym_SEMI_SEMI, - [256249] = 3, + [317550] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, + ACTIONS(14929), 1, anon_sym_LBRACK, - ACTIONS(12256), 2, + ACTIONS(15243), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256260] = 4, + [317561] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12258), 1, - anon_sym_RPAREN_RPAREN, - STATE(5307), 1, - aux_sym__for_body_repeat1, - [256273] = 4, + ACTIONS(12588), 1, + anon_sym_PIPE, + ACTIONS(15245), 1, + anon_sym_PIPE_AMP, + STATE(5224), 1, + aux_sym_pipeline_repeat1, + [317574] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14866), 1, + anon_sym_SEMI_AMP, + ACTIONS(14868), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15247), 1, + anon_sym_SEMI_SEMI, + [317587] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12260), 1, + ACTIONS(15249), 1, anon_sym_RPAREN_RPAREN, - STATE(5219), 1, - aux_sym__for_body_repeat1, - [256286] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317600] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12262), 1, + ACTIONS(15251), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256299] = 4, + [317613] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11977), 1, + ACTIONS(14853), 1, anon_sym_SEMI_AMP, - ACTIONS(11979), 1, + ACTIONS(14855), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(12264), 1, + ACTIONS(15253), 1, anon_sym_SEMI_SEMI, - [256312] = 4, + [317626] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12266), 1, + ACTIONS(15255), 1, anon_sym_RPAREN_RPAREN, - STATE(5307), 1, - aux_sym__for_body_repeat1, - [256325] = 4, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + [317639] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(6881), 1, anon_sym_COMMA, - ACTIONS(12268), 1, + ACTIONS(15257), 1, anon_sym_RPAREN_RPAREN, - STATE(5209), 1, + STATE(6553), 1, aux_sym_arithmetic_expansion_repeat1, - [256338] = 2, + [317652] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, - sym_extglob_pattern, + ACTIONS(14564), 1, anon_sym_PIPE, + ACTIONS(14642), 1, anon_sym_RPAREN, - [256347] = 3, + STATE(6596), 1, + aux_sym_case_item_repeat1, + [317665] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12270), 2, + ACTIONS(15136), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256358] = 4, + [317673] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12272), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256371] = 2, + ACTIONS(15030), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317681] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 3, - sym_extglob_pattern, - anon_sym_PIPE, + ACTIONS(14892), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [256380] = 4, + [317689] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12274), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256393] = 4, + ACTIONS(15259), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15261), 1, + aux_sym__simple_variable_name_token1, + [317699] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12276), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256406] = 3, + ACTIONS(14790), 1, + anon_sym_do, + STATE(4966), 1, + sym_do_group, + [317709] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12278), 2, + ACTIONS(15217), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256417] = 2, + [317717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1238), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [256426] = 3, + ACTIONS(14773), 1, + anon_sym_do, + STATE(4898), 1, + sym_do_group, + [317727] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12280), 2, + ACTIONS(7160), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256437] = 3, + [317735] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12282), 2, + ACTIONS(7164), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256448] = 4, + [317743] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12284), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256461] = 2, + ACTIONS(6799), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [317751] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [256470] = 4, + ACTIONS(14927), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317759] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12286), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256483] = 2, + ACTIONS(15138), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [256492] = 3, + ACTIONS(14892), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [317775] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12288), 2, + ACTIONS(15201), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256503] = 2, + [317783] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1242), 3, - sym_extglob_pattern, - anon_sym_PIPE, + ACTIONS(1302), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317791] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14808), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [317799] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14808), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [256512] = 4, + [317807] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10601), 1, - anon_sym_PIPE, - ACTIONS(10603), 1, - anon_sym_PIPE_AMP, - STATE(4443), 1, - aux_sym_pipeline_repeat1, - [256525] = 4, + ACTIONS(14734), 1, + anon_sym_do, + STATE(5089), 1, + sym_do_group, + [317817] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12024), 1, - anon_sym_SEMI_AMP, - ACTIONS(12026), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(12290), 1, - anon_sym_SEMI_SEMI, - [256538] = 4, + ACTIONS(14773), 1, + anon_sym_do, + STATE(4940), 1, + sym_do_group, + [317827] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12292), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256551] = 4, + ACTIONS(14734), 1, + anon_sym_do, + STATE(5104), 1, + sym_do_group, + [317837] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12294), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [256564] = 4, + ACTIONS(15183), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317845] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12296), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [256577] = 4, + ACTIONS(15263), 1, + anon_sym_SLASH, + ACTIONS(15265), 1, + anon_sym_RBRACE3, + [317855] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10218), 1, - anon_sym_PIPE, - ACTIONS(12298), 1, - anon_sym_PIPE_AMP, - STATE(4169), 1, - aux_sym_pipeline_repeat1, - [256590] = 4, + ACTIONS(14767), 1, + anon_sym_SLASH, + ACTIONS(14769), 1, + anon_sym_RBRACE3, + [317865] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11983), 1, - anon_sym_SEMI_AMP, - ACTIONS(11985), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(12300), 1, - anon_sym_SEMI_SEMI, - [256603] = 3, + ACTIONS(14979), 1, + anon_sym_SLASH, + ACTIONS(14981), 1, + anon_sym_RBRACE3, + [317875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12302), 2, + ACTIONS(15156), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256614] = 3, + [317883] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12304), 2, + ACTIONS(15088), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256625] = 4, + [317891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(12306), 1, - anon_sym_RPAREN, - STATE(5282), 1, - aux_sym_case_item_repeat1, - [256638] = 4, + ACTIONS(15267), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15269), 1, + aux_sym__simple_variable_name_token1, + [317901] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12308), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256651] = 3, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317909] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_LBRACK, - ACTIONS(12310), 2, + ACTIONS(14933), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256662] = 4, + [317917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12312), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256675] = 4, + ACTIONS(15271), 1, + anon_sym_RBRACE3, + ACTIONS(15273), 1, + sym_regex, + [317927] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12004), 1, - anon_sym_SEMI_AMP, - ACTIONS(12006), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(12314), 1, - anon_sym_SEMI_SEMI, - [256688] = 4, + ACTIONS(15092), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317935] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12316), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256701] = 4, + ACTIONS(15146), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317943] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12018), 1, - anon_sym_SEMI_AMP, - ACTIONS(12020), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(12318), 1, - anon_sym_SEMI_SEMI, - [256714] = 4, + ACTIONS(15219), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317951] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12012), 1, - anon_sym_SEMI_AMP, - ACTIONS(12014), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(12320), 1, - anon_sym_SEMI_SEMI, - [256727] = 4, + ACTIONS(15243), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317959] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_PIPE, - ACTIONS(11805), 1, - anon_sym_RPAREN, - STATE(5257), 1, - aux_sym_case_item_repeat1, - [256740] = 4, + ACTIONS(15098), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317967] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_COMMA, - ACTIONS(12322), 1, - anon_sym_RPAREN_RPAREN, - STATE(5209), 1, - aux_sym_arithmetic_expansion_repeat1, - [256753] = 3, + ACTIONS(1350), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317975] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2544), 1, - sym_expansion, - [256763] = 3, + ACTIONS(14849), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [317983] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1802), 1, - sym_expansion, - [256773] = 3, + ACTIONS(14790), 1, + anon_sym_do, + STATE(5013), 1, + sym_do_group, + [317993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6755), 1, - anon_sym_DOLLAR_LBRACE, - STATE(993), 1, - sym_expansion, - [256783] = 3, + ACTIONS(14780), 1, + anon_sym_SLASH, + ACTIONS(14782), 1, + anon_sym_RBRACE3, + [318003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1526), 1, - sym_expansion, - [256793] = 3, + ACTIONS(1322), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [318011] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12324), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(12326), 1, - aux_sym__simple_variable_name_token1, - [256803] = 3, + ACTIONS(6862), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [318019] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12328), 1, + ACTIONS(1342), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - ACTIONS(12330), 1, - sym_regex, - [256813] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9505), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2647), 1, - sym_expansion, - [256823] = 2, + [318027] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11998), 2, + ACTIONS(14849), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - [256831] = 3, + [318035] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6629), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1315), 1, - sym_expansion, - [256841] = 3, + ACTIONS(15076), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318043] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12332), 1, - anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_RBRACE3, - [256851] = 2, + ACTIONS(14744), 1, + anon_sym_do, + STATE(5690), 1, + sym_do_group, + [318053] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12310), 2, + ACTIONS(15086), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256859] = 2, + [318061] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12288), 2, + ACTIONS(15058), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256867] = 2, + [318069] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12270), 2, + ACTIONS(14951), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256875] = 3, + [318077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9857), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2860), 1, - sym_expansion, - [256885] = 3, + ACTIONS(14967), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318085] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2095), 1, - sym_expansion, - [256895] = 3, + ACTIONS(14778), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [318093] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7726), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2371), 1, - sym_expansion, - [256905] = 2, + ACTIONS(6818), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318101] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15275), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15277), 1, + aux_sym__simple_variable_name_token1, + [318111] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6827), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318119] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_SLASH, + ACTIONS(15281), 1, + anon_sym_RBRACE3, + [318129] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14439), 1, + anon_sym_COLON, + ACTIONS(14441), 1, + anon_sym_RBRACE3, + [318139] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12280), 2, + ACTIONS(15028), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256913] = 3, + [318147] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14658), 1, + anon_sym_SLASH, + ACTIONS(14660), 1, + anon_sym_RBRACE3, + [318157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11922), 1, + ACTIONS(14744), 1, anon_sym_do, - STATE(3935), 1, + STATE(5661), 1, sym_do_group, - [256923] = 3, + [318167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1286), 1, - sym_expansion, - [256933] = 3, + ACTIONS(14716), 1, + anon_sym_SLASH, + ACTIONS(14718), 1, + anon_sym_RBRACE3, + [318177] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3818), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2225), 1, - sym_expansion, - [256943] = 2, + ACTIONS(15283), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15285), 1, + aux_sym__simple_variable_name_token1, + [318187] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12256), 2, + ACTIONS(14973), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [256951] = 3, + [318195] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12336), 1, + ACTIONS(14588), 1, anon_sym_SLASH, - ACTIONS(12338), 1, + ACTIONS(14592), 1, anon_sym_RBRACE3, - [256961] = 3, + [318205] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6591), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3560), 1, - sym_expansion, - [256971] = 3, + ACTIONS(14674), 1, + anon_sym_SLASH, + ACTIONS(14676), 1, + anon_sym_RBRACE3, + [318215] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, + ACTIONS(15287), 1, anon_sym_SLASH, - ACTIONS(11874), 1, + ACTIONS(15289), 1, anon_sym_RBRACE3, - [256981] = 2, + [318225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11840), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [256989] = 3, + ACTIONS(15052), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318233] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2271), 1, - sym_expansion, - [256999] = 3, + ACTIONS(15291), 1, + anon_sym_SLASH, + ACTIONS(15293), 1, + anon_sym_RBRACE3, + [318243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15295), 1, + aux_sym_heredoc_redirect_token1, + [318250] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8346), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1075), 1, - sym_expansion, - [257009] = 3, + ACTIONS(15297), 1, + aux_sym_brace_expression_token1, + [318257] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2760), 1, - sym_expansion, - [257019] = 2, + ACTIONS(15299), 1, + anon_sym_BQUOTE, + [318264] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12207), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257027] = 3, + ACTIONS(15301), 1, + anon_sym_BQUOTE, + [318271] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(318), 1, - anon_sym_DOLLAR_LBRACE, - STATE(888), 1, - sym_expansion, - [257037] = 2, + ACTIONS(15303), 1, + sym_heredoc_end, + [318278] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12278), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257045] = 3, + ACTIONS(15305), 1, + aux_sym_brace_expression_token1, + [318285] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7596), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1726), 1, - sym_expansion, - [257055] = 3, + ACTIONS(14478), 1, + anon_sym_RBRACE3, + [318292] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1885), 1, - sym_expansion, - [257065] = 3, + ACTIONS(15307), 1, + anon_sym_RPAREN, + [318299] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7177), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4177), 1, - sym_expansion, - [257075] = 3, + ACTIONS(15309), 1, + anon_sym_RBRACE3, + [318306] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1282), 1, - sym_expansion, - [257085] = 3, + ACTIONS(15311), 1, + anon_sym_RPAREN, + [318313] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1072), 1, - sym_expansion, - [257095] = 3, + ACTIONS(15313), 1, + aux_sym_brace_expression_token1, + [318320] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_SLASH, - ACTIONS(11811), 1, + ACTIONS(15315), 1, + aux_sym_brace_expression_token1, + [318327] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15317), 1, + anon_sym_RPAREN, + [318334] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15319), 1, + anon_sym_LT_LT_LT, + [318341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15321), 1, + aux_sym_heredoc_redirect_token1, + [318348] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15323), 1, anon_sym_RBRACE3, - [257105] = 2, + [318355] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12232), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257113] = 3, + ACTIONS(15307), 1, + anon_sym_BQUOTE, + [318362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11870), 1, - anon_sym_do, - STATE(3932), 1, - sym_do_group, - [257123] = 3, + ACTIONS(15325), 1, + anon_sym_RPAREN, + [318369] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2017), 1, - sym_expansion, - [257133] = 3, + ACTIONS(15327), 1, + anon_sym_RBRACE3, + [318376] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_DOLLAR_LBRACE, - STATE(958), 1, - sym_expansion, - [257143] = 3, + ACTIONS(15329), 1, + aux_sym_brace_expression_token1, + [318383] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2245), 1, - sym_expansion, - [257153] = 3, + ACTIONS(15331), 1, + aux_sym_brace_expression_token1, + [318390] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACE, - STATE(695), 1, - sym_expansion, - [257163] = 3, + ACTIONS(15333), 1, + anon_sym_LT_LT_LT, + [318397] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11737), 1, - anon_sym_SLASH, - ACTIONS(11741), 1, + ACTIONS(15335), 1, + anon_sym_RBRACE2, + [318404] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15337), 1, + anon_sym_RPAREN, + [318411] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15339), 1, + anon_sym_BQUOTE, + [318418] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15341), 1, + anon_sym_RBRACE2, + [318425] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15343), 1, + anon_sym_RPAREN, + [318432] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15337), 1, + anon_sym_BQUOTE, + [318439] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15345), 1, + aux_sym_brace_expression_token1, + [318446] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15347), 1, + anon_sym_RPAREN, + [318453] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_BQUOTE, + [318460] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15351), 1, + anon_sym_BQUOTE, + [318467] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15353), 1, + anon_sym_esac, + [318474] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14518), 1, anon_sym_RBRACE3, - [257173] = 3, + [318481] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11911), 1, - anon_sym_SLASH, - ACTIONS(11913), 1, + ACTIONS(15355), 1, + sym_heredoc_end, + [318488] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15357), 1, + anon_sym_BQUOTE, + [318495] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15359), 1, + anon_sym_RBRACE2, + [318502] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15361), 1, + aux_sym_brace_expression_token1, + [318509] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15363), 1, + anon_sym_RBRACE2, + [318516] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_RPAREN, + [318523] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15365), 1, anon_sym_RBRACE3, - [257183] = 2, + [318530] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12185), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257191] = 3, + ACTIONS(8838), 1, + anon_sym_RBRACK, + [318537] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11652), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5009), 1, - sym_expansion, - [257201] = 3, + ACTIONS(8846), 1, + anon_sym_RBRACK, + [318544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15367), 1, + aux_sym_heredoc_redirect_token1, + [318551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15369), 1, + aux_sym_heredoc_redirect_token1, + [318558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15371), 1, + aux_sym_heredoc_redirect_token1, + [318565] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(3862), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2213), 1, - sym_expansion, - [257211] = 2, + ACTIONS(15373), 1, + aux_sym_brace_expression_token1, + [318572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15375), 1, + aux_sym_heredoc_redirect_token1, + [318579] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 2, - anon_sym_SLASH, + ACTIONS(15377), 1, + anon_sym_BQUOTE, + [318586] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15379), 1, anon_sym_RBRACE3, - [257219] = 3, + [318593] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7086), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1123), 1, - sym_expansion, - [257229] = 2, + ACTIONS(15381), 1, + anon_sym_RBRACE3, + [318600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, + aux_sym_heredoc_redirect_token1, + [318607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15385), 1, + aux_sym_heredoc_redirect_token1, + [318614] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 2, - anon_sym_SLASH, + ACTIONS(15387), 1, + sym_heredoc_end, + [318621] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15389), 1, + aux_sym_brace_expression_token1, + [318628] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15391), 1, + aux_sym_brace_expression_token1, + [318635] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15393), 1, + anon_sym_LT_LT_LT, + [318642] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15395), 1, + anon_sym_RPAREN, + [318649] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15397), 1, + anon_sym_BQUOTE, + [318656] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15399), 1, + anon_sym_esac, + [318663] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15401), 1, + anon_sym_RBRACE2, + [318670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15403), 1, + aux_sym_heredoc_redirect_token1, + [318677] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15405), 1, + anon_sym_BQUOTE, + [318684] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15395), 1, + anon_sym_BQUOTE, + [318691] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15407), 1, + aux_sym_brace_expression_token1, + [318698] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_RPAREN, + [318705] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15411), 1, + anon_sym_RBRACE2, + [318712] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15413), 1, + anon_sym_RPAREN, + [318719] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15415), 1, anon_sym_RBRACE3, - [257237] = 3, + [318726] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1861), 1, - sym_expansion, - [257247] = 2, + ACTIONS(15417), 1, + anon_sym_RPAREN, + [318733] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1246), 2, - anon_sym_SLASH, + ACTIONS(14626), 1, + anon_sym_fi, + [318740] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15419), 1, + anon_sym_BQUOTE, + [318747] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15417), 1, + anon_sym_BQUOTE, + [318754] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15421), 1, + aux_sym_brace_expression_token1, + [318761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15423), 1, + aux_sym_heredoc_redirect_token1, + [318768] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15425), 1, + anon_sym_RPAREN, + [318775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15427), 1, + aux_sym_heredoc_redirect_token1, + [318782] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15429), 1, + anon_sym_RBRACE2, + [318789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15431), 1, + aux_sym_heredoc_redirect_token1, + [318796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15433), 1, + aux_sym_heredoc_redirect_token1, + [318803] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15435), 1, + anon_sym_RPAREN, + [318810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15437), 1, + aux_sym_heredoc_redirect_token1, + [318817] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15439), 1, + aux_sym_brace_expression_token1, + [318824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15441), 1, + aux_sym_heredoc_redirect_token1, + [318831] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [318838] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15443), 1, + anon_sym_BQUOTE, + [318845] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15445), 1, + anon_sym_BQUOTE, + [318852] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15443), 1, + anon_sym_RPAREN, + [318859] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15447), 1, + anon_sym_BQUOTE, + [318866] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15449), 1, + anon_sym_BQUOTE, + [318873] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15451), 1, + anon_sym_in, + [318880] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15453), 1, + aux_sym_brace_expression_token1, + [318887] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15455), 1, + anon_sym_in, + [318894] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15457), 1, + anon_sym_RBRACE2, + [318901] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15459), 1, + anon_sym_RPAREN_RPAREN, + [318908] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15461), 1, + aux_sym_brace_expression_token1, + [318915] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15447), 1, + anon_sym_RPAREN, + [318922] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15463), 1, + anon_sym_LT_LT_LT, + [318929] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15465), 1, + anon_sym_RPAREN, + [318936] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15467), 1, anon_sym_RBRACE3, - [257255] = 3, + [318943] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15469), 1, + aux_sym_brace_expression_token1, + [318950] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8060), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4559), 1, - sym_expansion, - [257265] = 3, + ACTIONS(15471), 1, + anon_sym_RPAREN, + [318957] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7672), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1246), 1, - sym_expansion, - [257275] = 2, + ACTIONS(15473), 1, + sym_word, + [318964] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 2, - anon_sym_SLASH, + ACTIONS(15475), 1, anon_sym_RBRACE3, - [257283] = 2, + [318971] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [257291] = 2, + ACTIONS(15477), 1, + anon_sym_RPAREN, + [318978] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12043), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257299] = 2, + ACTIONS(15479), 1, + anon_sym_BQUOTE, + [318985] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12302), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257307] = 2, + ACTIONS(15481), 1, + anon_sym_esac, + [318992] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12282), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257315] = 3, + ACTIONS(15483), 1, + anon_sym_BQUOTE, + [318999] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4407), 1, - sym_expansion, - [257325] = 2, + ACTIONS(15485), 1, + anon_sym_RBRACE3, + [319006] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12183), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257333] = 2, + ACTIONS(15487), 1, + aux_sym_brace_expression_token1, + [319013] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11897), 2, - anon_sym_PIPE, + ACTIONS(15489), 1, anon_sym_RPAREN, - [257341] = 3, + [319020] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(125), 1, - anon_sym_DOLLAR_LBRACE, - STATE(374), 1, - sym_expansion, - [257351] = 3, + ACTIONS(15491), 1, + anon_sym_BQUOTE, + [319027] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11696), 1, - anon_sym_COLON, - ACTIONS(11698), 1, + ACTIONS(15493), 1, anon_sym_RBRACE3, - [257361] = 2, + [319034] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12130), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257369] = 3, + ACTIONS(15495), 1, + anon_sym_BQUOTE, + [319041] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12340), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(12342), 1, - aux_sym__simple_variable_name_token1, - [257379] = 3, + ACTIONS(15483), 1, + anon_sym_RPAREN, + [319048] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12344), 1, - anon_sym_SLASH, - ACTIONS(12346), 1, - anon_sym_RBRACE3, - [257389] = 3, + ACTIONS(15489), 1, + anon_sym_BQUOTE, + [319055] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - STATE(411), 1, - sym_expansion, - [257399] = 2, + ACTIONS(15497), 1, + anon_sym_RBRACE3, + [319062] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12148), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257407] = 2, + ACTIONS(15499), 1, + anon_sym_RPAREN, + [319069] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11989), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [257415] = 3, + ACTIONS(15501), 1, + aux_sym_brace_expression_token1, + [319076] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3727), 1, - sym_expansion, - [257425] = 3, + ACTIONS(15325), 1, + anon_sym_BQUOTE, + [319083] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11848), 1, - anon_sym_do, - STATE(4501), 1, - sym_do_group, - [257435] = 2, + ACTIONS(15503), 1, + anon_sym_RBRACE2, + [319090] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11989), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [257443] = 2, + ACTIONS(15505), 1, + anon_sym_RBRACK_RBRACK, + [319097] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11998), 2, - anon_sym_COMMA, + ACTIONS(15507), 1, anon_sym_RPAREN, - [257451] = 2, + [319104] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12142), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257459] = 2, + ACTIONS(15509), 1, + anon_sym_RPAREN, + [319111] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5644), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257467] = 3, + ACTIONS(15511), 1, + anon_sym_RBRACE2, + [319118] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2204), 1, - sym_expansion, - [257477] = 2, + ACTIONS(15513), 1, + anon_sym_RPAREN, + [319125] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11840), 2, - anon_sym_COMMA, + ACTIONS(15301), 1, anon_sym_RPAREN, - [257485] = 3, + [319132] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6056), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5192), 1, - sym_expansion, - [257495] = 2, + ACTIONS(15515), 1, + aux_sym_brace_expression_token1, + [319139] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5640), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257503] = 2, + ACTIONS(15517), 1, + anon_sym_RBRACK_RBRACK, + [319146] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5560), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [257511] = 2, + ACTIONS(15519), 1, + anon_sym_fi, + [319153] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12124), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257519] = 2, + ACTIONS(15521), 1, + anon_sym_RBRACE3, + [319160] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5515), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257527] = 3, + ACTIONS(15523), 1, + anon_sym_esac, + [319167] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7418), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1937), 1, - sym_expansion, - [257537] = 3, + ACTIONS(15525), 1, + anon_sym_RPAREN, + [319174] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_SLASH, - ACTIONS(12158), 1, + ACTIONS(15527), 1, anon_sym_RBRACE3, - [257547] = 3, + [319181] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7896), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2744), 1, - sym_expansion, - [257557] = 3, + ACTIONS(15529), 1, + aux_sym_brace_expression_token1, + [319188] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(4268), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4389), 1, - sym_expansion, - [257567] = 2, + ACTIONS(15531), 1, + anon_sym_RPAREN, + [319195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15533), 1, + aux_sym_heredoc_redirect_token1, + [319202] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257575] = 3, + ACTIONS(15535), 1, + anon_sym_BQUOTE, + [319209] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3559), 1, - sym_expansion, - [257585] = 3, + ACTIONS(15537), 1, + anon_sym_BQUOTE, + [319216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15539), 1, + aux_sym_heredoc_redirect_token1, + [319223] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6833), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1213), 1, - sym_expansion, - [257595] = 3, + ACTIONS(15525), 1, + anon_sym_BQUOTE, + [319230] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11848), 1, - anon_sym_do, - STATE(4482), 1, - sym_do_group, - [257605] = 2, + ACTIONS(15541), 1, + aux_sym_brace_expression_token1, + [319237] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12095), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257613] = 2, + ACTIONS(15531), 1, + anon_sym_BQUOTE, + [319244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + aux_sym_heredoc_redirect_token1, + [319251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15545), 1, + aux_sym_heredoc_redirect_token1, + [319258] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257621] = 3, + ACTIONS(15547), 1, + anon_sym_RPAREN, + [319265] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7001), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4340), 1, - sym_expansion, - [257631] = 3, + ACTIONS(15549), 1, + anon_sym_RPAREN, + [319272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15551), 1, + aux_sym_heredoc_redirect_token1, + [319279] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12348), 1, - anon_sym_SLASH, - ACTIONS(12350), 1, - anon_sym_RBRACE3, - [257641] = 2, + ACTIONS(15553), 1, + aux_sym_brace_expression_token1, + [319286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15555), 1, + aux_sym_heredoc_redirect_token1, + [319293] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12304), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257649] = 2, + ACTIONS(15557), 1, + anon_sym_esac, + [319300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12091), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257657] = 3, + ACTIONS(15559), 1, + anon_sym_BQUOTE, + [319307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15561), 1, + aux_sym_heredoc_redirect_token1, + [319314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15563), 1, + aux_sym_heredoc_redirect_token1, + [319321] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11759), 1, + ACTIONS(15565), 1, anon_sym_RBRACE3, - [257667] = 2, + [319328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5568), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [257675] = 3, + ACTIONS(15567), 1, + aux_sym_brace_expression_token1, + [319335] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8016), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3726), 1, - sym_expansion, - [257685] = 3, + ACTIONS(15569), 1, + anon_sym_in, + [319342] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5011), 1, - sym_expansion, - [257695] = 3, + ACTIONS(15571), 1, + anon_sym_RBRACE2, + [319349] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6689), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1256), 1, - sym_expansion, - [257705] = 3, + ACTIONS(15573), 1, + anon_sym_in, + [319356] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7486), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3764), 1, - sym_expansion, - [257715] = 2, + ACTIONS(15397), 1, + anon_sym_RPAREN, + [319363] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12075), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257723] = 3, + ACTIONS(15575), 1, + anon_sym_RPAREN_RPAREN, + [319370] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_DOLLAR_LBRACE, - STATE(743), 1, - sym_expansion, - [257733] = 3, + ACTIONS(15577), 1, + aux_sym_brace_expression_token1, + [319377] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11829), 1, - anon_sym_SLASH, - ACTIONS(11831), 1, - anon_sym_RBRACE3, - [257743] = 3, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(15579), 1, + aux_sym_brace_expression_token1, + [319384] = 2, ACTIONS(71), 1, sym_comment, - STATE(915), 1, - sym_expansion, - [257753] = 3, + ACTIONS(15581), 1, + anon_sym_LT_LT_LT, + [319391] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12352), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(12354), 1, - aux_sym__simple_variable_name_token1, - [257763] = 2, + ACTIONS(15583), 1, + anon_sym_RPAREN, + [319398] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 2, - anon_sym_SLASH, + ACTIONS(15585), 1, anon_sym_RBRACE3, - [257771] = 3, + [319405] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1411), 1, - sym_expansion, - [257781] = 3, + ACTIONS(15587), 1, + anon_sym_RBRACE3, + [319412] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11870), 1, - anon_sym_do, - STATE(3957), 1, - sym_do_group, - [257791] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319419] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12067), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [257799] = 3, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319426] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11922), 1, - anon_sym_do, - STATE(3998), 1, - sym_do_group, - [257809] = 3, + ACTIONS(15589), 1, + aux_sym_brace_expression_token1, + [319433] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7392), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1462), 1, - sym_expansion, - [257819] = 3, + ACTIONS(9218), 1, + anon_sym_RBRACK, + [319440] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7442), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2892), 1, - sym_expansion, - [257829] = 3, + ACTIONS(15591), 1, + anon_sym_RPAREN, + [319447] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6963), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2953), 1, - sym_expansion, - [257839] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319454] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12356), 1, - anon_sym_RPAREN, - [257846] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319461] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [257853] = 2, + [319468] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12358), 1, - anon_sym_BQUOTE, - [257860] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319475] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15593), 1, + aux_sym_brace_expression_token1, + [319482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7638), 1, + ACTIONS(9220), 1, anon_sym_RBRACK, - [257867] = 2, + [319489] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12360), 1, + ACTIONS(15595), 1, + sym_word, + [319496] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15597), 1, anon_sym_RBRACE2, - [257874] = 2, + [319503] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12362), 1, - aux_sym_brace_expression_token1, - [257881] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319510] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12364), 1, - aux_sym_brace_expression_token1, - [257888] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12366), 1, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [257895] = 2, + [319524] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12368), 1, + ACTIONS(15599), 1, aux_sym_brace_expression_token1, - [257902] = 2, + [319531] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12370), 1, - anon_sym_RBRACE2, - [257909] = 2, + ACTIONS(15601), 1, + anon_sym_BQUOTE, + [319538] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12372), 1, - anon_sym_BQUOTE, - [257916] = 2, + ACTIONS(14654), 1, + anon_sym_RBRACE3, + [319545] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12374), 1, - anon_sym_RPAREN, - [257923] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319552] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12376), 1, - aux_sym_brace_expression_token1, - [257930] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319559] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12378), 1, - aux_sym_brace_expression_token1, - [257937] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319566] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12380), 1, + ACTIONS(14640), 1, + anon_sym_fi, + [319573] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15603), 1, aux_sym_brace_expression_token1, - [257944] = 2, + [319580] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12382), 1, - anon_sym_RBRACE3, - [257951] = 2, + ACTIONS(15377), 1, + anon_sym_RPAREN, + [319587] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12384), 1, + ACTIONS(15605), 1, anon_sym_RBRACE3, - [257958] = 2, + [319594] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12386), 1, - anon_sym_RPAREN, - [257965] = 2, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + [319601] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12388), 1, - anon_sym_BQUOTE, - [257972] = 2, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + [319608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12390), 1, + ACTIONS(14751), 1, anon_sym_RBRACE3, - [257979] = 2, + [319615] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12392), 1, - anon_sym_BQUOTE, - [257986] = 2, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + [319622] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12388), 1, - anon_sym_RPAREN, - [257993] = 2, + ACTIONS(15607), 1, + aux_sym_brace_expression_token1, + [319629] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7640), 1, + ACTIONS(9080), 1, anon_sym_RBRACK, - [258000] = 2, + [319636] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12394), 1, - aux_sym_brace_expression_token1, - [258007] = 2, + ACTIONS(15609), 1, + anon_sym_esac, + [319643] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12396), 1, - aux_sym_brace_expression_token1, - [258014] = 2, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + [319650] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12398), 1, - anon_sym_RBRACE2, - [258021] = 2, + ACTIONS(14751), 1, + anon_sym_RBRACE3, + [319657] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12400), 1, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [258028] = 2, + [319664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12402), 1, + ACTIONS(14738), 1, anon_sym_RBRACE3, - [258035] = 2, + [319671] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12404), 1, - anon_sym_RPAREN, - [258042] = 2, + ACTIONS(15611), 1, + aux_sym_brace_expression_token1, + [319678] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12406), 1, - anon_sym_RPAREN, - [258049] = 2, + ACTIONS(15613), 1, + anon_sym_esac, + [319685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15615), 1, + aux_sym_heredoc_redirect_token1, + [319692] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12408), 1, - anon_sym_RPAREN, - [258056] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319699] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12410), 1, - anon_sym_BQUOTE, - [258063] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319706] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12412), 1, - aux_sym_brace_expression_token1, - [258070] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319713] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12408), 1, - anon_sym_BQUOTE, - [258077] = 2, + ACTIONS(14738), 1, + anon_sym_RBRACE3, + [319720] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12414), 1, - anon_sym_RPAREN, - [258084] = 2, + ACTIONS(15617), 1, + aux_sym_brace_expression_token1, + [319727] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 1, - anon_sym_RPAREN, - [258091] = 2, + ACTIONS(14616), 1, + anon_sym_fi, + [319734] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12418), 1, - anon_sym_BQUOTE, - [258098] = 2, + ACTIONS(15619), 1, + anon_sym_esac, + [319741] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12374), 1, - anon_sym_BQUOTE, - [258105] = 2, + ACTIONS(14074), 1, + anon_sym_RBRACE3, + [319748] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12420), 1, - anon_sym_RPAREN, - [258112] = 2, + ACTIONS(15621), 1, + anon_sym_esac, + [319755] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7650), 1, - anon_sym_RBRACK, - [258119] = 2, + ACTIONS(14857), 1, + anon_sym_RBRACE3, + [319762] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7560), 1, - anon_sym_RBRACK, - [258126] = 2, + ACTIONS(15623), 1, + sym_heredoc_end, + [319769] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12422), 1, + ACTIONS(15625), 1, aux_sym_brace_expression_token1, - [258133] = 2, + [319776] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12424), 1, - anon_sym_RBRACE2, - [258140] = 2, + ACTIONS(15627), 1, + sym_heredoc_end, + [319783] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 1, - anon_sym_RBRACE2, - [258147] = 2, + ACTIONS(15629), 1, + anon_sym_fi, + [319790] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12428), 1, - anon_sym_BQUOTE, - [258154] = 2, + ACTIONS(15631), 1, + anon_sym_esac, + [319797] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12430), 1, - aux_sym_brace_expression_token1, - [258161] = 2, + ACTIONS(15633), 1, + anon_sym_RBRACE3, + [319804] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12358), 1, - anon_sym_RPAREN, - [258168] = 2, + ACTIONS(15635), 1, + anon_sym_RBRACE2, + [319811] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12432), 1, - anon_sym_BQUOTE, - [258175] = 2, + ACTIONS(15637), 1, + anon_sym_esac, + [319818] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12428), 1, - anon_sym_RPAREN, - [258182] = 2, + ACTIONS(15639), 1, + aux_sym_brace_expression_token1, + [319825] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 1, - anon_sym_RBRACE3, - [258189] = 2, + ACTIONS(9082), 1, + anon_sym_RBRACK, + [319832] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12436), 1, - aux_sym_brace_expression_token1, - [258196] = 2, + ACTIONS(15641), 1, + anon_sym_RBRACE2, + [319839] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12438), 1, - anon_sym_RBRACE3, - [258203] = 2, + ACTIONS(15643), 1, + anon_sym_esac, + [319846] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12440), 1, - anon_sym_RBRACE3, - [258210] = 2, + ACTIONS(15645), 1, + anon_sym_esac, + [319853] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12442), 1, - anon_sym_RPAREN, - [258217] = 2, + ACTIONS(14474), 1, + anon_sym_RBRACE3, + [319860] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12444), 1, + ACTIONS(14482), 1, anon_sym_RBRACE3, - [258224] = 2, + [319867] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12446), 1, - anon_sym_RPAREN, - [258231] = 2, + ACTIONS(15647), 1, + aux_sym_brace_expression_token1, + [319874] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12448), 1, + ACTIONS(14482), 1, anon_sym_RBRACE3, - [258238] = 2, + [319881] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12450), 1, + ACTIONS(14482), 1, anon_sym_RBRACE3, - [258245] = 2, + [319888] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12452), 1, - anon_sym_BQUOTE, - [258252] = 2, - ACTIONS(71), 1, + ACTIONS(14482), 1, + anon_sym_RBRACE3, + [319895] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12454), 1, - aux_sym_brace_expression_token1, - [258259] = 2, + ACTIONS(15649), 1, + aux_sym_heredoc_redirect_token1, + [319902] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12456), 1, + ACTIONS(15651), 1, anon_sym_RBRACE3, - [258266] = 2, - ACTIONS(71), 1, + [319909] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12458), 1, - anon_sym_esac, - [258273] = 2, + ACTIONS(15653), 1, + aux_sym_heredoc_redirect_token1, + [319916] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12460), 1, - anon_sym_LT_LT_LT, - [258280] = 2, + ACTIONS(15655), 1, + aux_sym_brace_expression_token1, + [319923] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12462), 1, - anon_sym_esac, - [258287] = 2, + ACTIONS(15657), 1, + anon_sym_RPAREN, + [319930] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12442), 1, + ACTIONS(15659), 1, anon_sym_BQUOTE, - [258294] = 2, + [319937] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12464), 1, - anon_sym_RPAREN, - [258301] = 2, - ACTIONS(3), 1, + ACTIONS(15661), 1, + anon_sym_BQUOTE, + [319944] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12466), 1, - aux_sym_heredoc_redirect_token1, - [258308] = 2, + ACTIONS(15663), 1, + anon_sym_esac, + [319951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12468), 1, + ACTIONS(15665), 1, aux_sym_heredoc_redirect_token1, - [258315] = 2, + [319958] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12470), 1, - aux_sym_brace_expression_token1, - [258322] = 2, + ACTIONS(15667), 1, + anon_sym_RBRACK_RBRACK, + [319965] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12472), 1, - anon_sym_BQUOTE, - [258329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12474), 1, - aux_sym_heredoc_redirect_token1, - [258336] = 2, + ACTIONS(15669), 1, + aux_sym_brace_expression_token1, + [319972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12476), 1, + ACTIONS(15671), 1, aux_sym_heredoc_redirect_token1, - [258343] = 2, + [319979] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12446), 1, + ACTIONS(15673), 1, anon_sym_BQUOTE, - [258350] = 2, + [319986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12478), 1, + ACTIONS(15675), 1, aux_sym_heredoc_redirect_token1, - [258357] = 2, + [319993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12480), 1, + ACTIONS(15677), 1, aux_sym_heredoc_redirect_token1, - [258364] = 2, + [320000] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12482), 1, - anon_sym_RPAREN, - [258371] = 2, + ACTIONS(15679), 1, + anon_sym_BQUOTE, + [320007] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12484), 1, - aux_sym_brace_expression_token1, - [258378] = 2, + ACTIONS(15681), 1, + anon_sym_esac, + [320014] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12486), 1, + ACTIONS(15683), 1, aux_sym_brace_expression_token1, - [258385] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12488), 1, - anon_sym_RBRACE2, - [258392] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12490), 1, - anon_sym_RBRACE3, - [258399] = 2, + [320021] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12492), 1, + ACTIONS(15685), 1, anon_sym_RBRACE3, - [258406] = 2, + [320028] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12494), 1, - anon_sym_RBRACE2, - [258413] = 2, + ACTIONS(15661), 1, + anon_sym_RPAREN, + [320035] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12496), 1, - anon_sym_RBRACE2, - [258420] = 2, + ACTIONS(15687), 1, + anon_sym_RPAREN, + [320042] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12498), 1, - sym_word, - [258427] = 2, + ACTIONS(15689), 1, + anon_sym_esac, + [320049] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12500), 1, - anon_sym_RPAREN, - [258434] = 2, + ACTIONS(15691), 1, + anon_sym_BQUOTE, + [320056] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12502), 1, + ACTIONS(15693), 1, anon_sym_RBRACE3, - [258441] = 2, + [320063] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12504), 1, + ACTIONS(15695), 1, aux_sym_brace_expression_token1, - [258448] = 2, + [320070] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12506), 1, + ACTIONS(15697), 1, anon_sym_RPAREN, - [258455] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12508), 1, - sym_heredoc_end, - [258462] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12510), 1, - anon_sym_BQUOTE, - [258469] = 2, + [320077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12512), 1, - sym_heredoc_end, - [258476] = 2, + ACTIONS(15699), 1, + anon_sym_RBRACE2, + [320084] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12506), 1, - anon_sym_BQUOTE, - [258483] = 2, + ACTIONS(15701), 1, + anon_sym_in, + [320091] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12514), 1, - anon_sym_RPAREN, - [258490] = 2, + ACTIONS(15703), 1, + anon_sym_esac, + [320098] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12516), 1, - anon_sym_RBRACE2, - [258497] = 2, + ACTIONS(15705), 1, + anon_sym_in, + [320105] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12518), 1, - anon_sym_RBRACE3, - [258504] = 2, + ACTIONS(15687), 1, + anon_sym_BQUOTE, + [320112] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12520), 1, + ACTIONS(15707), 1, aux_sym_brace_expression_token1, - [258511] = 2, + [320119] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12522), 1, + ACTIONS(15709), 1, anon_sym_RPAREN, - [258518] = 2, + [320126] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym_RBRACK, - [258525] = 2, + ACTIONS(15711), 1, + anon_sym_RPAREN_RPAREN, + [320133] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12356), 1, - anon_sym_BQUOTE, - [258532] = 2, + ACTIONS(15713), 1, + aux_sym_brace_expression_token1, + [320140] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_RBRACK, - [258539] = 2, + ACTIONS(15715), 1, + anon_sym_LT_LT_LT, + [320147] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12524), 1, + ACTIONS(15717), 1, anon_sym_RPAREN, - [258546] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12526), 1, - anon_sym_RBRACE2, - [258553] = 2, + [320154] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12522), 1, - anon_sym_BQUOTE, - [258560] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12528), 1, - anon_sym_RPAREN, - [258567] = 2, + ACTIONS(15719), 1, + anon_sym_RBRACE3, + [320161] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12530), 1, + ACTIONS(15721), 1, aux_sym_brace_expression_token1, - [258574] = 2, + [320168] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12532), 1, - anon_sym_RBRACE2, - [258581] = 2, + ACTIONS(15723), 1, + anon_sym_RPAREN, + [320175] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12534), 1, - anon_sym_RBRACE3, - [258588] = 2, + ACTIONS(15725), 1, + sym_word, + [320182] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12536), 1, - anon_sym_RPAREN, - [258595] = 2, + ACTIONS(14644), 1, + anon_sym_fi, + [320189] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12538), 1, + ACTIONS(15727), 1, anon_sym_BQUOTE, - [258602] = 2, + [320196] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12536), 1, - anon_sym_BQUOTE, - [258609] = 2, + ACTIONS(15729), 1, + anon_sym_RBRACE2, + [320203] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12540), 1, + ACTIONS(15731), 1, anon_sym_BQUOTE, - [258616] = 2, + [320210] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12542), 1, + ACTIONS(15733), 1, aux_sym_brace_expression_token1, - [258623] = 2, + [320217] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12544), 1, + ACTIONS(15735), 1, anon_sym_RBRACE2, - [258630] = 2, + [320224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12546), 1, - anon_sym_RPAREN, - [258637] = 2, + ACTIONS(15737), 1, + anon_sym_BQUOTE, + [320231] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12548), 1, + ACTIONS(15739), 1, + anon_sym_RBRACE2, + [320238] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15741), 1, anon_sym_BQUOTE, - [258644] = 2, + [320245] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12550), 1, + ACTIONS(15731), 1, anon_sym_RPAREN, - [258651] = 2, + [320252] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12552), 1, + ACTIONS(15743), 1, anon_sym_BQUOTE, - [258658] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12554), 1, - anon_sym_RBRACE2, - [258665] = 2, + [320259] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12556), 1, + ACTIONS(15745), 1, aux_sym_brace_expression_token1, - [258672] = 2, + [320266] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12558), 1, - anon_sym_RBRACE2, - [258679] = 2, + ACTIONS(15727), 1, + anon_sym_RPAREN, + [320273] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12560), 1, - anon_sym_BQUOTE, - [258686] = 2, + ACTIONS(15747), 1, + anon_sym_RBRACE3, + [320280] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12562), 1, - anon_sym_LT_LT_LT, - [258693] = 2, + ACTIONS(15749), 1, + anon_sym_BQUOTE, + [320287] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12548), 1, + ACTIONS(15743), 1, anon_sym_RPAREN, - [258700] = 2, + [320294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12564), 1, + ACTIONS(15751), 1, anon_sym_BQUOTE, - [258707] = 2, + [320301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12566), 1, - anon_sym_RBRACE3, - [258714] = 2, + ACTIONS(15753), 1, + anon_sym_BQUOTE, + [320308] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12568), 1, + ACTIONS(15755), 1, aux_sym_brace_expression_token1, - [258721] = 2, + [320315] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12570), 1, - anon_sym_RBRACE3, - [258728] = 2, + ACTIONS(15751), 1, + anon_sym_RPAREN, + [320322] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12572), 1, - anon_sym_RPAREN, - [258735] = 2, + ACTIONS(15757), 1, + anon_sym_RBRACE3, + [320329] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12574), 1, - anon_sym_BQUOTE, - [258742] = 2, + ACTIONS(15759), 1, + anon_sym_RBRACE2, + [320336] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12576), 1, + ACTIONS(15761), 1, anon_sym_BQUOTE, - [258749] = 2, + [320343] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12578), 1, + ACTIONS(15763), 1, anon_sym_RPAREN, - [258756] = 2, + [320350] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12580), 1, + ACTIONS(15765), 1, anon_sym_BQUOTE, - [258763] = 2, + [320357] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12582), 1, + ACTIONS(15767), 1, aux_sym_brace_expression_token1, - [258770] = 2, + [320364] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12578), 1, + ACTIONS(15769), 1, anon_sym_BQUOTE, - [258777] = 2, + [320371] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12524), 1, + ACTIONS(15771), 1, anon_sym_BQUOTE, - [258784] = 2, + [320378] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12574), 1, + ACTIONS(15769), 1, anon_sym_RPAREN, - [258791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12584), 1, - aux_sym_heredoc_redirect_token1, - [258798] = 2, + [320385] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12586), 1, + ACTIONS(15773), 1, anon_sym_RPAREN, - [258805] = 2, + [320392] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12588), 1, - anon_sym_RBRACE3, - [258812] = 2, + ACTIONS(15775), 1, + anon_sym_BQUOTE, + [320399] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(15777), 1, + anon_sym_BQUOTE, + [320406] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15779), 1, aux_sym_brace_expression_token1, - [258819] = 2, + [320413] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12592), 1, - anon_sym_RBRACE2, - [258826] = 2, + ACTIONS(14512), 1, + anon_sym_RBRACE3, + [320420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12594), 1, - anon_sym_LT_LT_LT, - [258833] = 2, + ACTIONS(15775), 1, + anon_sym_RPAREN, + [320427] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12596), 1, + ACTIONS(15781), 1, anon_sym_RBRACE3, - [258840] = 2, - ACTIONS(3), 1, + [320434] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12598), 1, - aux_sym_heredoc_redirect_token1, - [258847] = 2, + ACTIONS(15783), 1, + anon_sym_RBRACE3, + [320441] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12600), 1, - anon_sym_RPAREN, - [258854] = 2, + ACTIONS(15785), 1, + anon_sym_RBRACE2, + [320448] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11789), 1, - anon_sym_RBRACE3, - [258861] = 2, + ACTIONS(15787), 1, + anon_sym_BQUOTE, + [320455] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12602), 1, + ACTIONS(15789), 1, aux_sym_brace_expression_token1, - [258868] = 2, + [320462] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12604), 1, - anon_sym_RBRACE3, - [258875] = 2, + ACTIONS(15791), 1, + anon_sym_BQUOTE, + [320469] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12606), 1, - anon_sym_RPAREN, - [258882] = 2, + ACTIONS(15793), 1, + anon_sym_BQUOTE, + [320476] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12608), 1, - anon_sym_BQUOTE, - [258889] = 2, + ACTIONS(15787), 1, + anon_sym_RPAREN, + [320483] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11789), 1, + ACTIONS(15795), 1, anon_sym_RBRACE3, - [258896] = 2, + [320490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11789), 1, + ACTIONS(15797), 1, anon_sym_RBRACE3, - [258903] = 2, + [320497] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12610), 1, - anon_sym_RBRACE2, - [258910] = 2, + ACTIONS(14646), 1, + anon_sym_fi, + [320504] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(15799), 1, aux_sym_brace_expression_token1, - [258917] = 2, + [320511] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11789), 1, - anon_sym_RBRACE3, - [258924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12614), 1, - aux_sym_heredoc_redirect_token1, - [258931] = 2, + ACTIONS(15801), 1, + anon_sym_RBRACE2, + [320518] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12616), 1, + ACTIONS(15803), 1, anon_sym_RPAREN, - [258938] = 2, + [320525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12600), 1, + ACTIONS(15805), 1, anon_sym_BQUOTE, - [258945] = 2, + [320532] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12618), 1, + ACTIONS(15807), 1, + anon_sym_BQUOTE, + [320539] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15809), 1, anon_sym_RPAREN, - [258952] = 2, + [320546] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12620), 1, - anon_sym_BQUOTE, - [258959] = 2, + ACTIONS(15811), 1, + anon_sym_RBRACK_RBRACK, + [320553] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12622), 1, + ACTIONS(15813), 1, aux_sym_brace_expression_token1, - [258966] = 2, + [320560] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11777), 1, - anon_sym_RBRACE3, - [258973] = 2, + ACTIONS(15815), 1, + anon_sym_BQUOTE, + [320567] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12624), 1, + ACTIONS(15817), 1, anon_sym_BQUOTE, - [258980] = 2, + [320574] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12626), 1, - anon_sym_RBRACE3, - [258987] = 2, + ACTIONS(15805), 1, + anon_sym_RPAREN, + [320581] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12628), 1, + ACTIONS(15819), 1, anon_sym_RBRACE3, - [258994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12630), 1, - aux_sym_heredoc_redirect_token1, - [259001] = 2, + [320588] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12620), 1, + ACTIONS(15815), 1, anon_sym_RPAREN, - [259008] = 2, + [320595] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15821), 1, + anon_sym_RBRACE3, + [320602] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12632), 1, + ACTIONS(15823), 1, aux_sym_brace_expression_token1, - [259015] = 2, + [320609] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(15825), 1, anon_sym_BQUOTE, - [259022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12636), 1, - aux_sym_heredoc_redirect_token1, - [259029] = 2, + [320616] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12638), 1, + ACTIONS(15827), 1, anon_sym_RBRACE3, - [259036] = 2, + [320623] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12640), 1, - anon_sym_RPAREN, - [259043] = 2, + ACTIONS(15829), 1, + anon_sym_BQUOTE, + [320630] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym_BQUOTE, - [259050] = 2, + ACTIONS(15825), 1, + anon_sym_RPAREN, + [320637] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12644), 1, + ACTIONS(15831), 1, anon_sym_esac, - [259057] = 2, + [320644] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15833), 1, + anon_sym_RBRACE3, + [320651] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(15835), 1, aux_sym_brace_expression_token1, - [259064] = 2, + [320658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12648), 1, + ACTIONS(15837), 1, anon_sym_RBRACE3, - [259071] = 2, + [320665] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12640), 1, + ACTIONS(15839), 1, anon_sym_BQUOTE, - [259078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - aux_sym_heredoc_redirect_token1, - [259085] = 2, - ACTIONS(3), 1, + [320672] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12652), 1, - aux_sym_heredoc_redirect_token1, - [259092] = 2, + ACTIONS(15841), 1, + anon_sym_BQUOTE, + [320679] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12654), 1, + ACTIONS(15839), 1, anon_sym_RPAREN, - [259099] = 2, + [320686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12656), 1, - anon_sym_RBRACE2, - [259106] = 2, + ACTIONS(15843), 1, + anon_sym_RBRACE3, + [320693] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(15845), 1, + sym_heredoc_end, + [320700] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15847), 1, aux_sym_brace_expression_token1, - [259113] = 2, + [320707] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12660), 1, - anon_sym_RBRACE2, - [259120] = 2, + ACTIONS(15761), 1, + anon_sym_RPAREN, + [320714] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12662), 1, + ACTIONS(15849), 1, anon_sym_RBRACE2, - [259127] = 2, + [320721] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12664), 1, - anon_sym_in, - [259134] = 2, + ACTIONS(15851), 1, + anon_sym_RBRACE3, + [320728] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12666), 1, - anon_sym_in, - [259141] = 2, + ACTIONS(15659), 1, + anon_sym_RPAREN, + [320735] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, - anon_sym_RPAREN_RPAREN, - [259148] = 2, + ACTIONS(15853), 1, + anon_sym_RPAREN, + [320742] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12670), 1, - anon_sym_RPAREN, - [259155] = 2, + ACTIONS(15855), 1, + anon_sym_RBRACE2, + [320749] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12672), 1, + ACTIONS(15857), 1, aux_sym_brace_expression_token1, - [259162] = 2, + [320756] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_esac, - [259169] = 2, + ACTIONS(15859), 1, + anon_sym_BQUOTE, + [320763] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12676), 1, - aux_sym_brace_expression_token1, - [259176] = 2, + ACTIONS(15861), 1, + anon_sym_BQUOTE, + [320770] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12678), 1, - anon_sym_RBRACE3, - [259183] = 2, + ACTIONS(15863), 1, + anon_sym_BQUOTE, + [320777] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12680), 1, + ACTIONS(15865), 1, anon_sym_RPAREN, - [259190] = 2, + [320784] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12682), 1, + ACTIONS(15867), 1, anon_sym_BQUOTE, - [259197] = 2, + [320791] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12684), 1, - anon_sym_RBRACE3, - [259204] = 2, + ACTIONS(15869), 1, + anon_sym_BQUOTE, + [320798] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12686), 1, + ACTIONS(15871), 1, aux_sym_brace_expression_token1, - [259211] = 2, + [320805] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(15853), 1, anon_sym_BQUOTE, - [259218] = 2, + [320812] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12680), 1, - anon_sym_BQUOTE, - [259225] = 2, + ACTIONS(15873), 1, + anon_sym_RBRACK_RBRACK, + [320819] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12690), 1, + ACTIONS(15859), 1, anon_sym_RPAREN, - [259232] = 2, + [320826] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12692), 1, - anon_sym_RBRACE3, - [259239] = 2, + ACTIONS(15867), 1, + anon_sym_RPAREN, + [320833] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12694), 1, - anon_sym_fi, - [259246] = 2, + ACTIONS(15875), 1, + anon_sym_RBRACE3, + [320840] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_RPAREN, - [259253] = 2, + ACTIONS(15877), 1, + anon_sym_RBRACE3, + [320847] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12698), 1, + ACTIONS(15879), 1, aux_sym_brace_expression_token1, - [259260] = 2, + [320854] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12700), 1, - anon_sym_BQUOTE, - [259267] = 2, + ACTIONS(15881), 1, + anon_sym_RPAREN, + [320861] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(15883), 1, anon_sym_BQUOTE, - [259274] = 2, + [320868] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12702), 1, - anon_sym_esac, - [259281] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12704), 1, + ACTIONS(15885), 1, anon_sym_RPAREN, - [259288] = 2, + [320875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12706), 1, - anon_sym_esac, - [259295] = 2, + ACTIONS(15887), 1, + anon_sym_BQUOTE, + [320882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12708), 1, + ACTIONS(15883), 1, anon_sym_RPAREN, - [259302] = 2, + [320889] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15889), 1, + anon_sym_RBRACE3, + [320896] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12710), 1, + ACTIONS(15891), 1, aux_sym_brace_expression_token1, - [259309] = 2, + [320903] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12712), 1, + ACTIONS(15893), 1, anon_sym_RBRACE2, - [259316] = 2, + [320910] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12714), 1, - anon_sym_RBRACE2, - [259323] = 2, + ACTIONS(15895), 1, + anon_sym_BQUOTE, + [320917] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12716), 1, - sym_word, - [259330] = 2, + ACTIONS(15897), 1, + anon_sym_BQUOTE, + [320924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12718), 1, - anon_sym_RBRACE2, - [259337] = 2, + ACTIONS(15895), 1, + anon_sym_RPAREN, + [320931] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12720), 1, - anon_sym_BQUOTE, - [259344] = 2, + ACTIONS(15899), 1, + anon_sym_RBRACE2, + [320938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12682), 1, - anon_sym_RPAREN, - [259351] = 2, + ACTIONS(9084), 1, + anon_sym_RBRACK, + [320945] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12722), 1, + ACTIONS(15901), 1, aux_sym_brace_expression_token1, - [259358] = 2, + [320952] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(15903), 1, anon_sym_RBRACE3, - [259365] = 2, - ACTIONS(3), 1, + [320959] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12726), 1, - aux_sym_heredoc_redirect_token1, - [259372] = 2, + ACTIONS(15905), 1, + anon_sym_BQUOTE, + [320966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12728), 1, - anon_sym_RPAREN, - [259379] = 2, + ACTIONS(9146), 1, + anon_sym_RBRACK, + [320973] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12730), 1, - anon_sym_RBRACE3, - [259386] = 2, + ACTIONS(15907), 1, + anon_sym_BQUOTE, + [320980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12732), 1, + ACTIONS(15909), 1, anon_sym_RPAREN, - [259393] = 2, + [320987] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12734), 1, - anon_sym_BQUOTE, - [259400] = 2, + ACTIONS(15911), 1, + anon_sym_RBRACE3, + [320994] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12736), 1, + ACTIONS(15913), 1, aux_sym_brace_expression_token1, - [259407] = 2, + [321001] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12738), 1, - sym_heredoc_end, - [259414] = 2, + ACTIONS(15905), 1, + anon_sym_RPAREN, + [321008] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12732), 1, - anon_sym_BQUOTE, - [259421] = 2, + ACTIONS(15915), 1, + anon_sym_RBRACE3, + [321015] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12740), 1, - anon_sym_RPAREN, - [259428] = 2, + ACTIONS(15917), 1, + anon_sym_RBRACK_RBRACK, + [321022] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12742), 1, - sym_heredoc_end, - [259435] = 2, + ACTIONS(15919), 1, + anon_sym_BQUOTE, + [321029] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12744), 1, + ACTIONS(15921), 1, anon_sym_BQUOTE, - [259442] = 2, + [321036] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12746), 1, - anon_sym_esac, - [259449] = 2, + ACTIONS(15923), 1, + anon_sym_RBRACE2, + [321043] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12748), 1, + ACTIONS(15925), 1, aux_sym_brace_expression_token1, - [259456] = 2, + [321050] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12750), 1, - anon_sym_esac, - [259463] = 2, + ACTIONS(9028), 1, + anon_sym_RBRACK, + [321057] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12752), 1, - anon_sym_fi, - [259470] = 2, + ACTIONS(15927), 1, + anon_sym_RPAREN, + [321064] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12754), 1, - anon_sym_RBRACE2, - [259477] = 2, + ACTIONS(15919), 1, + anon_sym_RPAREN, + [321071] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12756), 1, - anon_sym_RPAREN, - [259484] = 2, + ACTIONS(15929), 1, + anon_sym_RBRACE3, + [321078] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12758), 1, - anon_sym_BQUOTE, - [259491] = 2, - ACTIONS(3), 1, + ACTIONS(15931), 1, + anon_sym_RBRACE3, + [321085] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12760), 1, - aux_sym_heredoc_redirect_token1, - [259498] = 2, + ACTIONS(9026), 1, + anon_sym_RBRACK, + [321092] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12762), 1, + ACTIONS(15933), 1, aux_sym_brace_expression_token1, - [259505] = 2, - ACTIONS(3), 1, + [321099] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12764), 1, - aux_sym_heredoc_redirect_token1, - [259512] = 2, + ACTIONS(15935), 1, + anon_sym_RPAREN, + [321106] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12756), 1, + ACTIONS(15937), 1, anon_sym_BQUOTE, - [259519] = 2, + [321113] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12766), 1, - anon_sym_RPAREN, - [259526] = 2, + ACTIONS(15939), 1, + anon_sym_BQUOTE, + [321120] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12768), 1, - anon_sym_RBRACE3, - [259533] = 2, + ACTIONS(15941), 1, + anon_sym_BQUOTE, + [321127] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12770), 1, - sym_heredoc_end, - [259540] = 2, + ACTIONS(15937), 1, + anon_sym_RPAREN, + [321134] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12772), 1, - sym_heredoc_end, - [259547] = 2, + ACTIONS(15943), 1, + sym_heredoc_start, + [321141] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12774), 1, + ACTIONS(15945), 1, aux_sym_brace_expression_token1, - [259554] = 2, + [321148] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12776), 1, - anon_sym_RPAREN, - [259561] = 2, + ACTIONS(15947), 1, + anon_sym_RBRACE3, + [321155] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12778), 1, + ACTIONS(15949), 1, anon_sym_BQUOTE, - [259568] = 2, + [321162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12780), 1, + ACTIONS(15951), 1, anon_sym_BQUOTE, - [259575] = 2, + [321169] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12778), 1, + ACTIONS(15953), 1, anon_sym_RPAREN, - [259582] = 2, + [321176] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_RBRACE3, - [259589] = 2, + ACTIONS(15935), 1, + anon_sym_BQUOTE, + [321183] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12782), 1, + ACTIONS(15955), 1, anon_sym_BQUOTE, - [259596] = 2, + [321190] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12784), 1, + ACTIONS(15957), 1, aux_sym_brace_expression_token1, - [259603] = 2, + [321197] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12776), 1, + ACTIONS(15959), 1, + anon_sym_BQUOTE, + [321204] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15961), 1, + anon_sym_BQUOTE, + [321211] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15927), 1, anon_sym_BQUOTE, - [259610] = 2, + [321218] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12786), 1, + ACTIONS(15955), 1, anon_sym_RPAREN, - [259617] = 2, + [321225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12788), 1, + ACTIONS(14827), 1, anon_sym_RBRACE3, - [259624] = 2, + [321232] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12790), 1, - anon_sym_RBRACE2, - [259631] = 2, + ACTIONS(15963), 1, + anon_sym_RBRACE3, + [321239] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12792), 1, - anon_sym_RBRACE2, - [259638] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321246] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12794), 1, - anon_sym_RBRACE2, - [259645] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321253] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12796), 1, - aux_sym_brace_expression_token1, - [259652] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321260] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321267] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12798), 1, + ACTIONS(15965), 1, anon_sym_RPAREN, - [259659] = 2, + [321274] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12800), 1, - anon_sym_esac, - [259666] = 2, + ACTIONS(15967), 1, + anon_sym_LBRACK, + [321281] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12802), 1, - anon_sym_esac, - [259673] = 2, + ACTIONS(15969), 1, + anon_sym_RBRACE2, + [321288] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12804), 1, - anon_sym_esac, - [259680] = 2, + ACTIONS(15971), 1, + anon_sym_BQUOTE, + [321295] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12806), 1, + ACTIONS(15973), 1, anon_sym_BQUOTE, - [259687] = 2, + [321302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12798), 1, + ACTIONS(15975), 1, anon_sym_BQUOTE, - [259694] = 2, + [321309] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12808), 1, - aux_sym_brace_expression_token1, - [259701] = 2, + ACTIONS(15977), 1, + anon_sym_RPAREN, + [321316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12810), 1, + ACTIONS(15973), 1, anon_sym_RPAREN, - [259708] = 2, + [321323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12812), 1, + ACTIONS(14810), 1, anon_sym_RBRACE3, - [259715] = 2, + [321330] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12814), 1, - anon_sym_RBRACE2, - [259722] = 2, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + [321337] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12816), 1, - anon_sym_BQUOTE, - [259729] = 2, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + [321344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12708), 1, - anon_sym_BQUOTE, - [259736] = 2, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + [321351] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12818), 1, - anon_sym_esac, - [259743] = 2, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + [321358] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12820), 1, - aux_sym_brace_expression_token1, - [259750] = 2, + ACTIONS(14810), 1, + anon_sym_RBRACE3, + [321365] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12822), 1, - anon_sym_RPAREN, - [259757] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12824), 1, + ACTIONS(14827), 1, anon_sym_RBRACE3, - [259764] = 2, + [321379] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12826), 1, - anon_sym_RPAREN, - [259771] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321386] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12828), 1, + ACTIONS(14827), 1, anon_sym_RBRACE3, - [259778] = 2, + [321393] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11781), 1, - anon_sym_fi, - [259785] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321400] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11767), 1, - anon_sym_fi, - [259792] = 2, + ACTIONS(14827), 1, + anon_sym_RBRACE3, + [321407] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15979), 1, + anon_sym_RBRACE2, + [321414] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15981), 1, + anon_sym_RBRACE3, + [321421] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12830), 1, + ACTIONS(15961), 1, anon_sym_RPAREN, - [259799] = 2, + [321428] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12832), 1, - anon_sym_BQUOTE, - [259806] = 2, + ACTIONS(15983), 1, + anon_sym_RBRACE2, + [321435] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12830), 1, - anon_sym_BQUOTE, - [259813] = 2, + ACTIONS(15985), 1, + anon_sym_RBRACE2, + [321442] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12834), 1, + ACTIONS(15987), 1, anon_sym_RPAREN, - [259820] = 2, + [321449] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12836), 1, + ACTIONS(15989), 1, anon_sym_BQUOTE, - [259827] = 2, + [321456] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12838), 1, - anon_sym_RBRACE2, - [259834] = 2, + ACTIONS(14512), 1, + anon_sym_RBRACE3, + [321463] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12826), 1, + ACTIONS(15991), 1, anon_sym_BQUOTE, - [259841] = 2, + [321470] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12840), 1, - anon_sym_RBRACE2, - [259848] = 2, + ACTIONS(15993), 1, + anon_sym_BQUOTE, + [321477] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12842), 1, + ACTIONS(15991), 1, + anon_sym_RPAREN, + [321484] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15995), 1, anon_sym_RBRACE3, - [259855] = 2, + [321491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12844), 1, + ACTIONS(15765), 1, anon_sym_RPAREN, - [259862] = 2, + [321498] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12846), 1, - anon_sym_esac, - [259869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12848), 1, - aux_sym_heredoc_redirect_token1, - [259876] = 2, + ACTIONS(15997), 1, + anon_sym_RBRACE3, + [321505] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12844), 1, - anon_sym_BQUOTE, - [259883] = 2, + ACTIONS(15999), 1, + anon_sym_in, + [321512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, - anon_sym_RPAREN, - [259890] = 2, + ACTIONS(16001), 1, + anon_sym_in, + [321519] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12852), 1, - anon_sym_RPAREN, - [259897] = 2, + ACTIONS(16003), 1, + anon_sym_RBRACE3, + [321526] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12854), 1, - anon_sym_RBRACE2, - [259904] = 2, + ACTIONS(16005), 1, + anon_sym_RBRACE3, + [321533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12856), 1, - anon_sym_BQUOTE, - [259911] = 2, + ACTIONS(16007), 1, + anon_sym_RPAREN, + [321540] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12858), 1, - anon_sym_BQUOTE, - [259918] = 2, + ACTIONS(16009), 1, + anon_sym_RBRACE2, + [321547] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12860), 1, - anon_sym_esac, - [259925] = 2, + ACTIONS(16011), 1, + anon_sym_RPAREN, + [321554] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12862), 1, - anon_sym_RBRACE3, - [259932] = 2, + ACTIONS(15269), 1, + aux_sym__simple_variable_name_token1, + [321561] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12864), 1, - anon_sym_RBRACE2, - [259939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12866), 1, - aux_sym_heredoc_redirect_token1, - [259946] = 2, - ACTIONS(3), 1, + ACTIONS(16013), 1, + anon_sym_BQUOTE, + [321568] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12868), 1, - aux_sym_heredoc_redirect_token1, - [259953] = 2, + ACTIONS(16015), 1, + anon_sym_BQUOTE, + [321575] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11795), 1, - anon_sym_fi, - [259960] = 2, + ACTIONS(16017), 1, + sym_word, + [321582] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12870), 1, - anon_sym_RBRACE3, - [259967] = 2, + ACTIONS(16019), 1, + anon_sym_DOT_DOT, + [321589] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12872), 1, + ACTIONS(16013), 1, anon_sym_RPAREN, - [259974] = 2, + [321596] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12874), 1, - anon_sym_LT_LT_LT, - [259981] = 2, + ACTIONS(16021), 1, + anon_sym_RBRACE3, + [321603] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12876), 1, - anon_sym_BQUOTE, - [259988] = 2, + ACTIONS(16023), 1, + anon_sym_RBRACE3, + [321610] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(16025), 1, anon_sym_RPAREN, - [259995] = 2, + [321617] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12880), 1, - sym_word, - [260002] = 2, + ACTIONS(16027), 1, + sym_heredoc_start, + [321624] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260009] = 2, + ACTIONS(16029), 1, + anon_sym_esac, + [321631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260016] = 2, + ACTIONS(16031), 1, + anon_sym_RBRACE2, + [321638] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260023] = 2, + ACTIONS(16033), 1, + anon_sym_BQUOTE, + [321645] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260030] = 2, + ACTIONS(16035), 1, + anon_sym_RBRACE2, + [321652] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260037] = 2, + ACTIONS(16037), 1, + anon_sym_RPAREN, + [321659] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260044] = 2, + ACTIONS(16039), 1, + anon_sym_BQUOTE, + [321666] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12872), 1, - anon_sym_BQUOTE, - [260051] = 2, + ACTIONS(16041), 1, + anon_sym_RBRACE2, + [321673] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260058] = 2, + ACTIONS(16043), 1, + anon_sym_BQUOTE, + [321680] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260065] = 2, + ACTIONS(16039), 1, + anon_sym_RPAREN, + [321687] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(16045), 1, anon_sym_RBRACE3, - [260072] = 2, + [321694] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(16047), 1, anon_sym_RBRACE3, - [260079] = 2, + [321701] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260086] = 2, + ACTIONS(16049), 1, + anon_sym_RPAREN, + [321708] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260093] = 2, + ACTIONS(16051), 1, + anon_sym_RBRACE2, + [321715] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12882), 1, + ACTIONS(16053), 1, anon_sym_RPAREN, - [260100] = 2, - ACTIONS(3), 1, + [321722] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12884), 1, - aux_sym_heredoc_redirect_token1, - [260107] = 2, + ACTIONS(16055), 1, + anon_sym_BQUOTE, + [321729] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12342), 1, - aux_sym__simple_variable_name_token1, - [260114] = 2, + ACTIONS(16057), 1, + anon_sym_BQUOTE, + [321736] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, - anon_sym_RBRACE3, - [260121] = 2, + ACTIONS(16059), 1, + anon_sym_esac, + [321743] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, - anon_sym_RBRACE3, - [260128] = 2, + ACTIONS(16061), 1, + sym_heredoc_start, + [321750] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12886), 1, - sym_word, - [260135] = 2, + ACTIONS(16063), 1, + anon_sym_RPAREN, + [321757] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, - anon_sym_RBRACE3, - [260142] = 2, + ACTIONS(16065), 1, + anon_sym_RPAREN, + [321764] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12888), 1, - anon_sym_DOT_DOT, - [260149] = 2, + ACTIONS(16055), 1, + anon_sym_RPAREN, + [321771] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(16067), 1, anon_sym_RBRACE3, - [260156] = 2, + [321778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, - anon_sym_RBRACE3, - [260163] = 2, + ACTIONS(16069), 1, + anon_sym_RBRACE2, + [321785] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(16071), 1, anon_sym_RBRACE3, - [260170] = 2, + [321792] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12890), 1, + ACTIONS(16073), 1, anon_sym_RPAREN, - [260177] = 2, + [321799] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12892), 1, - sym_heredoc_start, - [260184] = 2, + ACTIONS(16075), 1, + anon_sym_BQUOTE, + [321806] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16077), 1, + anon_sym_BQUOTE, + [321813] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(14512), 1, anon_sym_RBRACE3, - [260191] = 2, + [321820] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(16079), 1, anon_sym_RBRACE3, - [260198] = 2, + [321827] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12894), 1, - aux_sym_brace_expression_token1, - [260205] = 2, + ACTIONS(16081), 1, + anon_sym_RPAREN, + [321834] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260212] = 2, + ACTIONS(16083), 1, + anon_sym_BQUOTE, + [321841] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260219] = 2, + ACTIONS(16075), 1, + anon_sym_RPAREN, + [321848] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_RBRACE3, - [260226] = 2, + ACTIONS(16085), 1, + anon_sym_BQUOTE, + [321855] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11510), 1, + ACTIONS(16087), 1, anon_sym_RBRACE3, - [260233] = 2, + [321862] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16089), 1, + anon_sym_RBRACE2, + [321869] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12896), 1, + ACTIONS(16091), 1, anon_sym_RPAREN, - [260240] = 2, + [321876] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11973), 1, - anon_sym_RBRACE3, - [260247] = 2, + ACTIONS(16093), 1, + anon_sym_BQUOTE, + [321883] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12898), 1, + ACTIONS(16083), 1, anon_sym_RPAREN, - [260254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12900), 1, - aux_sym_heredoc_redirect_token1, - [260261] = 2, + [321890] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12902), 1, + ACTIONS(16095), 1, anon_sym_RBRACE3, - [260268] = 2, + [321897] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12904), 1, + ACTIONS(16097), 1, anon_sym_BQUOTE, - [260275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12906), 1, - aux_sym_heredoc_redirect_token1, - [260282] = 2, + [321904] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12908), 1, - anon_sym_BQUOTE, - [260289] = 2, + ACTIONS(16099), 1, + anon_sym_esac, + [321911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12910), 1, - anon_sym_RBRACE2, - [260296] = 2, + ACTIONS(16093), 1, + anon_sym_RPAREN, + [321918] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12912), 1, - anon_sym_RBRACE2, - [260303] = 2, + ACTIONS(16101), 1, + anon_sym_RBRACE3, + [321925] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12914), 1, - sym_heredoc_start, - [260310] = 2, + ACTIONS(16103), 1, + anon_sym_RBRACK_RBRACK, + [321932] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12916), 1, + ACTIONS(16105), 1, anon_sym_BQUOTE, - [260317] = 2, + [321939] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12898), 1, + ACTIONS(16107), 1, + anon_sym_fi, + [321946] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16007), 1, anon_sym_BQUOTE, - [260324] = 2, + [321953] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12918), 1, - anon_sym_RBRACE3, - [260331] = 2, + ACTIONS(16109), 1, + anon_sym_RBRACE2, + [321960] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12920), 1, - anon_sym_RBRACE3, - [260338] = 2, + ACTIONS(16073), 1, + anon_sym_BQUOTE, + [321967] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12922), 1, - anon_sym_RBRACE3, - [260345] = 2, + ACTIONS(16111), 1, + anon_sym_RBRACE2, + [321974] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12904), 1, + ACTIONS(16113), 1, anon_sym_RPAREN, - [260352] = 2, + [321981] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 1, - anon_sym_RBRACE3, - [260359] = 2, + ACTIONS(16115), 1, + anon_sym_RPAREN_RPAREN, + [321988] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7680), 1, - anon_sym_RBRACK, - [260366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12926), 1, - aux_sym_heredoc_redirect_token1, - [260373] = 2, + ACTIONS(16117), 1, + anon_sym_BQUOTE, + [321995] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - anon_sym_esac, - [260380] = 2, + ACTIONS(16119), 1, + anon_sym_BQUOTE, + [322002] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7658), 1, - anon_sym_RBRACK, - [260387] = 2, - ACTIONS(3), 1, + ACTIONS(16117), 1, + anon_sym_RPAREN, + [322009] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(12930), 1, - aux_sym_heredoc_redirect_token1, - [260394] = 2, + ACTIONS(16121), 1, + aux_sym_brace_expression_token1, + [322016] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, + ACTIONS(16123), 1, anon_sym_RBRACE3, - [260401] = 2, + [322023] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12934), 1, - anon_sym_esac, - [260408] = 2, + ACTIONS(16125), 1, + anon_sym_RBRACE3, + [322030] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 1, - anon_sym_RBRACE3, - [260415] = 2, + ACTIONS(16127), 1, + anon_sym_RPAREN, + [322037] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12856), 1, + ACTIONS(16129), 1, anon_sym_RPAREN, - [260422] = 2, + [322044] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_RBRACE3, - [260429] = 2, + ACTIONS(16131), 1, + anon_sym_BQUOTE, + [322051] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12940), 1, + ACTIONS(16133), 1, anon_sym_RPAREN, - [260436] = 2, + [322058] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11787), 1, - anon_sym_fi, - [260443] = 2, + ACTIONS(16135), 1, + anon_sym_RBRACE2, + [322065] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 1, + ACTIONS(16137), 1, anon_sym_RPAREN, - [260450] = 2, + [322072] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12944), 1, + ACTIONS(16139), 1, anon_sym_BQUOTE, - [260457] = 2, + [322079] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 1, + ACTIONS(16141), 1, anon_sym_BQUOTE, - [260464] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12946), 1, - anon_sym_RBRACE2, - [260471] = 2, + [322086] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12948), 1, + ACTIONS(16139), 1, anon_sym_RPAREN, - [260478] = 2, + [322093] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12950), 1, - anon_sym_in, - [260485] = 2, + ACTIONS(16143), 1, + anon_sym_BQUOTE, + [322100] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12952), 1, - anon_sym_in, - [260492] = 2, + ACTIONS(16145), 1, + anon_sym_RBRACE2, + [322107] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12954), 1, - anon_sym_RBRACE3, - [260499] = 2, + ACTIONS(16147), 1, + anon_sym_LT_LT_LT, + [322114] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_RPAREN_RPAREN, - [260506] = 2, + ACTIONS(16149), 1, + anon_sym_RBRACE3, + [322121] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12958), 1, + ACTIONS(16151), 1, anon_sym_RBRACE2, - [260513] = 2, + [322128] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12960), 1, - aux_sym_brace_expression_token1, - [260520] = 2, + ACTIONS(16133), 1, + anon_sym_BQUOTE, + [322135] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12962), 1, + ACTIONS(16153), 1, anon_sym_RBRACE3, - [260527] = 2, + [322142] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16155), 1, + sym_heredoc_start, + [322149] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12964), 1, + ACTIONS(16157), 1, anon_sym_RPAREN, - [260534] = 2, + [322156] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260541] = 2, + ACTIONS(16159), 1, + anon_sym_RBRACE2, + [322163] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16161), 1, + anon_sym_RPAREN, + [322170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12966), 1, + ACTIONS(16163), 1, + anon_sym_RPAREN, + [322177] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16165), 1, anon_sym_BQUOTE, - [260548] = 2, + [322184] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12964), 1, + ACTIONS(16167), 1, anon_sym_BQUOTE, - [260555] = 2, + [322191] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12968), 1, - anon_sym_RBRACE3, - [260562] = 2, + ACTIONS(16165), 1, + anon_sym_RPAREN, + [322198] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12970), 1, + ACTIONS(16169), 1, anon_sym_RPAREN, - [260569] = 2, + [322205] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12972), 1, + ACTIONS(16171), 1, anon_sym_BQUOTE, - [260576] = 2, + [322212] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(16173), 1, anon_sym_BQUOTE, - [260583] = 2, + [322219] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12976), 1, - anon_sym_BQUOTE, - [260590] = 2, + ACTIONS(16171), 1, + anon_sym_RPAREN, + [322226] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(16175), 1, anon_sym_RBRACE3, - [260597] = 2, + [322233] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12980), 1, - anon_sym_RPAREN, - [260604] = 2, + ACTIONS(9158), 1, + anon_sym_RBRACK, + [322240] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12982), 1, - anon_sym_RPAREN, - [260611] = 2, + ACTIONS(9164), 1, + anon_sym_RBRACK, + [322247] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12984), 1, - anon_sym_RBRACE2, - [260618] = 2, + ACTIONS(16177), 1, + anon_sym_RPAREN, + [322254] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_RBRACK, - [260625] = 2, + ACTIONS(16179), 1, + anon_sym_RBRACE2, + [322261] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7452), 1, - anon_sym_RBRACK, - [260632] = 2, + ACTIONS(16181), 1, + anon_sym_RPAREN, + [322268] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12986), 1, + ACTIONS(16183), 1, anon_sym_BQUOTE, - [260639] = 2, + [322275] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12982), 1, + ACTIONS(16185), 1, anon_sym_BQUOTE, - [260646] = 2, + [322282] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12988), 1, + ACTIONS(16187), 1, anon_sym_RPAREN, - [260653] = 2, + [322289] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12990), 1, + ACTIONS(16189), 1, anon_sym_BQUOTE, - [260660] = 2, + [322296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12992), 1, + ACTIONS(16191), 1, anon_sym_BQUOTE, - [260667] = 2, + [322303] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12990), 1, + ACTIONS(16183), 1, anon_sym_RPAREN, - [260674] = 2, + [322310] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16193), 1, + anon_sym_RBRACE3, + [322317] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12994), 1, + ACTIONS(16195), 1, anon_sym_RBRACE3, - [260681] = 2, + [322324] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12972), 1, + ACTIONS(16189), 1, anon_sym_RPAREN, - [260688] = 2, + [322331] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12996), 1, - anon_sym_RBRACE3, - [260695] = 2, + ACTIONS(16197), 1, + anon_sym_RBRACE2, + [322338] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12998), 1, - sym_heredoc_start, - [260702] = 2, + ACTIONS(16199), 1, + anon_sym_RBRACE3, + [322345] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12940), 1, - anon_sym_BQUOTE, - [260709] = 2, + ACTIONS(16201), 1, + anon_sym_RPAREN, + [322352] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13000), 1, + ACTIONS(16131), 1, anon_sym_RPAREN, - [260716] = 2, + [322359] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16203), 1, + anon_sym_RBRACE3, + [322366] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(16205), 1, + anon_sym_RBRACE2, + [322373] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16207), 1, anon_sym_RPAREN, - [260723] = 2, + [322380] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16209), 1, + anon_sym_BQUOTE, + [322387] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16211), 1, + anon_sym_BQUOTE, + [322394] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(16209), 1, anon_sym_RPAREN, - [260730] = 2, + [322401] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16213), 1, + anon_sym_RBRACE3, + [322408] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13006), 1, + ACTIONS(16215), 1, anon_sym_RBRACE2, - [260737] = 2, + [322415] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16217), 1, + anon_sym_RPAREN, + [322422] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15261), 1, + aux_sym__simple_variable_name_token1, + [322429] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16219), 1, + anon_sym_BQUOTE, + [322436] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13008), 1, + ACTIONS(16221), 1, anon_sym_BQUOTE, - [260744] = 2, + [322443] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16223), 1, + sym_word, + [322450] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260751] = 2, + ACTIONS(16225), 1, + anon_sym_DOT_DOT, + [322457] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260758] = 2, + ACTIONS(16219), 1, + anon_sym_RPAREN, + [322464] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, + ACTIONS(16227), 1, anon_sym_RBRACE3, - [260765] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13010), 1, - anon_sym_BQUOTE, - [260772] = 2, + [322471] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13012), 1, + ACTIONS(16229), 1, anon_sym_RPAREN, - [260779] = 2, + [322478] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13004), 1, - anon_sym_BQUOTE, - [260786] = 2, + ACTIONS(16231), 1, + sym_heredoc_start, + [322485] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13014), 1, - anon_sym_RBRACE2, - [260793] = 2, + ACTIONS(16233), 1, + anon_sym_RBRACE3, + [322492] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13016), 1, + ACTIONS(16235), 1, anon_sym_BQUOTE, - [260800] = 2, + [322499] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13018), 1, + ACTIONS(16201), 1, anon_sym_BQUOTE, - [260807] = 2, + [322506] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13020), 1, - anon_sym_RBRACE3, - [260814] = 2, + ACTIONS(16237), 1, + sym_heredoc_start, + [322513] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16239), 1, + anon_sym_esac, + [322520] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13016), 1, + ACTIONS(16241), 1, anon_sym_RPAREN, - [260821] = 2, + [322527] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13022), 1, - anon_sym_BQUOTE, - [260828] = 2, + ACTIONS(16243), 1, + anon_sym_RBRACE2, + [322534] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260835] = 2, + ACTIONS(16245), 1, + anon_sym_RPAREN, + [322541] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260842] = 2, + ACTIONS(16247), 1, + anon_sym_RBRACE2, + [322548] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13024), 1, - anon_sym_BQUOTE, - [260849] = 2, + ACTIONS(16249), 1, + anon_sym_RPAREN, + [322555] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13026), 1, - anon_sym_LBRACK, - [260856] = 2, + ACTIONS(16251), 1, + anon_sym_RBRACK_RBRACK, + [322562] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13022), 1, - anon_sym_RPAREN, - [260863] = 2, + ACTIONS(16253), 1, + anon_sym_BQUOTE, + [322569] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13028), 1, + ACTIONS(16255), 1, anon_sym_BQUOTE, - [260870] = 2, + [322576] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - [260877] = 2, + ACTIONS(16253), 1, + anon_sym_RPAREN, + [322583] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, + ACTIONS(16257), 1, anon_sym_RBRACE3, - [260884] = 2, + [322590] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - [260891] = 2, + ACTIONS(16259), 1, + anon_sym_esac, + [322597] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - [260898] = 2, + ACTIONS(16261), 1, + anon_sym_BQUOTE, + [322604] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - [260905] = 2, + ACTIONS(16263), 1, + anon_sym_RBRACE2, + [322611] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11885), 1, - anon_sym_RBRACE3, - [260912] = 2, + ACTIONS(14486), 1, + anon_sym_fi, + [322618] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260919] = 2, + ACTIONS(14540), 1, + anon_sym_fi, + [322625] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260926] = 2, + ACTIONS(16265), 1, + anon_sym_RPAREN, + [322632] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260933] = 2, + ACTIONS(16267), 1, + anon_sym_BQUOTE, + [322639] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260940] = 2, + ACTIONS(16269), 1, + anon_sym_BQUOTE, + [322646] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - [260947] = 2, + ACTIONS(16267), 1, + anon_sym_RPAREN, + [322653] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11899), 1, + ACTIONS(16271), 1, anon_sym_RBRACE3, - [260954] = 2, + [322660] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13030), 1, + ACTIONS(16241), 1, anon_sym_BQUOTE, - [260961] = 2, + [322667] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13032), 1, - anon_sym_RBRACE2, - [260968] = 2, + ACTIONS(16273), 1, + anon_sym_RPAREN, + [322674] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13034), 1, + ACTIONS(16275), 1, anon_sym_RBRACE2, - [260975] = 2, + [322681] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13036), 1, + ACTIONS(16277), 1, anon_sym_RPAREN, - [260982] = 2, + [322688] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13028), 1, + ACTIONS(16279), 1, anon_sym_RPAREN, - [260989] = 2, + [322695] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13038), 1, - anon_sym_RBRACE3, - [260996] = 2, + ACTIONS(16281), 1, + anon_sym_RPAREN, + [322702] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13040), 1, - anon_sym_RBRACE3, - [261003] = 2, + ACTIONS(16283), 1, + anon_sym_BQUOTE, + [322709] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12326), 1, - aux_sym__simple_variable_name_token1, - [261010] = 2, + ACTIONS(16285), 1, + anon_sym_BQUOTE, + [322716] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13042), 1, + ACTIONS(16287), 1, anon_sym_BQUOTE, - [261017] = 2, + [322723] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13044), 1, + ACTIONS(16283), 1, anon_sym_RPAREN, - [261024] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13046), 1, - sym_word, - [261031] = 2, + [322730] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13048), 1, - anon_sym_DOT_DOT, - [261038] = 2, + ACTIONS(16289), 1, + anon_sym_RBRACE3, + [322737] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13050), 1, + ACTIONS(16291), 1, anon_sym_BQUOTE, - [261045] = 2, + [322744] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13052), 1, - anon_sym_BQUOTE, - [261052] = 2, + ACTIONS(16293), 1, + anon_sym_RBRACE2, + [322751] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13054), 1, + ACTIONS(16287), 1, anon_sym_RPAREN, - [261059] = 2, + [322758] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13056), 1, - sym_heredoc_start, - [261066] = 2, + ACTIONS(16295), 1, + anon_sym_RBRACE3, + [322765] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13058), 1, - anon_sym_BQUOTE, - [261073] = 2, + ACTIONS(16297), 1, + anon_sym_RPAREN, + [322772] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_BQUOTE, - [261080] = 2, + ACTIONS(16299), 1, + anon_sym_DOT_DOT, + [322779] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13050), 1, - anon_sym_RPAREN, - [261087] = 2, + ACTIONS(16301), 1, + anon_sym_esac, + [322786] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13062), 1, - sym_heredoc_start, - [261094] = 2, + ACTIONS(16303), 1, + anon_sym_RPAREN, + [322793] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13042), 1, - anon_sym_RPAREN, - [261101] = 2, + ACTIONS(16305), 1, + anon_sym_RBRACE2, + [322800] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13064), 1, - anon_sym_RBRACE3, - [261108] = 2, + ACTIONS(16307), 1, + anon_sym_RBRACE2, + [322807] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13066), 1, - anon_sym_RBRACE3, - [261115] = 2, + ACTIONS(16309), 1, + anon_sym_RBRACK_RBRACK, + [322814] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13068), 1, - anon_sym_in, - [261122] = 2, + ACTIONS(16311), 1, + anon_sym_RPAREN, + [322821] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13070), 1, - anon_sym_in, - [261129] = 2, + ACTIONS(16313), 1, + anon_sym_BQUOTE, + [322828] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13036), 1, + ACTIONS(16315), 1, anon_sym_BQUOTE, - [261136] = 2, + [322835] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12564), 1, + ACTIONS(16313), 1, anon_sym_RPAREN, - [261143] = 2, + [322842] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13072), 1, + ACTIONS(16317), 1, anon_sym_RBRACE3, - [261150] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13074), 1, - anon_sym_RPAREN, - [261157] = 2, + [322849] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13076), 1, - anon_sym_RPAREN, - [261164] = 2, + ACTIONS(16319), 1, + anon_sym_RBRACE2, + [322856] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, - anon_sym_RPAREN, - [261171] = 2, + ACTIONS(16321), 1, + anon_sym_esac, + [322863] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13080), 1, - anon_sym_BQUOTE, - [261178] = 2, + ACTIONS(16323), 1, + anon_sym_RBRACE2, + [322870] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13082), 1, - anon_sym_RPAREN_RPAREN, - [261185] = 2, + ACTIONS(16325), 1, + anon_sym_RBRACE2, + [322877] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13084), 1, - anon_sym_BQUOTE, - [261192] = 2, + ACTIONS(16327), 1, + anon_sym_RPAREN, + [322884] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13074), 1, + ACTIONS(16329), 1, anon_sym_BQUOTE, - [261199] = 2, + [322891] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13086), 1, - aux_sym_brace_expression_token1, - [261206] = 2, + ACTIONS(16331), 1, + anon_sym_RPAREN, + [322898] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13088), 1, - anon_sym_RPAREN, - [261213] = 2, + ACTIONS(16333), 1, + anon_sym_BQUOTE, + [322905] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13090), 1, - anon_sym_RBRACE2, - [261220] = 2, + ACTIONS(16335), 1, + anon_sym_BQUOTE, + [322912] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13092), 1, + ACTIONS(16337), 1, anon_sym_BQUOTE, - [261227] = 2, + [322919] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13094), 1, + ACTIONS(16333), 1, anon_sym_RPAREN, - [261234] = 2, + [322926] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13096), 1, - anon_sym_BQUOTE, - [261241] = 2, + ACTIONS(16339), 1, + anon_sym_RBRACE3, + [322933] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13098), 1, - anon_sym_LT_LT_LT, - [261248] = 2, + ACTIONS(16341), 1, + anon_sym_RPAREN, + [322940] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13084), 1, + ACTIONS(16329), 1, anon_sym_RPAREN, - [261255] = 2, + [322947] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13100), 1, + ACTIONS(16343), 1, anon_sym_RBRACE3, - [261262] = 2, + [322954] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_BQUOTE, - [261269] = 2, + ACTIONS(16345), 1, + sym_heredoc_end, + [322961] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13104), 1, - anon_sym_RPAREN, - [261276] = 2, + ACTIONS(16347), 1, + sym_heredoc_end, + [322968] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13106), 1, - sym_heredoc_start, - [261283] = 2, + ACTIONS(16349), 1, + anon_sym_BQUOTE, + [322975] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13108), 1, - anon_sym_BQUOTE, - [261290] = 2, + ACTIONS(16351), 1, + anon_sym_RBRACE2, + [322982] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13096), 1, - anon_sym_RPAREN, - [261297] = 2, + ACTIONS(16353), 1, + ts_builtin_sym_end, + [322989] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13110), 1, - anon_sym_RPAREN, - [261304] = 2, + ACTIONS(16355), 1, + ts_builtin_sym_end, + [322996] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13112), 1, + ACTIONS(16357), 1, anon_sym_RPAREN, - [261311] = 2, + [323003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13114), 1, + ACTIONS(16359), 1, anon_sym_BQUOTE, - [261318] = 2, + [323010] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13116), 1, + ACTIONS(16361), 1, anon_sym_BQUOTE, - [261325] = 2, + [323017] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13114), 1, + ACTIONS(16363), 1, + anon_sym_BQUOTE, + [323024] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16359), 1, anon_sym_RPAREN, - [261332] = 2, + [323031] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13118), 1, + ACTIONS(16365), 1, anon_sym_RBRACE3, - [261339] = 2, + [323038] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13120), 1, - anon_sym_RBRACE2, - [261346] = 2, + ACTIONS(14512), 1, + anon_sym_RBRACE3, + [323045] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 1, - anon_sym_RBRACE3, - [261353] = 2, + ACTIONS(14696), 1, + anon_sym_fi, + [323052] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13124), 1, - anon_sym_BQUOTE, - [261360] = 2, + ACTIONS(15285), 1, + aux_sym__simple_variable_name_token1, + [323059] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 1, + ACTIONS(16367), 1, + anon_sym_fi, + [323066] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, anon_sym_RBRACE2, - [261367] = 2, + [323073] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13128), 1, - anon_sym_RBRACE3, - [261374] = 2, + ACTIONS(16371), 1, + sym_word, + [323080] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - anon_sym_BQUOTE, - [261381] = 2, + ACTIONS(16373), 1, + anon_sym_DOT_DOT, + [323087] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13132), 1, + ACTIONS(16375), 1, anon_sym_RPAREN, - [261388] = 2, + [323094] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13124), 1, + ACTIONS(16377), 1, + anon_sym_BQUOTE, + [323101] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16379), 1, anon_sym_RPAREN, - [261395] = 2, + [323108] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13134), 1, - anon_sym_RBRACE3, - [261402] = 2, + ACTIONS(16381), 1, + sym_heredoc_start, + [323115] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, + ACTIONS(16383), 1, anon_sym_BQUOTE, - [261409] = 2, + [323122] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13132), 1, - anon_sym_BQUOTE, - [261416] = 2, + ACTIONS(16385), 1, + anon_sym_esac, + [323129] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 1, - anon_sym_RPAREN, - [261423] = 2, + ACTIONS(16387), 1, + anon_sym_RBRACE2, + [323136] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13140), 1, + ACTIONS(16389), 1, + sym_heredoc_start, + [323143] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16377), 1, anon_sym_RPAREN, - [261430] = 2, + [323150] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 1, - anon_sym_BQUOTE, - [261437] = 2, + ACTIONS(16391), 1, + anon_sym_RBRACE3, + [323157] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13144), 1, + ACTIONS(16393), 1, anon_sym_esac, - [261444] = 2, + [323164] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13146), 1, + ACTIONS(16395), 1, anon_sym_esac, - [261451] = 2, + [323171] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13148), 1, - anon_sym_BQUOTE, - [261458] = 2, + ACTIONS(16397), 1, + anon_sym_RBRACE2, + [323178] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 1, + ACTIONS(16399), 1, anon_sym_RPAREN, - [261465] = 2, + [323185] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13150), 1, - anon_sym_RBRACE3, - [261472] = 2, + ACTIONS(16401), 1, + anon_sym_BQUOTE, + [323192] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13152), 1, + ACTIONS(16403), 1, + anon_sym_BQUOTE, + [323199] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16401), 1, + anon_sym_RPAREN, + [323206] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16405), 1, anon_sym_RBRACE3, - [261479] = 2, + [323213] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13154), 1, + ACTIONS(16407), 1, anon_sym_RPAREN, - [261486] = 2, + [323220] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13156), 1, + ACTIONS(16409), 1, anon_sym_esac, - [261493] = 2, + [323227] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13158), 1, + ACTIONS(16411), 1, anon_sym_esac, - [261500] = 2, + [323234] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 1, - anon_sym_fi, - [261507] = 2, + ACTIONS(16413), 1, + anon_sym_RBRACE2, + [323241] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13162), 1, - anon_sym_BQUOTE, - [261514] = 2, + ACTIONS(16415), 1, + anon_sym_RPAREN, + [323248] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13164), 1, + ACTIONS(16417), 1, anon_sym_BQUOTE, - [261521] = 2, + [323255] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13166), 1, + ACTIONS(16419), 1, anon_sym_BQUOTE, - [261528] = 2, + [323262] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13168), 1, - anon_sym_RBRACE2, - [261535] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13162), 1, + ACTIONS(16417), 1, anon_sym_RPAREN, - [261542] = 2, + [323269] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13170), 1, + ACTIONS(16421), 1, anon_sym_RBRACE3, - [261549] = 2, + [323276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13172), 1, - anon_sym_RPAREN, - [261556] = 2, + ACTIONS(16423), 1, + sym_word, + [323283] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13154), 1, - anon_sym_BQUOTE, - [261563] = 2, + ACTIONS(16425), 1, + anon_sym_DOT_DOT, + [323290] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13174), 1, - sym_word, - [261570] = 2, + ACTIONS(16427), 1, + anon_sym_RPAREN, + [323297] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13176), 1, - anon_sym_DOT_DOT, - [261577] = 2, + ACTIONS(16429), 1, + sym_heredoc_start, + [323304] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(16431), 1, anon_sym_BQUOTE, - [261584] = 2, + [323311] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13180), 1, - anon_sym_RPAREN, - [261591] = 2, + ACTIONS(16433), 1, + sym_word, + [323318] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13182), 1, + ACTIONS(16435), 1, sym_heredoc_start, - [261598] = 2, + [323325] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13184), 1, + ACTIONS(16437), 1, anon_sym_BQUOTE, - [261605] = 2, + [323332] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13186), 1, - anon_sym_RPAREN, - [261612] = 2, + ACTIONS(16439), 1, + sym_heredoc_end, + [323339] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13188), 1, - sym_heredoc_start, - [261619] = 2, + ACTIONS(16431), 1, + anon_sym_RPAREN, + [323346] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13190), 1, - sym_heredoc_end, - [261626] = 2, + ACTIONS(16441), 1, + anon_sym_RBRACE3, + [323353] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13192), 1, + ACTIONS(16349), 1, anon_sym_RPAREN, - [261633] = 2, + [323360] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13194), 1, + ACTIONS(16443), 1, sym_heredoc_end, - [261640] = 2, + [323367] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13196), 1, - anon_sym_BQUOTE, - [261647] = 2, + ACTIONS(16445), 1, + anon_sym_RBRACE3, + [323374] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(16447), 1, + anon_sym_RBRACE2, + [323381] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16449), 1, anon_sym_RPAREN, - [261654] = 2, + [323388] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13198), 1, + ACTIONS(16451), 1, + anon_sym_BQUOTE, + [323395] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16453), 1, anon_sym_esac, - [261661] = 2, + [323402] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13200), 1, + ACTIONS(16455), 1, + anon_sym_BQUOTE, + [323409] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16457), 1, anon_sym_RBRACE3, - [261668] = 2, + [323416] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13202), 1, - anon_sym_esac, - [261675] = 2, + ACTIONS(16451), 1, + anon_sym_RPAREN, + [323423] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13204), 1, + ACTIONS(16459), 1, + anon_sym_RBRACE2, + [323430] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16461), 1, anon_sym_RBRACE3, - [261682] = 2, + [323437] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11807), 1, - anon_sym_fi, - [261689] = 2, + ACTIONS(16463), 1, + anon_sym_RBRACE2, + [323444] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13206), 1, + ACTIONS(16465), 1, anon_sym_RPAREN, - [261696] = 2, + [323451] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13208), 1, + ACTIONS(16467), 1, anon_sym_BQUOTE, - [261703] = 2, + [323458] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13210), 1, - sym_word, - [261710] = 2, + ACTIONS(16469), 1, + anon_sym_DOT_DOT, + [323465] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13212), 1, + ACTIONS(16471), 1, anon_sym_DOT_DOT, - [261717] = 2, + [323472] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13214), 1, - anon_sym_RPAREN, - [261724] = 2, + ACTIONS(16473), 1, + anon_sym_DOT_DOT, + [323479] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13196), 1, - anon_sym_RPAREN, - [261731] = 2, + ACTIONS(16475), 1, + anon_sym_DOT_DOT, + [323486] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13216), 1, + ACTIONS(16477), 1, anon_sym_DOT_DOT, - [261738] = 2, + [323493] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13218), 1, - anon_sym_RBRACE3, - [261745] = 2, + ACTIONS(16479), 1, + anon_sym_DOT_DOT, + [323500] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13220), 1, - anon_sym_RBRACE2, - [261752] = 2, + ACTIONS(16481), 1, + anon_sym_DOT_DOT, + [323507] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13222), 1, - anon_sym_BQUOTE, - [261759] = 2, + ACTIONS(16483), 1, + anon_sym_DOT_DOT, + [323514] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13224), 1, - anon_sym_BQUOTE, - [261766] = 2, + ACTIONS(16485), 1, + anon_sym_DOT_DOT, + [323521] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13226), 1, - anon_sym_esac, - [261773] = 2, + ACTIONS(16487), 1, + anon_sym_DOT_DOT, + [323528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13228), 1, - anon_sym_BQUOTE, - [261780] = 2, + ACTIONS(16489), 1, + anon_sym_DOT_DOT, + [323535] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13230), 1, - anon_sym_esac, - [261787] = 2, + ACTIONS(16491), 1, + anon_sym_DOT_DOT, + [323542] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13206), 1, - anon_sym_BQUOTE, - [261794] = 2, + ACTIONS(16493), 1, + anon_sym_DOT_DOT, + [323549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(11819), 1, - anon_sym_fi, - [261801] = 2, + ACTIONS(16495), 1, + anon_sym_DOT_DOT, + [323556] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13222), 1, - anon_sym_RPAREN, - [261808] = 2, + ACTIONS(16497), 1, + anon_sym_DOT_DOT, + [323563] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13232), 1, - anon_sym_RBRACE3, - [261815] = 2, + ACTIONS(16499), 1, + anon_sym_DOT_DOT, + [323570] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13234), 1, - anon_sym_RBRACE3, - [261822] = 2, + ACTIONS(16501), 1, + anon_sym_DOT_DOT, + [323577] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13236), 1, + ACTIONS(16503), 1, anon_sym_DOT_DOT, - [261829] = 2, + [323584] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13238), 1, - anon_sym_BQUOTE, - [261836] = 2, + ACTIONS(16505), 1, + anon_sym_DOT_DOT, + [323591] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13240), 1, + ACTIONS(16507), 1, anon_sym_DOT_DOT, - [261843] = 2, + [323598] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13242), 1, + ACTIONS(16509), 1, anon_sym_DOT_DOT, - [261850] = 2, + [323605] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13244), 1, + ACTIONS(16511), 1, anon_sym_DOT_DOT, - [261857] = 2, + [323612] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13246), 1, + ACTIONS(16513), 1, anon_sym_DOT_DOT, - [261864] = 2, + [323619] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13248), 1, + ACTIONS(16515), 1, anon_sym_DOT_DOT, - [261871] = 2, + [323626] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13250), 1, + ACTIONS(16517), 1, anon_sym_DOT_DOT, - [261878] = 2, + [323633] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, + ACTIONS(16519), 1, anon_sym_DOT_DOT, - [261885] = 2, + [323640] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13254), 1, + ACTIONS(16521), 1, anon_sym_DOT_DOT, - [261892] = 2, + [323647] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(16523), 1, anon_sym_DOT_DOT, - [261899] = 2, + [323654] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13258), 1, + ACTIONS(16525), 1, anon_sym_DOT_DOT, - [261906] = 2, + [323661] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13260), 1, + ACTIONS(16527), 1, anon_sym_DOT_DOT, - [261913] = 2, + [323668] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13262), 1, + ACTIONS(16529), 1, anon_sym_DOT_DOT, - [261920] = 2, + [323675] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13264), 1, + ACTIONS(16531), 1, anon_sym_DOT_DOT, - [261927] = 2, + [323682] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13266), 1, + ACTIONS(16533), 1, anon_sym_DOT_DOT, - [261934] = 2, + [323689] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13268), 1, + ACTIONS(16535), 1, anon_sym_DOT_DOT, - [261941] = 2, + [323696] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13270), 1, + ACTIONS(16537), 1, anon_sym_DOT_DOT, - [261948] = 2, + [323703] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13272), 1, + ACTIONS(16539), 1, anon_sym_DOT_DOT, - [261955] = 2, + [323710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13274), 1, + ACTIONS(16541), 1, anon_sym_DOT_DOT, - [261962] = 2, + [323717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13276), 1, + ACTIONS(16543), 1, anon_sym_DOT_DOT, - [261969] = 2, + [323724] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13278), 1, + ACTIONS(16545), 1, anon_sym_DOT_DOT, - [261976] = 2, + [323731] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13280), 1, + ACTIONS(16547), 1, anon_sym_DOT_DOT, - [261983] = 2, + [323738] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13282), 1, + ACTIONS(16549), 1, anon_sym_DOT_DOT, - [261990] = 2, + [323745] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13284), 1, + ACTIONS(16551), 1, anon_sym_DOT_DOT, - [261997] = 2, + [323752] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13286), 1, + ACTIONS(16553), 1, anon_sym_DOT_DOT, - [262004] = 2, + [323759] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13288), 1, + ACTIONS(16555), 1, anon_sym_DOT_DOT, - [262011] = 2, + [323766] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13290), 1, + ACTIONS(16557), 1, anon_sym_DOT_DOT, - [262018] = 2, + [323773] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13292), 1, + ACTIONS(16559), 1, anon_sym_DOT_DOT, - [262025] = 2, + [323780] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13294), 1, + ACTIONS(16561), 1, anon_sym_DOT_DOT, - [262032] = 2, + [323787] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13296), 1, + ACTIONS(16563), 1, anon_sym_DOT_DOT, - [262039] = 2, + [323794] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13298), 1, + ACTIONS(16565), 1, anon_sym_DOT_DOT, - [262046] = 2, + [323801] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13300), 1, + ACTIONS(16567), 1, anon_sym_DOT_DOT, - [262053] = 2, + [323808] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13302), 1, + ACTIONS(16569), 1, anon_sym_DOT_DOT, - [262060] = 2, + [323815] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13304), 1, + ACTIONS(16571), 1, anon_sym_DOT_DOT, - [262067] = 2, + [323822] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13306), 1, + ACTIONS(16573), 1, anon_sym_DOT_DOT, - [262074] = 2, + [323829] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13308), 1, + ACTIONS(16575), 1, anon_sym_DOT_DOT, - [262081] = 2, + [323836] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13310), 1, + ACTIONS(16577), 1, anon_sym_DOT_DOT, - [262088] = 2, + [323843] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13312), 1, + ACTIONS(16579), 1, anon_sym_DOT_DOT, - [262095] = 2, + [323850] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13314), 1, + ACTIONS(16581), 1, anon_sym_DOT_DOT, - [262102] = 2, + [323857] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13316), 1, + ACTIONS(16583), 1, anon_sym_DOT_DOT, - [262109] = 2, + [323864] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13318), 1, + ACTIONS(16585), 1, anon_sym_DOT_DOT, - [262116] = 2, + [323871] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13320), 1, + ACTIONS(16587), 1, anon_sym_DOT_DOT, - [262123] = 2, + [323878] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13322), 1, + ACTIONS(16589), 1, aux_sym_brace_expression_token1, - [262130] = 2, + [323885] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13324), 1, + ACTIONS(16591), 1, anon_sym_BQUOTE, - [262137] = 2, + [323892] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13326), 1, - anon_sym_RBRACE2, - [262144] = 2, + ACTIONS(16467), 1, + anon_sym_RPAREN, + [323899] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13208), 1, + ACTIONS(16593), 1, anon_sym_RPAREN, - [262151] = 2, + [323906] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13328), 1, - ts_builtin_sym_end, - [262158] = 2, + ACTIONS(16595), 1, + anon_sym_RBRACE3, + [323913] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13330), 1, - ts_builtin_sym_end, - [262165] = 2, + ACTIONS(16593), 1, + anon_sym_BQUOTE, + [323920] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7660), 1, - anon_sym_RBRACK, - [262172] = 2, + ACTIONS(16597), 1, + anon_sym_esac, + [323927] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13238), 1, - anon_sym_RPAREN, - [262179] = 2, + ACTIONS(15277), 1, + aux_sym__simple_variable_name_token1, + [323934] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13332), 1, - anon_sym_LT_LT_LT, - [262186] = 2, + ACTIONS(16599), 1, + aux_sym_brace_expression_token1, + [323941] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7572), 1, - anon_sym_RBRACK, - [262193] = 2, + ACTIONS(16601), 1, + anon_sym_BQUOTE, + [323948] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13334), 1, - anon_sym_RBRACE2, - [262200] = 2, + ACTIONS(16603), 1, + aux_sym_brace_expression_token1, + [323955] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13336), 1, + ACTIONS(16605), 1, aux_sym_brace_expression_token1, - [262207] = 2, + [323962] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13338), 1, - sym_word, - [262214] = 2, + ACTIONS(16607), 1, + aux_sym_brace_expression_token1, + [323969] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12354), 1, - aux_sym__simple_variable_name_token1, - [262221] = 2, + ACTIONS(16609), 1, + aux_sym_brace_expression_token1, + [323976] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13340), 1, - anon_sym_RBRACE3, - [262228] = 2, + ACTIONS(16611), 1, + aux_sym_brace_expression_token1, + [323983] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13342), 1, - anon_sym_LT_LT_LT, - [262235] = 2, + ACTIONS(16613), 1, + aux_sym_brace_expression_token1, + [323990] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13344), 1, + ACTIONS(16615), 1, aux_sym_brace_expression_token1, - [262242] = 2, + [323997] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13346), 1, + ACTIONS(16617), 1, aux_sym_brace_expression_token1, - [262249] = 2, + [324004] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13348), 1, + ACTIONS(16619), 1, aux_sym_brace_expression_token1, - [262256] = 2, + [324011] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13350), 1, + ACTIONS(16621), 1, aux_sym_brace_expression_token1, - [262263] = 2, + [324018] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13352), 1, + ACTIONS(16623), 1, aux_sym_brace_expression_token1, - [262270] = 2, + [324025] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13354), 1, + ACTIONS(16625), 1, aux_sym_brace_expression_token1, - [262277] = 2, + [324032] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13356), 1, + ACTIONS(16627), 1, aux_sym_brace_expression_token1, - [262284] = 2, + [324039] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13358), 1, + ACTIONS(16629), 1, aux_sym_brace_expression_token1, - [262291] = 2, + [324046] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13360), 1, + ACTIONS(16631), 1, aux_sym_brace_expression_token1, - [262298] = 2, + [324053] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13362), 1, + ACTIONS(16633), 1, aux_sym_brace_expression_token1, - [262305] = 2, + [324060] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13364), 1, + ACTIONS(16635), 1, aux_sym_brace_expression_token1, - [262312] = 2, + [324067] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13366), 1, + ACTIONS(16637), 1, aux_sym_brace_expression_token1, - [262319] = 2, + [324074] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13368), 1, + ACTIONS(16639), 1, aux_sym_brace_expression_token1, - [262326] = 2, + [324081] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13370), 1, + ACTIONS(16641), 1, aux_sym_brace_expression_token1, - [262333] = 2, + [324088] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13372), 1, + ACTIONS(16643), 1, aux_sym_brace_expression_token1, - [262340] = 2, + [324095] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13374), 1, + ACTIONS(16645), 1, aux_sym_brace_expression_token1, - [262347] = 2, + [324102] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13376), 1, + ACTIONS(16647), 1, aux_sym_brace_expression_token1, - [262354] = 2, + [324109] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13378), 1, + ACTIONS(16649), 1, aux_sym_brace_expression_token1, - [262361] = 2, + [324116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13380), 1, + ACTIONS(16651), 1, aux_sym_brace_expression_token1, - [262368] = 2, + [324123] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13382), 1, + ACTIONS(16653), 1, aux_sym_brace_expression_token1, - [262375] = 2, + [324130] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13384), 1, + ACTIONS(16655), 1, aux_sym_brace_expression_token1, - [262382] = 2, + [324137] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13386), 1, + ACTIONS(16657), 1, aux_sym_brace_expression_token1, - [262389] = 2, + [324144] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13388), 1, + ACTIONS(16659), 1, aux_sym_brace_expression_token1, - [262396] = 2, + [324151] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13390), 1, + ACTIONS(16661), 1, aux_sym_brace_expression_token1, - [262403] = 2, + [324158] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13392), 1, + ACTIONS(16663), 1, aux_sym_brace_expression_token1, - [262410] = 2, + [324165] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13394), 1, + ACTIONS(16665), 1, aux_sym_brace_expression_token1, - [262417] = 2, + [324172] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13396), 1, + ACTIONS(16667), 1, aux_sym_brace_expression_token1, - [262424] = 2, + [324179] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13398), 1, + ACTIONS(16669), 1, aux_sym_brace_expression_token1, - [262431] = 2, + [324186] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13400), 1, + ACTIONS(16671), 1, aux_sym_brace_expression_token1, - [262438] = 2, + [324193] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13402), 1, + ACTIONS(16673), 1, aux_sym_brace_expression_token1, - [262445] = 2, + [324200] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13404), 1, + ACTIONS(16675), 1, aux_sym_brace_expression_token1, - [262452] = 2, + [324207] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13406), 1, + ACTIONS(16677), 1, aux_sym_brace_expression_token1, - [262459] = 2, + [324214] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13408), 1, + ACTIONS(16679), 1, aux_sym_brace_expression_token1, - [262466] = 2, + [324221] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13410), 1, + ACTIONS(16681), 1, aux_sym_brace_expression_token1, - [262473] = 2, + [324228] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13412), 1, + ACTIONS(16683), 1, aux_sym_brace_expression_token1, - [262480] = 2, + [324235] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13414), 1, + ACTIONS(16685), 1, aux_sym_brace_expression_token1, - [262487] = 2, + [324242] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13416), 1, + ACTIONS(16687), 1, aux_sym_brace_expression_token1, - [262494] = 2, + [324249] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13418), 1, + ACTIONS(16689), 1, aux_sym_brace_expression_token1, - [262501] = 2, + [324256] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13420), 1, + ACTIONS(16691), 1, aux_sym_brace_expression_token1, - [262508] = 2, + [324263] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13422), 1, + ACTIONS(16693), 1, aux_sym_brace_expression_token1, - [262515] = 2, + [324270] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13424), 1, + ACTIONS(16695), 1, aux_sym_brace_expression_token1, - [262522] = 2, + [324277] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(16697), 1, aux_sym_brace_expression_token1, - [262529] = 2, + [324284] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13428), 1, + ACTIONS(16699), 1, aux_sym_brace_expression_token1, - [262536] = 2, + [324291] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13430), 1, + ACTIONS(16701), 1, aux_sym_brace_expression_token1, - [262543] = 2, + [324298] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13432), 1, + ACTIONS(16703), 1, aux_sym_brace_expression_token1, - [262550] = 2, + [324305] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13434), 1, - anon_sym_BQUOTE, + ACTIONS(16705), 1, + aux_sym_brace_expression_token1, + [324312] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16707), 1, + aux_sym_brace_expression_token1, + [324319] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16709), 1, + aux_sym_brace_expression_token1, + [324326] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16711), 1, + aux_sym_brace_expression_token1, + [324333] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16713), 1, + aux_sym_brace_expression_token1, + [324340] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16715), 1, + aux_sym_brace_expression_token1, + [324347] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16717), 1, + aux_sym_brace_expression_token1, + [324354] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16719), 1, + aux_sym_brace_expression_token1, + [324361] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16721), 1, + aux_sym_brace_expression_token1, + [324368] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16723), 1, + aux_sym_brace_expression_token1, + [324375] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16725), 1, + aux_sym_brace_expression_token1, + [324382] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16727), 1, + aux_sym_brace_expression_token1, + [324389] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16729), 1, + anon_sym_RBRACE3, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(426)] = 0, - [SMALL_STATE(427)] = 120, - [SMALL_STATE(428)] = 240, - [SMALL_STATE(429)] = 359, - [SMALL_STATE(430)] = 478, - [SMALL_STATE(431)] = 594, - [SMALL_STATE(432)] = 712, - [SMALL_STATE(433)] = 826, - [SMALL_STATE(434)] = 944, - [SMALL_STATE(435)] = 1062, - [SMALL_STATE(436)] = 1176, - [SMALL_STATE(437)] = 1294, - [SMALL_STATE(438)] = 1411, - [SMALL_STATE(439)] = 1486, - [SMALL_STATE(440)] = 1601, - [SMALL_STATE(441)] = 1714, - [SMALL_STATE(442)] = 1831, - [SMALL_STATE(443)] = 1940, - [SMALL_STATE(444)] = 2049, - [SMALL_STATE(445)] = 2162, - [SMALL_STATE(446)] = 2237, - [SMALL_STATE(447)] = 2352, - [SMALL_STATE(448)] = 2467, - [SMALL_STATE(449)] = 2576, - [SMALL_STATE(450)] = 2650, - [SMALL_STATE(451)] = 2758, - [SMALL_STATE(452)] = 2866, - [SMALL_STATE(453)] = 2974, - [SMALL_STATE(454)] = 3048, - [SMALL_STATE(455)] = 3160, - [SMALL_STATE(456)] = 3272, - [SMALL_STATE(457)] = 3346, - [SMALL_STATE(458)] = 3460, - [SMALL_STATE(459)] = 3572, - [SMALL_STATE(460)] = 3686, - [SMALL_STATE(461)] = 3798, - [SMALL_STATE(462)] = 3872, - [SMALL_STATE(463)] = 3945, - [SMALL_STATE(464)] = 4046, - [SMALL_STATE(465)] = 4119, - [SMALL_STATE(466)] = 4190, - [SMALL_STATE(467)] = 4297, - [SMALL_STATE(468)] = 4368, - [SMALL_STATE(469)] = 4441, - [SMALL_STATE(470)] = 4514, - [SMALL_STATE(471)] = 4625, - [SMALL_STATE(472)] = 4732, - [SMALL_STATE(473)] = 4841, - [SMALL_STATE(474)] = 4954, - [SMALL_STATE(475)] = 5061, - [SMALL_STATE(476)] = 5170, - [SMALL_STATE(477)] = 5277, - [SMALL_STATE(478)] = 5388, - [SMALL_STATE(479)] = 5461, - [SMALL_STATE(480)] = 5568, - [SMALL_STATE(481)] = 5675, - [SMALL_STATE(482)] = 5748, - [SMALL_STATE(483)] = 5820, - [SMALL_STATE(484)] = 5884, - [SMALL_STATE(485)] = 5956, - [SMALL_STATE(486)] = 6060, - [SMALL_STATE(487)] = 6166, - [SMALL_STATE(488)] = 6268, - [SMALL_STATE(489)] = 6340, - [SMALL_STATE(490)] = 6412, - [SMALL_STATE(491)] = 6526, - [SMALL_STATE(492)] = 6598, - [SMALL_STATE(493)] = 6668, - [SMALL_STATE(494)] = 6740, - [SMALL_STATE(495)] = 6812, - [SMALL_STATE(496)] = 6912, - [SMALL_STATE(497)] = 6982, - [SMALL_STATE(498)] = 7088, - [SMALL_STATE(499)] = 7190, - [SMALL_STATE(500)] = 7260, - [SMALL_STATE(501)] = 7366, - [SMALL_STATE(502)] = 7470, - [SMALL_STATE(503)] = 7584, - [SMALL_STATE(504)] = 7656, - [SMALL_STATE(505)] = 7758, - [SMALL_STATE(506)] = 7828, - [SMALL_STATE(507)] = 7899, - [SMALL_STATE(508)] = 8030, - [SMALL_STATE(509)] = 8131, - [SMALL_STATE(510)] = 8232, - [SMALL_STATE(511)] = 8301, - [SMALL_STATE(512)] = 8400, - [SMALL_STATE(513)] = 8531, - [SMALL_STATE(514)] = 8662, - [SMALL_STATE(515)] = 8729, - [SMALL_STATE(516)] = 8860, - [SMALL_STATE(517)] = 8975, - [SMALL_STATE(518)] = 9074, - [SMALL_STATE(519)] = 9145, - [SMALL_STATE(520)] = 9212, - [SMALL_STATE(521)] = 9283, - [SMALL_STATE(522)] = 9354, - [SMALL_STATE(523)] = 9425, - [SMALL_STATE(524)] = 9526, - [SMALL_STATE(525)] = 9657, - [SMALL_STATE(526)] = 9756, - [SMALL_STATE(527)] = 9855, - [SMALL_STATE(528)] = 9924, - [SMALL_STATE(529)] = 10055, - [SMALL_STATE(530)] = 10122, - [SMALL_STATE(531)] = 10253, - [SMALL_STATE(532)] = 10384, - [SMALL_STATE(533)] = 10453, - [SMALL_STATE(534)] = 10520, - [SMALL_STATE(535)] = 10589, - [SMALL_STATE(536)] = 10658, - [SMALL_STATE(537)] = 10729, - [SMALL_STATE(538)] = 10844, - [SMALL_STATE(539)] = 10943, - [SMALL_STATE(540)] = 11012, - [SMALL_STATE(541)] = 11080, - [SMALL_STATE(542)] = 11188, - [SMALL_STATE(543)] = 11288, - [SMALL_STATE(544)] = 11388, - [SMALL_STATE(545)] = 11488, - [SMALL_STATE(546)] = 11586, - [SMALL_STATE(547)] = 11696, - [SMALL_STATE(548)] = 11804, - [SMALL_STATE(549)] = 11874, - [SMALL_STATE(550)] = 11972, - [SMALL_STATE(551)] = 12042, - [SMALL_STATE(552)] = 12170, - [SMALL_STATE(553)] = 12240, - [SMALL_STATE(554)] = 12308, - [SMALL_STATE(555)] = 12378, - [SMALL_STATE(556)] = 12446, - [SMALL_STATE(557)] = 12514, - [SMALL_STATE(558)] = 12584, - [SMALL_STATE(559)] = 12652, - [SMALL_STATE(560)] = 12752, - [SMALL_STATE(561)] = 12850, - [SMALL_STATE(562)] = 12948, - [SMALL_STATE(563)] = 13018, - [SMALL_STATE(564)] = 13116, - [SMALL_STATE(565)] = 13244, - [SMALL_STATE(566)] = 13372, - [SMALL_STATE(567)] = 13442, - [SMALL_STATE(568)] = 13570, - [SMALL_STATE(569)] = 13638, - [SMALL_STATE(570)] = 13738, - [SMALL_STATE(571)] = 13808, - [SMALL_STATE(572)] = 13878, - [SMALL_STATE(573)] = 14006, - [SMALL_STATE(574)] = 14104, - [SMALL_STATE(575)] = 14174, - [SMALL_STATE(576)] = 14302, - [SMALL_STATE(577)] = 14402, - [SMALL_STATE(578)] = 14530, - [SMALL_STATE(579)] = 14599, - [SMALL_STATE(580)] = 14668, - [SMALL_STATE(581)] = 14793, - [SMALL_STATE(582)] = 14918, - [SMALL_STATE(583)] = 15043, - [SMALL_STATE(584)] = 15142, - [SMALL_STATE(585)] = 15239, - [SMALL_STATE(586)] = 15342, - [SMALL_STATE(587)] = 15439, - [SMALL_STATE(588)] = 15538, - [SMALL_STATE(589)] = 15635, - [SMALL_STATE(590)] = 15732, - [SMALL_STATE(591)] = 15857, - [SMALL_STATE(592)] = 15960, - [SMALL_STATE(593)] = 16029, - [SMALL_STATE(594)] = 16098, - [SMALL_STATE(595)] = 16167, - [SMALL_STATE(596)] = 16264, - [SMALL_STATE(597)] = 16361, - [SMALL_STATE(598)] = 16458, - [SMALL_STATE(599)] = 16555, - [SMALL_STATE(600)] = 16680, - [SMALL_STATE(601)] = 16789, - [SMALL_STATE(602)] = 16900, - [SMALL_STATE(603)] = 16969, - [SMALL_STATE(604)] = 17038, - [SMALL_STATE(605)] = 17107, - [SMALL_STATE(606)] = 17174, - [SMALL_STATE(607)] = 17271, - [SMALL_STATE(608)] = 17368, - [SMALL_STATE(609)] = 17435, - [SMALL_STATE(610)] = 17534, - [SMALL_STATE(611)] = 17659, - [SMALL_STATE(612)] = 17784, - [SMALL_STATE(613)] = 17887, - [SMALL_STATE(614)] = 17956, - [SMALL_STATE(615)] = 18025, - [SMALL_STATE(616)] = 18094, - [SMALL_STATE(617)] = 18163, - [SMALL_STATE(618)] = 18272, - [SMALL_STATE(619)] = 18397, - [SMALL_STATE(620)] = 18465, - [SMALL_STATE(621)] = 18525, - [SMALL_STATE(622)] = 18621, - [SMALL_STATE(623)] = 18689, - [SMALL_STATE(624)] = 18757, - [SMALL_STATE(625)] = 18825, - [SMALL_STATE(626)] = 18919, - [SMALL_STATE(627)] = 18987, - [SMALL_STATE(628)] = 19055, - [SMALL_STATE(629)] = 19149, - [SMALL_STATE(630)] = 19245, - [SMALL_STATE(631)] = 19341, - [SMALL_STATE(632)] = 19401, - [SMALL_STATE(633)] = 19497, - [SMALL_STATE(634)] = 19565, - [SMALL_STATE(635)] = 19633, - [SMALL_STATE(636)] = 19701, - [SMALL_STATE(637)] = 19769, - [SMALL_STATE(638)] = 19873, - [SMALL_STATE(639)] = 19977, - [SMALL_STATE(640)] = 20045, - [SMALL_STATE(641)] = 20141, - [SMALL_STATE(642)] = 20203, - [SMALL_STATE(643)] = 20271, - [SMALL_STATE(644)] = 20375, - [SMALL_STATE(645)] = 20443, - [SMALL_STATE(646)] = 20511, - [SMALL_STATE(647)] = 20573, - [SMALL_STATE(648)] = 20669, - [SMALL_STATE(649)] = 20765, - [SMALL_STATE(650)] = 20858, - [SMALL_STATE(651)] = 20969, - [SMALL_STATE(652)] = 21034, - [SMALL_STATE(653)] = 21131, - [SMALL_STATE(654)] = 21242, - [SMALL_STATE(655)] = 21307, - [SMALL_STATE(656)] = 21372, - [SMALL_STATE(657)] = 21433, - [SMALL_STATE(658)] = 21500, - [SMALL_STATE(659)] = 21567, - [SMALL_STATE(660)] = 21678, - [SMALL_STATE(661)] = 21751, - [SMALL_STATE(662)] = 21830, - [SMALL_STATE(663)] = 21895, - [SMALL_STATE(664)] = 21988, - [SMALL_STATE(665)] = 22053, - [SMALL_STATE(666)] = 22112, - [SMALL_STATE(667)] = 22223, - [SMALL_STATE(668)] = 22288, - [SMALL_STATE(669)] = 22355, - [SMALL_STATE(670)] = 22422, - [SMALL_STATE(671)] = 22489, - [SMALL_STATE(672)] = 22554, - [SMALL_STATE(673)] = 22621, - [SMALL_STATE(674)] = 22686, - [SMALL_STATE(675)] = 22751, - [SMALL_STATE(676)] = 22862, - [SMALL_STATE(677)] = 22973, - [SMALL_STATE(678)] = 23068, - [SMALL_STATE(679)] = 23163, - [SMALL_STATE(680)] = 23234, - [SMALL_STATE(681)] = 23313, - [SMALL_STATE(682)] = 23380, - [SMALL_STATE(683)] = 23441, - [SMALL_STATE(684)] = 23552, - [SMALL_STATE(685)] = 23647, - [SMALL_STATE(686)] = 23712, - [SMALL_STATE(687)] = 23823, - [SMALL_STATE(688)] = 23919, - [SMALL_STATE(689)] = 23977, - [SMALL_STATE(690)] = 24055, - [SMALL_STATE(691)] = 24113, - [SMALL_STATE(692)] = 24171, - [SMALL_STATE(693)] = 24229, - [SMALL_STATE(694)] = 24295, - [SMALL_STATE(695)] = 24359, - [SMALL_STATE(696)] = 24417, - [SMALL_STATE(697)] = 24475, - [SMALL_STATE(698)] = 24571, - [SMALL_STATE(699)] = 24629, - [SMALL_STATE(700)] = 24687, - [SMALL_STATE(701)] = 24751, - [SMALL_STATE(702)] = 24815, - [SMALL_STATE(703)] = 24879, - [SMALL_STATE(704)] = 24937, - [SMALL_STATE(705)] = 25001, - [SMALL_STATE(706)] = 25065, - [SMALL_STATE(707)] = 25131, - [SMALL_STATE(708)] = 25195, - [SMALL_STATE(709)] = 25259, - [SMALL_STATE(710)] = 25325, - [SMALL_STATE(711)] = 25421, - [SMALL_STATE(712)] = 25485, - [SMALL_STATE(713)] = 25543, - [SMALL_STATE(714)] = 25615, - [SMALL_STATE(715)] = 25693, - [SMALL_STATE(716)] = 25751, - [SMALL_STATE(717)] = 25815, - [SMALL_STATE(718)] = 25881, - [SMALL_STATE(719)] = 25947, - [SMALL_STATE(720)] = 26005, - [SMALL_STATE(721)] = 26069, - [SMALL_STATE(722)] = 26133, - [SMALL_STATE(723)] = 26197, - [SMALL_STATE(724)] = 26261, - [SMALL_STATE(725)] = 26319, - [SMALL_STATE(726)] = 26415, - [SMALL_STATE(727)] = 26479, - [SMALL_STATE(728)] = 26543, - [SMALL_STATE(729)] = 26613, - [SMALL_STATE(730)] = 26677, - [SMALL_STATE(731)] = 26735, - [SMALL_STATE(732)] = 26793, - [SMALL_STATE(733)] = 26857, - [SMALL_STATE(734)] = 26915, - [SMALL_STATE(735)] = 26979, - [SMALL_STATE(736)] = 27037, - [SMALL_STATE(737)] = 27101, - [SMALL_STATE(738)] = 27159, - [SMALL_STATE(739)] = 27223, - [SMALL_STATE(740)] = 27287, - [SMALL_STATE(741)] = 27345, - [SMALL_STATE(742)] = 27409, - [SMALL_STATE(743)] = 27466, - [SMALL_STATE(744)] = 27523, - [SMALL_STATE(745)] = 27592, - [SMALL_STATE(746)] = 27689, - [SMALL_STATE(747)] = 27782, - [SMALL_STATE(748)] = 27845, - [SMALL_STATE(749)] = 27940, - [SMALL_STATE(750)] = 28033, - [SMALL_STATE(751)] = 28098, - [SMALL_STATE(752)] = 28163, - [SMALL_STATE(753)] = 28220, - [SMALL_STATE(754)] = 28277, - [SMALL_STATE(755)] = 28340, - [SMALL_STATE(756)] = 28403, - [SMALL_STATE(757)] = 28466, - [SMALL_STATE(758)] = 28527, - [SMALL_STATE(759)] = 28638, - [SMALL_STATE(760)] = 28749, - [SMALL_STATE(761)] = 28812, - [SMALL_STATE(762)] = 28875, - [SMALL_STATE(763)] = 28932, - [SMALL_STATE(764)] = 28997, - [SMALL_STATE(765)] = 29060, - [SMALL_STATE(766)] = 29131, - [SMALL_STATE(767)] = 29226, - [SMALL_STATE(768)] = 29291, - [SMALL_STATE(769)] = 29354, - [SMALL_STATE(770)] = 29411, - [SMALL_STATE(771)] = 29468, - [SMALL_STATE(772)] = 29525, - [SMALL_STATE(773)] = 29618, - [SMALL_STATE(774)] = 29681, - [SMALL_STATE(775)] = 29744, - [SMALL_STATE(776)] = 29801, - [SMALL_STATE(777)] = 29872, - [SMALL_STATE(778)] = 29935, - [SMALL_STATE(779)] = 30000, - [SMALL_STATE(780)] = 30063, - [SMALL_STATE(781)] = 30126, - [SMALL_STATE(782)] = 30189, - [SMALL_STATE(783)] = 30252, - [SMALL_STATE(784)] = 30349, - [SMALL_STATE(785)] = 30444, - [SMALL_STATE(786)] = 30501, - [SMALL_STATE(787)] = 30566, - [SMALL_STATE(788)] = 30663, - [SMALL_STATE(789)] = 30774, - [SMALL_STATE(790)] = 30851, - [SMALL_STATE(791)] = 30914, - [SMALL_STATE(792)] = 30971, - [SMALL_STATE(793)] = 31048, - [SMALL_STATE(794)] = 31105, - [SMALL_STATE(795)] = 31162, - [SMALL_STATE(796)] = 31219, - [SMALL_STATE(797)] = 31276, - [SMALL_STATE(798)] = 31339, - [SMALL_STATE(799)] = 31402, - [SMALL_STATE(800)] = 31459, - [SMALL_STATE(801)] = 31516, - [SMALL_STATE(802)] = 31579, - [SMALL_STATE(803)] = 31648, - [SMALL_STATE(804)] = 31759, - [SMALL_STATE(805)] = 31822, - [SMALL_STATE(806)] = 31879, - [SMALL_STATE(807)] = 31990, - [SMALL_STATE(808)] = 32047, - [SMALL_STATE(809)] = 32110, - [SMALL_STATE(810)] = 32173, - [SMALL_STATE(811)] = 32234, - [SMALL_STATE(812)] = 32311, - [SMALL_STATE(813)] = 32422, - [SMALL_STATE(814)] = 32485, - [SMALL_STATE(815)] = 32596, - [SMALL_STATE(816)] = 32673, - [SMALL_STATE(817)] = 32784, - [SMALL_STATE(818)] = 32847, - [SMALL_STATE(819)] = 32910, - [SMALL_STATE(820)] = 32966, - [SMALL_STATE(821)] = 33028, - [SMALL_STATE(822)] = 33102, - [SMALL_STATE(823)] = 33164, - [SMALL_STATE(824)] = 33220, - [SMALL_STATE(825)] = 33276, - [SMALL_STATE(826)] = 33332, - [SMALL_STATE(827)] = 33396, - [SMALL_STATE(828)] = 33456, - [SMALL_STATE(829)] = 33512, - [SMALL_STATE(830)] = 33574, - [SMALL_STATE(831)] = 33630, - [SMALL_STATE(832)] = 33686, - [SMALL_STATE(833)] = 33748, - [SMALL_STATE(834)] = 33810, - [SMALL_STATE(835)] = 33872, - [SMALL_STATE(836)] = 33934, - [SMALL_STATE(837)] = 33990, - [SMALL_STATE(838)] = 34084, - [SMALL_STATE(839)] = 34158, - [SMALL_STATE(840)] = 34214, - [SMALL_STATE(841)] = 34276, - [SMALL_STATE(842)] = 34338, - [SMALL_STATE(843)] = 34400, - [SMALL_STATE(844)] = 34462, - [SMALL_STATE(845)] = 34554, - [SMALL_STATE(846)] = 34646, - [SMALL_STATE(847)] = 34702, - [SMALL_STATE(848)] = 34796, - [SMALL_STATE(849)] = 34860, - [SMALL_STATE(850)] = 34916, - [SMALL_STATE(851)] = 34978, - [SMALL_STATE(852)] = 35040, - [SMALL_STATE(853)] = 35102, - [SMALL_STATE(854)] = 35158, - [SMALL_STATE(855)] = 35214, - [SMALL_STATE(856)] = 35282, - [SMALL_STATE(857)] = 35346, - [SMALL_STATE(858)] = 35408, - [SMALL_STATE(859)] = 35470, - [SMALL_STATE(860)] = 35564, - [SMALL_STATE(861)] = 35628, - [SMALL_STATE(862)] = 35692, - [SMALL_STATE(863)] = 35754, - [SMALL_STATE(864)] = 35816, - [SMALL_STATE(865)] = 35878, - [SMALL_STATE(866)] = 35942, - [SMALL_STATE(867)] = 35998, - [SMALL_STATE(868)] = 36058, - [SMALL_STATE(869)] = 36120, - [SMALL_STATE(870)] = 36176, - [SMALL_STATE(871)] = 36238, - [SMALL_STATE(872)] = 36300, - [SMALL_STATE(873)] = 36374, - [SMALL_STATE(874)] = 36430, - [SMALL_STATE(875)] = 36492, - [SMALL_STATE(876)] = 36554, - [SMALL_STATE(877)] = 36616, - [SMALL_STATE(878)] = 36678, - [SMALL_STATE(879)] = 36740, - [SMALL_STATE(880)] = 36802, - [SMALL_STATE(881)] = 36862, - [SMALL_STATE(882)] = 36938, - [SMALL_STATE(883)] = 37008, - [SMALL_STATE(884)] = 37070, - [SMALL_STATE(885)] = 37132, - [SMALL_STATE(886)] = 37194, - [SMALL_STATE(887)] = 37256, - [SMALL_STATE(888)] = 37312, - [SMALL_STATE(889)] = 37368, - [SMALL_STATE(890)] = 37430, - [SMALL_STATE(891)] = 37494, - [SMALL_STATE(892)] = 37558, - [SMALL_STATE(893)] = 37614, - [SMALL_STATE(894)] = 37670, - [SMALL_STATE(895)] = 37732, - [SMALL_STATE(896)] = 37794, - [SMALL_STATE(897)] = 37856, - [SMALL_STATE(898)] = 37918, - [SMALL_STATE(899)] = 37974, - [SMALL_STATE(900)] = 38030, - [SMALL_STATE(901)] = 38098, - [SMALL_STATE(902)] = 38154, - [SMALL_STATE(903)] = 38210, - [SMALL_STATE(904)] = 38266, - [SMALL_STATE(905)] = 38328, - [SMALL_STATE(906)] = 38388, - [SMALL_STATE(907)] = 38450, - [SMALL_STATE(908)] = 38506, - [SMALL_STATE(909)] = 38576, - [SMALL_STATE(910)] = 38636, - [SMALL_STATE(911)] = 38698, - [SMALL_STATE(912)] = 38792, - [SMALL_STATE(913)] = 38854, - [SMALL_STATE(914)] = 38910, - [SMALL_STATE(915)] = 39004, - [SMALL_STATE(916)] = 39060, - [SMALL_STATE(917)] = 39122, - [SMALL_STATE(918)] = 39186, - [SMALL_STATE(919)] = 39248, - [SMALL_STATE(920)] = 39308, - [SMALL_STATE(921)] = 39364, - [SMALL_STATE(922)] = 39438, - [SMALL_STATE(923)] = 39502, - [SMALL_STATE(924)] = 39558, - [SMALL_STATE(925)] = 39622, - [SMALL_STATE(926)] = 39684, - [SMALL_STATE(927)] = 39746, - [SMALL_STATE(928)] = 39808, - [SMALL_STATE(929)] = 39870, - [SMALL_STATE(930)] = 39926, - [SMALL_STATE(931)] = 39988, - [SMALL_STATE(932)] = 40044, - [SMALL_STATE(933)] = 40100, - [SMALL_STATE(934)] = 40176, - [SMALL_STATE(935)] = 40232, - [SMALL_STATE(936)] = 40294, - [SMALL_STATE(937)] = 40350, - [SMALL_STATE(938)] = 40406, - [SMALL_STATE(939)] = 40462, - [SMALL_STATE(940)] = 40518, - [SMALL_STATE(941)] = 40574, - [SMALL_STATE(942)] = 40638, - [SMALL_STATE(943)] = 40694, - [SMALL_STATE(944)] = 40749, - [SMALL_STATE(945)] = 40810, - [SMALL_STATE(946)] = 40865, - [SMALL_STATE(947)] = 40926, - [SMALL_STATE(948)] = 40987, - [SMALL_STATE(949)] = 41046, - [SMALL_STATE(950)] = 41101, - [SMALL_STATE(951)] = 41164, - [SMALL_STATE(952)] = 41223, - [SMALL_STATE(953)] = 41284, - [SMALL_STATE(954)] = 41339, - [SMALL_STATE(955)] = 41394, - [SMALL_STATE(956)] = 41449, - [SMALL_STATE(957)] = 41510, - [SMALL_STATE(958)] = 41573, - [SMALL_STATE(959)] = 41628, - [SMALL_STATE(960)] = 41683, - [SMALL_STATE(961)] = 41744, - [SMALL_STATE(962)] = 41805, - [SMALL_STATE(963)] = 41868, - [SMALL_STATE(964)] = 41929, - [SMALL_STATE(965)] = 41990, - [SMALL_STATE(966)] = 42051, - [SMALL_STATE(967)] = 42112, - [SMALL_STATE(968)] = 42167, - [SMALL_STATE(969)] = 42228, - [SMALL_STATE(970)] = 42287, - [SMALL_STATE(971)] = 42342, - [SMALL_STATE(972)] = 42403, - [SMALL_STATE(973)] = 42466, - [SMALL_STATE(974)] = 42529, - [SMALL_STATE(975)] = 42592, - [SMALL_STATE(976)] = 42655, - [SMALL_STATE(977)] = 42716, - [SMALL_STATE(978)] = 42771, - [SMALL_STATE(979)] = 42826, - [SMALL_STATE(980)] = 42881, - [SMALL_STATE(981)] = 42936, - [SMALL_STATE(982)] = 42991, - [SMALL_STATE(983)] = 43058, - [SMALL_STATE(984)] = 43119, - [SMALL_STATE(985)] = 43182, - [SMALL_STATE(986)] = 43241, - [SMALL_STATE(987)] = 43304, - [SMALL_STATE(988)] = 43363, - [SMALL_STATE(989)] = 43424, - [SMALL_STATE(990)] = 43485, - [SMALL_STATE(991)] = 43546, - [SMALL_STATE(992)] = 43607, - [SMALL_STATE(993)] = 43666, - [SMALL_STATE(994)] = 43721, - [SMALL_STATE(995)] = 43776, - [SMALL_STATE(996)] = 43837, - [SMALL_STATE(997)] = 43892, - [SMALL_STATE(998)] = 43955, - [SMALL_STATE(999)] = 44016, - [SMALL_STATE(1000)] = 44071, - [SMALL_STATE(1001)] = 44132, - [SMALL_STATE(1002)] = 44193, - [SMALL_STATE(1003)] = 44254, - [SMALL_STATE(1004)] = 44309, - [SMALL_STATE(1005)] = 44370, - [SMALL_STATE(1006)] = 44431, - [SMALL_STATE(1007)] = 44492, - [SMALL_STATE(1008)] = 44547, - [SMALL_STATE(1009)] = 44608, - [SMALL_STATE(1010)] = 44669, - [SMALL_STATE(1011)] = 44724, - [SMALL_STATE(1012)] = 44785, - [SMALL_STATE(1013)] = 44840, - [SMALL_STATE(1014)] = 44901, - [SMALL_STATE(1015)] = 44956, - [SMALL_STATE(1016)] = 45017, - [SMALL_STATE(1017)] = 45072, - [SMALL_STATE(1018)] = 45165, - [SMALL_STATE(1019)] = 45258, - [SMALL_STATE(1020)] = 45319, - [SMALL_STATE(1021)] = 45374, - [SMALL_STATE(1022)] = 45429, - [SMALL_STATE(1023)] = 45490, - [SMALL_STATE(1024)] = 45551, - [SMALL_STATE(1025)] = 45606, - [SMALL_STATE(1026)] = 45661, - [SMALL_STATE(1027)] = 45724, - [SMALL_STATE(1028)] = 45787, - [SMALL_STATE(1029)] = 45846, - [SMALL_STATE(1030)] = 45901, - [SMALL_STATE(1031)] = 45962, - [SMALL_STATE(1032)] = 46017, - [SMALL_STATE(1033)] = 46072, - [SMALL_STATE(1034)] = 46127, - [SMALL_STATE(1035)] = 46182, - [SMALL_STATE(1036)] = 46237, - [SMALL_STATE(1037)] = 46292, - [SMALL_STATE(1038)] = 46355, - [SMALL_STATE(1039)] = 46410, - [SMALL_STATE(1040)] = 46473, - [SMALL_STATE(1041)] = 46534, - [SMALL_STATE(1042)] = 46589, - [SMALL_STATE(1043)] = 46644, - [SMALL_STATE(1044)] = 46705, - [SMALL_STATE(1045)] = 46760, - [SMALL_STATE(1046)] = 46815, - [SMALL_STATE(1047)] = 46870, - [SMALL_STATE(1048)] = 46925, - [SMALL_STATE(1049)] = 46980, - [SMALL_STATE(1050)] = 47039, - [SMALL_STATE(1051)] = 47100, - [SMALL_STATE(1052)] = 47155, - [SMALL_STATE(1053)] = 47209, - [SMALL_STATE(1054)] = 47267, - [SMALL_STATE(1055)] = 47327, - [SMALL_STATE(1056)] = 47387, - [SMALL_STATE(1057)] = 47441, - [SMALL_STATE(1058)] = 47495, - [SMALL_STATE(1059)] = 47555, - [SMALL_STATE(1060)] = 47609, - [SMALL_STATE(1061)] = 47663, - [SMALL_STATE(1062)] = 47723, - [SMALL_STATE(1063)] = 47777, - [SMALL_STATE(1064)] = 47837, - [SMALL_STATE(1065)] = 47897, - [SMALL_STATE(1066)] = 47951, - [SMALL_STATE(1067)] = 48005, - [SMALL_STATE(1068)] = 48065, - [SMALL_STATE(1069)] = 48125, - [SMALL_STATE(1070)] = 48185, - [SMALL_STATE(1071)] = 48239, - [SMALL_STATE(1072)] = 48299, - [SMALL_STATE(1073)] = 48353, - [SMALL_STATE(1074)] = 48413, - [SMALL_STATE(1075)] = 48473, - [SMALL_STATE(1076)] = 48527, - [SMALL_STATE(1077)] = 48587, - [SMALL_STATE(1078)] = 48645, - [SMALL_STATE(1079)] = 48699, - [SMALL_STATE(1080)] = 48757, - [SMALL_STATE(1081)] = 48811, - [SMALL_STATE(1082)] = 48869, - [SMALL_STATE(1083)] = 48929, - [SMALL_STATE(1084)] = 48989, - [SMALL_STATE(1085)] = 49047, - [SMALL_STATE(1086)] = 49107, - [SMALL_STATE(1087)] = 49167, - [SMALL_STATE(1088)] = 49227, - [SMALL_STATE(1089)] = 49281, - [SMALL_STATE(1090)] = 49339, - [SMALL_STATE(1091)] = 49399, - [SMALL_STATE(1092)] = 49459, - [SMALL_STATE(1093)] = 49519, - [SMALL_STATE(1094)] = 49579, - [SMALL_STATE(1095)] = 49633, - [SMALL_STATE(1096)] = 49693, - [SMALL_STATE(1097)] = 49751, - [SMALL_STATE(1098)] = 49809, - [SMALL_STATE(1099)] = 49863, - [SMALL_STATE(1100)] = 49917, - [SMALL_STATE(1101)] = 49977, - [SMALL_STATE(1102)] = 50031, - [SMALL_STATE(1103)] = 50091, - [SMALL_STATE(1104)] = 50145, - [SMALL_STATE(1105)] = 50199, - [SMALL_STATE(1106)] = 50259, - [SMALL_STATE(1107)] = 50319, - [SMALL_STATE(1108)] = 50373, - [SMALL_STATE(1109)] = 50431, - [SMALL_STATE(1110)] = 50489, - [SMALL_STATE(1111)] = 50547, - [SMALL_STATE(1112)] = 50607, - [SMALL_STATE(1113)] = 50661, - [SMALL_STATE(1114)] = 50715, - [SMALL_STATE(1115)] = 50775, - [SMALL_STATE(1116)] = 50829, - [SMALL_STATE(1117)] = 50889, - [SMALL_STATE(1118)] = 50949, - [SMALL_STATE(1119)] = 51009, - [SMALL_STATE(1120)] = 51063, - [SMALL_STATE(1121)] = 51117, - [SMALL_STATE(1122)] = 51171, - [SMALL_STATE(1123)] = 51229, - [SMALL_STATE(1124)] = 51283, - [SMALL_STATE(1125)] = 51337, - [SMALL_STATE(1126)] = 51397, - [SMALL_STATE(1127)] = 51457, - [SMALL_STATE(1128)] = 51511, - [SMALL_STATE(1129)] = 51571, - [SMALL_STATE(1130)] = 51625, - [SMALL_STATE(1131)] = 51683, - [SMALL_STATE(1132)] = 51737, - [SMALL_STATE(1133)] = 51797, - [SMALL_STATE(1134)] = 51851, - [SMALL_STATE(1135)] = 51911, - [SMALL_STATE(1136)] = 51965, - [SMALL_STATE(1137)] = 52025, - [SMALL_STATE(1138)] = 52085, - [SMALL_STATE(1139)] = 52143, - [SMALL_STATE(1140)] = 52203, - [SMALL_STATE(1141)] = 52261, - [SMALL_STATE(1142)] = 52315, - [SMALL_STATE(1143)] = 52375, - [SMALL_STATE(1144)] = 52429, - [SMALL_STATE(1145)] = 52489, - [SMALL_STATE(1146)] = 52543, - [SMALL_STATE(1147)] = 52603, - [SMALL_STATE(1148)] = 52669, - [SMALL_STATE(1149)] = 52727, - [SMALL_STATE(1150)] = 52781, - [SMALL_STATE(1151)] = 52841, - [SMALL_STATE(1152)] = 52895, - [SMALL_STATE(1153)] = 52949, - [SMALL_STATE(1154)] = 53003, - [SMALL_STATE(1155)] = 53057, - [SMALL_STATE(1156)] = 53117, - [SMALL_STATE(1157)] = 53177, - [SMALL_STATE(1158)] = 53231, - [SMALL_STATE(1159)] = 53291, - [SMALL_STATE(1160)] = 53345, - [SMALL_STATE(1161)] = 53407, - [SMALL_STATE(1162)] = 53469, - [SMALL_STATE(1163)] = 53527, - [SMALL_STATE(1164)] = 53581, - [SMALL_STATE(1165)] = 53635, - [SMALL_STATE(1166)] = 53695, - [SMALL_STATE(1167)] = 53753, - [SMALL_STATE(1168)] = 53807, - [SMALL_STATE(1169)] = 53867, - [SMALL_STATE(1170)] = 53921, - [SMALL_STATE(1171)] = 53975, - [SMALL_STATE(1172)] = 54029, - [SMALL_STATE(1173)] = 54083, - [SMALL_STATE(1174)] = 54143, - [SMALL_STATE(1175)] = 54203, - [SMALL_STATE(1176)] = 54263, - [SMALL_STATE(1177)] = 54317, - [SMALL_STATE(1178)] = 54377, - [SMALL_STATE(1179)] = 54431, - [SMALL_STATE(1180)] = 54485, - [SMALL_STATE(1181)] = 54539, - [SMALL_STATE(1182)] = 54593, - [SMALL_STATE(1183)] = 54647, - [SMALL_STATE(1184)] = 54701, - [SMALL_STATE(1185)] = 54761, - [SMALL_STATE(1186)] = 54821, - [SMALL_STATE(1187)] = 54881, - [SMALL_STATE(1188)] = 54935, - [SMALL_STATE(1189)] = 54989, - [SMALL_STATE(1190)] = 55043, - [SMALL_STATE(1191)] = 55097, - [SMALL_STATE(1192)] = 55151, - [SMALL_STATE(1193)] = 55205, - [SMALL_STATE(1194)] = 55259, - [SMALL_STATE(1195)] = 55313, - [SMALL_STATE(1196)] = 55366, - [SMALL_STATE(1197)] = 55419, - [SMALL_STATE(1198)] = 55478, - [SMALL_STATE(1199)] = 55531, - [SMALL_STATE(1200)] = 55588, - [SMALL_STATE(1201)] = 55647, - [SMALL_STATE(1202)] = 55706, - [SMALL_STATE(1203)] = 55763, - [SMALL_STATE(1204)] = 55816, - [SMALL_STATE(1205)] = 55869, - [SMALL_STATE(1206)] = 55922, - [SMALL_STATE(1207)] = 55975, - [SMALL_STATE(1208)] = 56028, - [SMALL_STATE(1209)] = 56081, - [SMALL_STATE(1210)] = 56138, - [SMALL_STATE(1211)] = 56195, - [SMALL_STATE(1212)] = 56248, - [SMALL_STATE(1213)] = 56305, - [SMALL_STATE(1214)] = 56358, - [SMALL_STATE(1215)] = 56411, - [SMALL_STATE(1216)] = 56470, - [SMALL_STATE(1217)] = 56535, - [SMALL_STATE(1218)] = 56592, - [SMALL_STATE(1219)] = 56651, - [SMALL_STATE(1220)] = 56710, - [SMALL_STATE(1221)] = 56763, - [SMALL_STATE(1222)] = 56816, - [SMALL_STATE(1223)] = 56875, - [SMALL_STATE(1224)] = 56934, - [SMALL_STATE(1225)] = 56993, - [SMALL_STATE(1226)] = 57052, - [SMALL_STATE(1227)] = 57109, - [SMALL_STATE(1228)] = 57162, - [SMALL_STATE(1229)] = 57215, - [SMALL_STATE(1230)] = 57268, - [SMALL_STATE(1231)] = 57321, - [SMALL_STATE(1232)] = 57380, - [SMALL_STATE(1233)] = 57439, - [SMALL_STATE(1234)] = 57492, - [SMALL_STATE(1235)] = 57545, - [SMALL_STATE(1236)] = 57598, - [SMALL_STATE(1237)] = 57665, - [SMALL_STATE(1238)] = 57718, - [SMALL_STATE(1239)] = 57771, - [SMALL_STATE(1240)] = 57824, - [SMALL_STATE(1241)] = 57883, - [SMALL_STATE(1242)] = 57942, - [SMALL_STATE(1243)] = 58001, - [SMALL_STATE(1244)] = 58060, - [SMALL_STATE(1245)] = 58119, - [SMALL_STATE(1246)] = 58178, - [SMALL_STATE(1247)] = 58231, - [SMALL_STATE(1248)] = 58284, - [SMALL_STATE(1249)] = 58337, - [SMALL_STATE(1250)] = 58390, - [SMALL_STATE(1251)] = 58449, - [SMALL_STATE(1252)] = 58502, - [SMALL_STATE(1253)] = 58555, - [SMALL_STATE(1254)] = 58608, - [SMALL_STATE(1255)] = 58661, - [SMALL_STATE(1256)] = 58714, - [SMALL_STATE(1257)] = 58767, - [SMALL_STATE(1258)] = 58820, - [SMALL_STATE(1259)] = 58873, - [SMALL_STATE(1260)] = 58926, - [SMALL_STATE(1261)] = 58979, - [SMALL_STATE(1262)] = 59032, - [SMALL_STATE(1263)] = 59085, - [SMALL_STATE(1264)] = 59144, - [SMALL_STATE(1265)] = 59197, - [SMALL_STATE(1266)] = 59300, - [SMALL_STATE(1267)] = 59353, - [SMALL_STATE(1268)] = 59412, - [SMALL_STATE(1269)] = 59465, - [SMALL_STATE(1270)] = 59518, - [SMALL_STATE(1271)] = 59571, - [SMALL_STATE(1272)] = 59624, - [SMALL_STATE(1273)] = 59683, - [SMALL_STATE(1274)] = 59740, - [SMALL_STATE(1275)] = 59793, - [SMALL_STATE(1276)] = 59846, - [SMALL_STATE(1277)] = 59905, - [SMALL_STATE(1278)] = 59958, - [SMALL_STATE(1279)] = 60017, - [SMALL_STATE(1280)] = 60120, - [SMALL_STATE(1281)] = 60173, - [SMALL_STATE(1282)] = 60230, - [SMALL_STATE(1283)] = 60283, - [SMALL_STATE(1284)] = 60336, - [SMALL_STATE(1285)] = 60389, - [SMALL_STATE(1286)] = 60442, - [SMALL_STATE(1287)] = 60495, - [SMALL_STATE(1288)] = 60548, - [SMALL_STATE(1289)] = 60601, - [SMALL_STATE(1290)] = 60666, - [SMALL_STATE(1291)] = 60719, - [SMALL_STATE(1292)] = 60772, - [SMALL_STATE(1293)] = 60825, - [SMALL_STATE(1294)] = 60884, - [SMALL_STATE(1295)] = 60937, - [SMALL_STATE(1296)] = 60990, - [SMALL_STATE(1297)] = 61049, - [SMALL_STATE(1298)] = 61108, - [SMALL_STATE(1299)] = 61161, - [SMALL_STATE(1300)] = 61214, - [SMALL_STATE(1301)] = 61267, - [SMALL_STATE(1302)] = 61320, - [SMALL_STATE(1303)] = 61379, - [SMALL_STATE(1304)] = 61432, - [SMALL_STATE(1305)] = 61491, - [SMALL_STATE(1306)] = 61544, - [SMALL_STATE(1307)] = 61603, - [SMALL_STATE(1308)] = 61662, - [SMALL_STATE(1309)] = 61721, - [SMALL_STATE(1310)] = 61780, - [SMALL_STATE(1311)] = 61833, - [SMALL_STATE(1312)] = 61886, - [SMALL_STATE(1313)] = 61939, - [SMALL_STATE(1314)] = 61992, - [SMALL_STATE(1315)] = 62045, - [SMALL_STATE(1316)] = 62098, - [SMALL_STATE(1317)] = 62151, - [SMALL_STATE(1318)] = 62210, - [SMALL_STATE(1319)] = 62269, - [SMALL_STATE(1320)] = 62328, - [SMALL_STATE(1321)] = 62387, - [SMALL_STATE(1322)] = 62440, - [SMALL_STATE(1323)] = 62493, - [SMALL_STATE(1324)] = 62552, - [SMALL_STATE(1325)] = 62605, - [SMALL_STATE(1326)] = 62658, - [SMALL_STATE(1327)] = 62711, - [SMALL_STATE(1328)] = 62764, - [SMALL_STATE(1329)] = 62817, - [SMALL_STATE(1330)] = 62906, - [SMALL_STATE(1331)] = 62959, - [SMALL_STATE(1332)] = 63012, - [SMALL_STATE(1333)] = 63065, - [SMALL_STATE(1334)] = 63154, - [SMALL_STATE(1335)] = 63207, - [SMALL_STATE(1336)] = 63260, - [SMALL_STATE(1337)] = 63313, - [SMALL_STATE(1338)] = 63416, - [SMALL_STATE(1339)] = 63475, - [SMALL_STATE(1340)] = 63528, - [SMALL_STATE(1341)] = 63581, - [SMALL_STATE(1342)] = 63634, - [SMALL_STATE(1343)] = 63687, - [SMALL_STATE(1344)] = 63740, - [SMALL_STATE(1345)] = 63801, - [SMALL_STATE(1346)] = 63854, - [SMALL_STATE(1347)] = 63915, - [SMALL_STATE(1348)] = 63968, - [SMALL_STATE(1349)] = 64021, - [SMALL_STATE(1350)] = 64074, - [SMALL_STATE(1351)] = 64139, - [SMALL_STATE(1352)] = 64192, - [SMALL_STATE(1353)] = 64245, - [SMALL_STATE(1354)] = 64298, - [SMALL_STATE(1355)] = 64357, - [SMALL_STATE(1356)] = 64416, - [SMALL_STATE(1357)] = 64469, - [SMALL_STATE(1358)] = 64522, - [SMALL_STATE(1359)] = 64575, - [SMALL_STATE(1360)] = 64678, - [SMALL_STATE(1361)] = 64731, - [SMALL_STATE(1362)] = 64784, - [SMALL_STATE(1363)] = 64837, - [SMALL_STATE(1364)] = 64890, - [SMALL_STATE(1365)] = 64943, - [SMALL_STATE(1366)] = 64996, - [SMALL_STATE(1367)] = 65049, - [SMALL_STATE(1368)] = 65102, - [SMALL_STATE(1369)] = 65155, - [SMALL_STATE(1370)] = 65244, - [SMALL_STATE(1371)] = 65297, - [SMALL_STATE(1372)] = 65350, - [SMALL_STATE(1373)] = 65419, - [SMALL_STATE(1374)] = 65488, - [SMALL_STATE(1375)] = 65541, - [SMALL_STATE(1376)] = 65644, - [SMALL_STATE(1377)] = 65703, - [SMALL_STATE(1378)] = 65756, - [SMALL_STATE(1379)] = 65859, - [SMALL_STATE(1380)] = 65912, - [SMALL_STATE(1381)] = 65965, - [SMALL_STATE(1382)] = 66068, - [SMALL_STATE(1383)] = 66121, - [SMALL_STATE(1384)] = 66174, - [SMALL_STATE(1385)] = 66231, - [SMALL_STATE(1386)] = 66284, - [SMALL_STATE(1387)] = 66341, - [SMALL_STATE(1388)] = 66394, - [SMALL_STATE(1389)] = 66447, - [SMALL_STATE(1390)] = 66500, - [SMALL_STATE(1391)] = 66553, - [SMALL_STATE(1392)] = 66606, - [SMALL_STATE(1393)] = 66663, - [SMALL_STATE(1394)] = 66716, - [SMALL_STATE(1395)] = 66773, - [SMALL_STATE(1396)] = 66826, - [SMALL_STATE(1397)] = 66879, - [SMALL_STATE(1398)] = 66936, - [SMALL_STATE(1399)] = 66989, - [SMALL_STATE(1400)] = 67042, - [SMALL_STATE(1401)] = 67095, - [SMALL_STATE(1402)] = 67148, - [SMALL_STATE(1403)] = 67207, - [SMALL_STATE(1404)] = 67260, - [SMALL_STATE(1405)] = 67313, - [SMALL_STATE(1406)] = 67366, - [SMALL_STATE(1407)] = 67466, - [SMALL_STATE(1408)] = 67524, - [SMALL_STATE(1409)] = 67582, - [SMALL_STATE(1410)] = 67634, - [SMALL_STATE(1411)] = 67724, - [SMALL_STATE(1412)] = 67776, - [SMALL_STATE(1413)] = 67832, - [SMALL_STATE(1414)] = 67884, - [SMALL_STATE(1415)] = 67940, - [SMALL_STATE(1416)] = 67996, - [SMALL_STATE(1417)] = 68052, - [SMALL_STATE(1418)] = 68152, - [SMALL_STATE(1419)] = 68204, - [SMALL_STATE(1420)] = 68304, - [SMALL_STATE(1421)] = 68360, - [SMALL_STATE(1422)] = 68418, - [SMALL_STATE(1423)] = 68474, - [SMALL_STATE(1424)] = 68542, - [SMALL_STATE(1425)] = 68642, - [SMALL_STATE(1426)] = 68694, - [SMALL_STATE(1427)] = 68746, - [SMALL_STATE(1428)] = 68798, - [SMALL_STATE(1429)] = 68850, - [SMALL_STATE(1430)] = 68902, - [SMALL_STATE(1431)] = 68958, - [SMALL_STATE(1432)] = 69010, - [SMALL_STATE(1433)] = 69062, - [SMALL_STATE(1434)] = 69118, - [SMALL_STATE(1435)] = 69176, - [SMALL_STATE(1436)] = 69228, - [SMALL_STATE(1437)] = 69280, - [SMALL_STATE(1438)] = 69332, - [SMALL_STATE(1439)] = 69384, - [SMALL_STATE(1440)] = 69484, - [SMALL_STATE(1441)] = 69536, - [SMALL_STATE(1442)] = 69592, - [SMALL_STATE(1443)] = 69648, - [SMALL_STATE(1444)] = 69706, - [SMALL_STATE(1445)] = 69762, - [SMALL_STATE(1446)] = 69818, - [SMALL_STATE(1447)] = 69918, - [SMALL_STATE(1448)] = 70006, - [SMALL_STATE(1449)] = 70064, - [SMALL_STATE(1450)] = 70122, - [SMALL_STATE(1451)] = 70210, - [SMALL_STATE(1452)] = 70262, - [SMALL_STATE(1453)] = 70320, - [SMALL_STATE(1454)] = 70378, - [SMALL_STATE(1455)] = 70436, - [SMALL_STATE(1456)] = 70488, - [SMALL_STATE(1457)] = 70544, - [SMALL_STATE(1458)] = 70596, - [SMALL_STATE(1459)] = 70654, - [SMALL_STATE(1460)] = 70706, - [SMALL_STATE(1461)] = 70758, - [SMALL_STATE(1462)] = 70818, - [SMALL_STATE(1463)] = 70870, - [SMALL_STATE(1464)] = 70928, - [SMALL_STATE(1465)] = 70980, - [SMALL_STATE(1466)] = 71032, - [SMALL_STATE(1467)] = 71084, - [SMALL_STATE(1468)] = 71136, - [SMALL_STATE(1469)] = 71188, - [SMALL_STATE(1470)] = 71246, - [SMALL_STATE(1471)] = 71298, - [SMALL_STATE(1472)] = 71356, - [SMALL_STATE(1473)] = 71414, - [SMALL_STATE(1474)] = 71472, - [SMALL_STATE(1475)] = 71532, - [SMALL_STATE(1476)] = 71584, - [SMALL_STATE(1477)] = 71636, - [SMALL_STATE(1478)] = 71688, - [SMALL_STATE(1479)] = 71740, - [SMALL_STATE(1480)] = 71792, - [SMALL_STATE(1481)] = 71844, - [SMALL_STATE(1482)] = 71896, - [SMALL_STATE(1483)] = 71948, - [SMALL_STATE(1484)] = 72048, - [SMALL_STATE(1485)] = 72104, - [SMALL_STATE(1486)] = 72162, - [SMALL_STATE(1487)] = 72220, - [SMALL_STATE(1488)] = 72276, - [SMALL_STATE(1489)] = 72332, - [SMALL_STATE(1490)] = 72384, - [SMALL_STATE(1491)] = 72436, - [SMALL_STATE(1492)] = 72536, - [SMALL_STATE(1493)] = 72592, - [SMALL_STATE(1494)] = 72650, - [SMALL_STATE(1495)] = 72708, - [SMALL_STATE(1496)] = 72760, - [SMALL_STATE(1497)] = 72816, - [SMALL_STATE(1498)] = 72874, - [SMALL_STATE(1499)] = 72932, - [SMALL_STATE(1500)] = 72988, - [SMALL_STATE(1501)] = 73046, - [SMALL_STATE(1502)] = 73104, - [SMALL_STATE(1503)] = 73162, - [SMALL_STATE(1504)] = 73218, - [SMALL_STATE(1505)] = 73270, - [SMALL_STATE(1506)] = 73328, - [SMALL_STATE(1507)] = 73380, - [SMALL_STATE(1508)] = 73432, - [SMALL_STATE(1509)] = 73490, - [SMALL_STATE(1510)] = 73548, - [SMALL_STATE(1511)] = 73606, - [SMALL_STATE(1512)] = 73664, - [SMALL_STATE(1513)] = 73716, - [SMALL_STATE(1514)] = 73768, - [SMALL_STATE(1515)] = 73820, - [SMALL_STATE(1516)] = 73876, - [SMALL_STATE(1517)] = 73928, - [SMALL_STATE(1518)] = 73980, - [SMALL_STATE(1519)] = 74032, - [SMALL_STATE(1520)] = 74084, - [SMALL_STATE(1521)] = 74136, - [SMALL_STATE(1522)] = 74194, - [SMALL_STATE(1523)] = 74246, - [SMALL_STATE(1524)] = 74316, - [SMALL_STATE(1525)] = 74372, - [SMALL_STATE(1526)] = 74424, - [SMALL_STATE(1527)] = 74476, - [SMALL_STATE(1528)] = 74536, - [SMALL_STATE(1529)] = 74594, - [SMALL_STATE(1530)] = 74646, - [SMALL_STATE(1531)] = 74702, - [SMALL_STATE(1532)] = 74802, - [SMALL_STATE(1533)] = 74854, - [SMALL_STATE(1534)] = 74906, - [SMALL_STATE(1535)] = 74958, - [SMALL_STATE(1536)] = 75010, - [SMALL_STATE(1537)] = 75074, - [SMALL_STATE(1538)] = 75126, - [SMALL_STATE(1539)] = 75184, - [SMALL_STATE(1540)] = 75236, - [SMALL_STATE(1541)] = 75288, - [SMALL_STATE(1542)] = 75344, - [SMALL_STATE(1543)] = 75400, - [SMALL_STATE(1544)] = 75452, - [SMALL_STATE(1545)] = 75504, - [SMALL_STATE(1546)] = 75560, - [SMALL_STATE(1547)] = 75612, - [SMALL_STATE(1548)] = 75668, - [SMALL_STATE(1549)] = 75720, - [SMALL_STATE(1550)] = 75776, - [SMALL_STATE(1551)] = 75876, - [SMALL_STATE(1552)] = 75928, - [SMALL_STATE(1553)] = 75984, - [SMALL_STATE(1554)] = 76036, - [SMALL_STATE(1555)] = 76088, - [SMALL_STATE(1556)] = 76140, - [SMALL_STATE(1557)] = 76192, - [SMALL_STATE(1558)] = 76248, - [SMALL_STATE(1559)] = 76299, - [SMALL_STATE(1560)] = 76360, - [SMALL_STATE(1561)] = 76421, - [SMALL_STATE(1562)] = 76472, - [SMALL_STATE(1563)] = 76533, - [SMALL_STATE(1564)] = 76584, - [SMALL_STATE(1565)] = 76645, - [SMALL_STATE(1566)] = 76742, - [SMALL_STATE(1567)] = 76803, - [SMALL_STATE(1568)] = 76854, - [SMALL_STATE(1569)] = 76915, - [SMALL_STATE(1570)] = 76972, - [SMALL_STATE(1571)] = 77023, - [SMALL_STATE(1572)] = 77084, - [SMALL_STATE(1573)] = 77135, - [SMALL_STATE(1574)] = 77232, - [SMALL_STATE(1575)] = 77329, - [SMALL_STATE(1576)] = 77426, - [SMALL_STATE(1577)] = 77481, - [SMALL_STATE(1578)] = 77536, - [SMALL_STATE(1579)] = 77633, - [SMALL_STATE(1580)] = 77684, - [SMALL_STATE(1581)] = 77739, - [SMALL_STATE(1582)] = 77790, - [SMALL_STATE(1583)] = 77851, - [SMALL_STATE(1584)] = 77902, - [SMALL_STATE(1585)] = 77953, - [SMALL_STATE(1586)] = 78004, - [SMALL_STATE(1587)] = 78065, - [SMALL_STATE(1588)] = 78126, - [SMALL_STATE(1589)] = 78177, - [SMALL_STATE(1590)] = 78274, - [SMALL_STATE(1591)] = 78335, - [SMALL_STATE(1592)] = 78390, - [SMALL_STATE(1593)] = 78451, - [SMALL_STATE(1594)] = 78502, - [SMALL_STATE(1595)] = 78553, - [SMALL_STATE(1596)] = 78614, - [SMALL_STATE(1597)] = 78671, - [SMALL_STATE(1598)] = 78728, - [SMALL_STATE(1599)] = 78825, - [SMALL_STATE(1600)] = 78922, - [SMALL_STATE(1601)] = 79019, - [SMALL_STATE(1602)] = 79116, - [SMALL_STATE(1603)] = 79213, - [SMALL_STATE(1604)] = 79272, - [SMALL_STATE(1605)] = 79369, - [SMALL_STATE(1606)] = 79420, - [SMALL_STATE(1607)] = 79471, - [SMALL_STATE(1608)] = 79532, - [SMALL_STATE(1609)] = 79593, - [SMALL_STATE(1610)] = 79690, - [SMALL_STATE(1611)] = 79741, - [SMALL_STATE(1612)] = 79838, - [SMALL_STATE(1613)] = 79899, - [SMALL_STATE(1614)] = 79950, - [SMALL_STATE(1615)] = 80047, - [SMALL_STATE(1616)] = 80104, - [SMALL_STATE(1617)] = 80165, - [SMALL_STATE(1618)] = 80222, - [SMALL_STATE(1619)] = 80321, - [SMALL_STATE(1620)] = 80418, - [SMALL_STATE(1621)] = 80479, - [SMALL_STATE(1622)] = 80540, - [SMALL_STATE(1623)] = 80591, - [SMALL_STATE(1624)] = 80688, - [SMALL_STATE(1625)] = 80749, - [SMALL_STATE(1626)] = 80846, - [SMALL_STATE(1627)] = 80907, - [SMALL_STATE(1628)] = 80968, - [SMALL_STATE(1629)] = 81065, - [SMALL_STATE(1630)] = 81120, - [SMALL_STATE(1631)] = 81181, - [SMALL_STATE(1632)] = 81232, - [SMALL_STATE(1633)] = 81331, - [SMALL_STATE(1634)] = 81428, - [SMALL_STATE(1635)] = 81525, - [SMALL_STATE(1636)] = 81622, - [SMALL_STATE(1637)] = 81719, - [SMALL_STATE(1638)] = 81778, - [SMALL_STATE(1639)] = 81875, - [SMALL_STATE(1640)] = 81932, - [SMALL_STATE(1641)] = 81993, - [SMALL_STATE(1642)] = 82050, - [SMALL_STATE(1643)] = 82111, - [SMALL_STATE(1644)] = 82208, - [SMALL_STATE(1645)] = 82269, - [SMALL_STATE(1646)] = 82368, - [SMALL_STATE(1647)] = 82419, - [SMALL_STATE(1648)] = 82480, - [SMALL_STATE(1649)] = 82577, - [SMALL_STATE(1650)] = 82628, - [SMALL_STATE(1651)] = 82683, - [SMALL_STATE(1652)] = 82744, - [SMALL_STATE(1653)] = 82841, - [SMALL_STATE(1654)] = 82892, - [SMALL_STATE(1655)] = 82989, - [SMALL_STATE(1656)] = 83040, - [SMALL_STATE(1657)] = 83091, - [SMALL_STATE(1658)] = 83152, - [SMALL_STATE(1659)] = 83203, - [SMALL_STATE(1660)] = 83264, - [SMALL_STATE(1661)] = 83321, - [SMALL_STATE(1662)] = 83418, - [SMALL_STATE(1663)] = 83515, - [SMALL_STATE(1664)] = 83612, - [SMALL_STATE(1665)] = 83709, - [SMALL_STATE(1666)] = 83806, - [SMALL_STATE(1667)] = 83903, - [SMALL_STATE(1668)] = 83960, - [SMALL_STATE(1669)] = 84057, - [SMALL_STATE(1670)] = 84154, - [SMALL_STATE(1671)] = 84251, - [SMALL_STATE(1672)] = 84348, - [SMALL_STATE(1673)] = 84445, - [SMALL_STATE(1674)] = 84542, - [SMALL_STATE(1675)] = 84639, - [SMALL_STATE(1676)] = 84736, - [SMALL_STATE(1677)] = 84833, - [SMALL_STATE(1678)] = 84930, - [SMALL_STATE(1679)] = 85027, - [SMALL_STATE(1680)] = 85124, - [SMALL_STATE(1681)] = 85221, - [SMALL_STATE(1682)] = 85272, - [SMALL_STATE(1683)] = 85369, - [SMALL_STATE(1684)] = 85430, - [SMALL_STATE(1685)] = 85527, - [SMALL_STATE(1686)] = 85624, - [SMALL_STATE(1687)] = 85721, - [SMALL_STATE(1688)] = 85772, - [SMALL_STATE(1689)] = 85823, - [SMALL_STATE(1690)] = 85922, - [SMALL_STATE(1691)] = 85977, - [SMALL_STATE(1692)] = 86028, - [SMALL_STATE(1693)] = 86089, - [SMALL_STATE(1694)] = 86186, - [SMALL_STATE(1695)] = 86237, - [SMALL_STATE(1696)] = 86334, - [SMALL_STATE(1697)] = 86395, - [SMALL_STATE(1698)] = 86450, - [SMALL_STATE(1699)] = 86501, - [SMALL_STATE(1700)] = 86598, - [SMALL_STATE(1701)] = 86649, - [SMALL_STATE(1702)] = 86700, - [SMALL_STATE(1703)] = 86751, - [SMALL_STATE(1704)] = 86802, - [SMALL_STATE(1705)] = 86853, - [SMALL_STATE(1706)] = 86908, - [SMALL_STATE(1707)] = 86963, - [SMALL_STATE(1708)] = 87018, - [SMALL_STATE(1709)] = 87115, - [SMALL_STATE(1710)] = 87176, - [SMALL_STATE(1711)] = 87227, - [SMALL_STATE(1712)] = 87278, - [SMALL_STATE(1713)] = 87339, - [SMALL_STATE(1714)] = 87394, - [SMALL_STATE(1715)] = 87445, - [SMALL_STATE(1716)] = 87506, - [SMALL_STATE(1717)] = 87561, - [SMALL_STATE(1718)] = 87658, - [SMALL_STATE(1719)] = 87709, - [SMALL_STATE(1720)] = 87806, - [SMALL_STATE(1721)] = 87857, - [SMALL_STATE(1722)] = 87908, - [SMALL_STATE(1723)] = 87959, - [SMALL_STATE(1724)] = 88058, - [SMALL_STATE(1725)] = 88119, - [SMALL_STATE(1726)] = 88180, - [SMALL_STATE(1727)] = 88231, - [SMALL_STATE(1728)] = 88286, - [SMALL_STATE(1729)] = 88337, - [SMALL_STATE(1730)] = 88434, - [SMALL_STATE(1731)] = 88485, - [SMALL_STATE(1732)] = 88582, - [SMALL_STATE(1733)] = 88679, - [SMALL_STATE(1734)] = 88740, - [SMALL_STATE(1735)] = 88791, - [SMALL_STATE(1736)] = 88888, - [SMALL_STATE(1737)] = 88985, - [SMALL_STATE(1738)] = 89082, - [SMALL_STATE(1739)] = 89137, - [SMALL_STATE(1740)] = 89188, - [SMALL_STATE(1741)] = 89285, - [SMALL_STATE(1742)] = 89382, - [SMALL_STATE(1743)] = 89433, - [SMALL_STATE(1744)] = 89494, - [SMALL_STATE(1745)] = 89591, - [SMALL_STATE(1746)] = 89642, - [SMALL_STATE(1747)] = 89739, - [SMALL_STATE(1748)] = 89800, - [SMALL_STATE(1749)] = 89851, - [SMALL_STATE(1750)] = 89906, - [SMALL_STATE(1751)] = 90003, - [SMALL_STATE(1752)] = 90064, - [SMALL_STATE(1753)] = 90125, - [SMALL_STATE(1754)] = 90176, - [SMALL_STATE(1755)] = 90273, - [SMALL_STATE(1756)] = 90334, - [SMALL_STATE(1757)] = 90385, - [SMALL_STATE(1758)] = 90436, - [SMALL_STATE(1759)] = 90487, - [SMALL_STATE(1760)] = 90548, - [SMALL_STATE(1761)] = 90599, - [SMALL_STATE(1762)] = 90650, - [SMALL_STATE(1763)] = 90701, - [SMALL_STATE(1764)] = 90800, - [SMALL_STATE(1765)] = 90861, - [SMALL_STATE(1766)] = 90916, - [SMALL_STATE(1767)] = 91013, - [SMALL_STATE(1768)] = 91068, - [SMALL_STATE(1769)] = 91165, - [SMALL_STATE(1770)] = 91220, - [SMALL_STATE(1771)] = 91317, - [SMALL_STATE(1772)] = 91414, - [SMALL_STATE(1773)] = 91465, - [SMALL_STATE(1774)] = 91516, - [SMALL_STATE(1775)] = 91613, - [SMALL_STATE(1776)] = 91664, - [SMALL_STATE(1777)] = 91715, - [SMALL_STATE(1778)] = 91812, - [SMALL_STATE(1779)] = 91871, - [SMALL_STATE(1780)] = 91932, - [SMALL_STATE(1781)] = 91993, - [SMALL_STATE(1782)] = 92044, - [SMALL_STATE(1783)] = 92095, - [SMALL_STATE(1784)] = 92192, - [SMALL_STATE(1785)] = 92289, - [SMALL_STATE(1786)] = 92348, - [SMALL_STATE(1787)] = 92445, - [SMALL_STATE(1788)] = 92506, - [SMALL_STATE(1789)] = 92603, - [SMALL_STATE(1790)] = 92654, - [SMALL_STATE(1791)] = 92715, - [SMALL_STATE(1792)] = 92812, - [SMALL_STATE(1793)] = 92873, - [SMALL_STATE(1794)] = 92970, - [SMALL_STATE(1795)] = 93067, - [SMALL_STATE(1796)] = 93118, - [SMALL_STATE(1797)] = 93169, - [SMALL_STATE(1798)] = 93230, - [SMALL_STATE(1799)] = 93281, - [SMALL_STATE(1800)] = 93378, - [SMALL_STATE(1801)] = 93475, - [SMALL_STATE(1802)] = 93536, - [SMALL_STATE(1803)] = 93587, - [SMALL_STATE(1804)] = 93684, - [SMALL_STATE(1805)] = 93735, - [SMALL_STATE(1806)] = 93786, - [SMALL_STATE(1807)] = 93847, - [SMALL_STATE(1808)] = 93908, - [SMALL_STATE(1809)] = 94005, - [SMALL_STATE(1810)] = 94102, - [SMALL_STATE(1811)] = 94163, - [SMALL_STATE(1812)] = 94260, - [SMALL_STATE(1813)] = 94357, - [SMALL_STATE(1814)] = 94408, - [SMALL_STATE(1815)] = 94505, - [SMALL_STATE(1816)] = 94556, - [SMALL_STATE(1817)] = 94653, - [SMALL_STATE(1818)] = 94750, - [SMALL_STATE(1819)] = 94847, - [SMALL_STATE(1820)] = 94944, - [SMALL_STATE(1821)] = 95041, - [SMALL_STATE(1822)] = 95092, - [SMALL_STATE(1823)] = 95153, - [SMALL_STATE(1824)] = 95250, - [SMALL_STATE(1825)] = 95347, - [SMALL_STATE(1826)] = 95408, - [SMALL_STATE(1827)] = 95505, - [SMALL_STATE(1828)] = 95602, - [SMALL_STATE(1829)] = 95663, - [SMALL_STATE(1830)] = 95760, - [SMALL_STATE(1831)] = 95857, - [SMALL_STATE(1832)] = 95954, - [SMALL_STATE(1833)] = 96005, - [SMALL_STATE(1834)] = 96056, - [SMALL_STATE(1835)] = 96117, - [SMALL_STATE(1836)] = 96214, - [SMALL_STATE(1837)] = 96311, - [SMALL_STATE(1838)] = 96362, - [SMALL_STATE(1839)] = 96459, - [SMALL_STATE(1840)] = 96556, - [SMALL_STATE(1841)] = 96653, - [SMALL_STATE(1842)] = 96704, - [SMALL_STATE(1843)] = 96765, - [SMALL_STATE(1844)] = 96862, - [SMALL_STATE(1845)] = 96959, - [SMALL_STATE(1846)] = 97010, - [SMALL_STATE(1847)] = 97107, - [SMALL_STATE(1848)] = 97204, - [SMALL_STATE(1849)] = 97301, - [SMALL_STATE(1850)] = 97398, - [SMALL_STATE(1851)] = 97495, - [SMALL_STATE(1852)] = 97592, - [SMALL_STATE(1853)] = 97689, - [SMALL_STATE(1854)] = 97786, - [SMALL_STATE(1855)] = 97883, - [SMALL_STATE(1856)] = 97980, - [SMALL_STATE(1857)] = 98077, - [SMALL_STATE(1858)] = 98174, - [SMALL_STATE(1859)] = 98271, - [SMALL_STATE(1860)] = 98368, - [SMALL_STATE(1861)] = 98465, - [SMALL_STATE(1862)] = 98516, - [SMALL_STATE(1863)] = 98613, - [SMALL_STATE(1864)] = 98710, - [SMALL_STATE(1865)] = 98807, - [SMALL_STATE(1866)] = 98868, - [SMALL_STATE(1867)] = 98919, - [SMALL_STATE(1868)] = 98970, - [SMALL_STATE(1869)] = 99067, - [SMALL_STATE(1870)] = 99164, - [SMALL_STATE(1871)] = 99225, - [SMALL_STATE(1872)] = 99322, - [SMALL_STATE(1873)] = 99419, - [SMALL_STATE(1874)] = 99516, - [SMALL_STATE(1875)] = 99613, - [SMALL_STATE(1876)] = 99669, - [SMALL_STATE(1877)] = 99725, - [SMALL_STATE(1878)] = 99775, - [SMALL_STATE(1879)] = 99831, - [SMALL_STATE(1880)] = 99887, - [SMALL_STATE(1881)] = 99941, - [SMALL_STATE(1882)] = 99997, - [SMALL_STATE(1883)] = 100047, - [SMALL_STATE(1884)] = 100103, - [SMALL_STATE(1885)] = 100159, - [SMALL_STATE(1886)] = 100209, - [SMALL_STATE(1887)] = 100265, - [SMALL_STATE(1888)] = 100315, - [SMALL_STATE(1889)] = 100371, - [SMALL_STATE(1890)] = 100427, - [SMALL_STATE(1891)] = 100485, - [SMALL_STATE(1892)] = 100535, - [SMALL_STATE(1893)] = 100585, - [SMALL_STATE(1894)] = 100639, - [SMALL_STATE(1895)] = 100689, - [SMALL_STATE(1896)] = 100743, - [SMALL_STATE(1897)] = 100797, - [SMALL_STATE(1898)] = 100853, - [SMALL_STATE(1899)] = 100909, - [SMALL_STATE(1900)] = 100965, - [SMALL_STATE(1901)] = 101019, - [SMALL_STATE(1902)] = 101069, - [SMALL_STATE(1903)] = 101125, - [SMALL_STATE(1904)] = 101175, - [SMALL_STATE(1905)] = 101225, - [SMALL_STATE(1906)] = 101281, - [SMALL_STATE(1907)] = 101331, - [SMALL_STATE(1908)] = 101387, - [SMALL_STATE(1909)] = 101437, - [SMALL_STATE(1910)] = 101487, - [SMALL_STATE(1911)] = 101541, - [SMALL_STATE(1912)] = 101591, - [SMALL_STATE(1913)] = 101647, - [SMALL_STATE(1914)] = 101701, - [SMALL_STATE(1915)] = 101751, - [SMALL_STATE(1916)] = 101805, - [SMALL_STATE(1917)] = 101859, - [SMALL_STATE(1918)] = 101913, - [SMALL_STATE(1919)] = 101969, - [SMALL_STATE(1920)] = 102025, - [SMALL_STATE(1921)] = 102081, - [SMALL_STATE(1922)] = 102135, - [SMALL_STATE(1923)] = 102191, - [SMALL_STATE(1924)] = 102245, - [SMALL_STATE(1925)] = 102299, - [SMALL_STATE(1926)] = 102355, - [SMALL_STATE(1927)] = 102409, - [SMALL_STATE(1928)] = 102463, - [SMALL_STATE(1929)] = 102517, - [SMALL_STATE(1930)] = 102571, - [SMALL_STATE(1931)] = 102625, - [SMALL_STATE(1932)] = 102680, - [SMALL_STATE(1933)] = 102735, - [SMALL_STATE(1934)] = 102788, - [SMALL_STATE(1935)] = 102841, - [SMALL_STATE(1936)] = 102936, - [SMALL_STATE(1937)] = 102989, - [SMALL_STATE(1938)] = 103038, - [SMALL_STATE(1939)] = 103093, - [SMALL_STATE(1940)] = 103188, - [SMALL_STATE(1941)] = 103241, - [SMALL_STATE(1942)] = 103290, - [SMALL_STATE(1943)] = 103339, - [SMALL_STATE(1944)] = 103388, - [SMALL_STATE(1945)] = 103483, - [SMALL_STATE(1946)] = 103532, - [SMALL_STATE(1947)] = 103585, - [SMALL_STATE(1948)] = 103638, - [SMALL_STATE(1949)] = 103687, - [SMALL_STATE(1950)] = 103782, - [SMALL_STATE(1951)] = 103837, - [SMALL_STATE(1952)] = 103890, - [SMALL_STATE(1953)] = 103943, - [SMALL_STATE(1954)] = 103996, - [SMALL_STATE(1955)] = 104045, - [SMALL_STATE(1956)] = 104098, - [SMALL_STATE(1957)] = 104153, - [SMALL_STATE(1958)] = 104206, - [SMALL_STATE(1959)] = 104255, - [SMALL_STATE(1960)] = 104350, - [SMALL_STATE(1961)] = 104399, - [SMALL_STATE(1962)] = 104454, - [SMALL_STATE(1963)] = 104549, - [SMALL_STATE(1964)] = 104598, - [SMALL_STATE(1965)] = 104647, - [SMALL_STATE(1966)] = 104700, - [SMALL_STATE(1967)] = 104795, - [SMALL_STATE(1968)] = 104844, - [SMALL_STATE(1969)] = 104897, - [SMALL_STATE(1970)] = 104950, - [SMALL_STATE(1971)] = 104999, - [SMALL_STATE(1972)] = 105048, - [SMALL_STATE(1973)] = 105143, - [SMALL_STATE(1974)] = 105196, - [SMALL_STATE(1975)] = 105245, - [SMALL_STATE(1976)] = 105298, - [SMALL_STATE(1977)] = 105351, - [SMALL_STATE(1978)] = 105404, - [SMALL_STATE(1979)] = 105457, - [SMALL_STATE(1980)] = 105510, - [SMALL_STATE(1981)] = 105559, - [SMALL_STATE(1982)] = 105608, - [SMALL_STATE(1983)] = 105657, - [SMALL_STATE(1984)] = 105706, - [SMALL_STATE(1985)] = 105755, - [SMALL_STATE(1986)] = 105808, - [SMALL_STATE(1987)] = 105863, - [SMALL_STATE(1988)] = 105912, - [SMALL_STATE(1989)] = 105961, - [SMALL_STATE(1990)] = 106010, - [SMALL_STATE(1991)] = 106059, - [SMALL_STATE(1992)] = 106112, - [SMALL_STATE(1993)] = 106161, - [SMALL_STATE(1994)] = 106214, - [SMALL_STATE(1995)] = 106263, - [SMALL_STATE(1996)] = 106312, - [SMALL_STATE(1997)] = 106365, - [SMALL_STATE(1998)] = 106418, - [SMALL_STATE(1999)] = 106471, - [SMALL_STATE(2000)] = 106566, - [SMALL_STATE(2001)] = 106619, - [SMALL_STATE(2002)] = 106714, - [SMALL_STATE(2003)] = 106809, - [SMALL_STATE(2004)] = 106858, - [SMALL_STATE(2005)] = 106913, - [SMALL_STATE(2006)] = 106962, - [SMALL_STATE(2007)] = 107017, - [SMALL_STATE(2008)] = 107072, - [SMALL_STATE(2009)] = 107167, - [SMALL_STATE(2010)] = 107222, - [SMALL_STATE(2011)] = 107275, - [SMALL_STATE(2012)] = 107324, - [SMALL_STATE(2013)] = 107380, - [SMALL_STATE(2014)] = 107428, - [SMALL_STATE(2015)] = 107476, - [SMALL_STATE(2016)] = 107532, - [SMALL_STATE(2017)] = 107580, - [SMALL_STATE(2018)] = 107628, - [SMALL_STATE(2019)] = 107680, - [SMALL_STATE(2020)] = 107732, - [SMALL_STATE(2021)] = 107786, - [SMALL_STATE(2022)] = 107838, - [SMALL_STATE(2023)] = 107886, - [SMALL_STATE(2024)] = 107938, - [SMALL_STATE(2025)] = 107992, - [SMALL_STATE(2026)] = 108040, - [SMALL_STATE(2027)] = 108092, - [SMALL_STATE(2028)] = 108140, - [SMALL_STATE(2029)] = 108194, - [SMALL_STATE(2030)] = 108242, - [SMALL_STATE(2031)] = 108296, - [SMALL_STATE(2032)] = 108344, - [SMALL_STATE(2033)] = 108398, - [SMALL_STATE(2034)] = 108450, - [SMALL_STATE(2035)] = 108502, - [SMALL_STATE(2036)] = 108550, - [SMALL_STATE(2037)] = 108604, - [SMALL_STATE(2038)] = 108652, - [SMALL_STATE(2039)] = 108706, - [SMALL_STATE(2040)] = 108754, - [SMALL_STATE(2041)] = 108802, - [SMALL_STATE(2042)] = 108854, - [SMALL_STATE(2043)] = 108902, - [SMALL_STATE(2044)] = 108956, - [SMALL_STATE(2045)] = 109004, - [SMALL_STATE(2046)] = 109056, - [SMALL_STATE(2047)] = 109104, - [SMALL_STATE(2048)] = 109160, - [SMALL_STATE(2049)] = 109208, - [SMALL_STATE(2050)] = 109260, - [SMALL_STATE(2051)] = 109308, - [SMALL_STATE(2052)] = 109360, - [SMALL_STATE(2053)] = 109416, - [SMALL_STATE(2054)] = 109468, - [SMALL_STATE(2055)] = 109516, - [SMALL_STATE(2056)] = 109568, - [SMALL_STATE(2057)] = 109622, - [SMALL_STATE(2058)] = 109670, - [SMALL_STATE(2059)] = 109718, - [SMALL_STATE(2060)] = 109772, - [SMALL_STATE(2061)] = 109820, - [SMALL_STATE(2062)] = 109868, - [SMALL_STATE(2063)] = 109920, - [SMALL_STATE(2064)] = 109968, - [SMALL_STATE(2065)] = 110016, - [SMALL_STATE(2066)] = 110064, - [SMALL_STATE(2067)] = 110112, - [SMALL_STATE(2068)] = 110168, - [SMALL_STATE(2069)] = 110222, - [SMALL_STATE(2070)] = 110270, - [SMALL_STATE(2071)] = 110324, - [SMALL_STATE(2072)] = 110378, - [SMALL_STATE(2073)] = 110426, - [SMALL_STATE(2074)] = 110474, - [SMALL_STATE(2075)] = 110526, - [SMALL_STATE(2076)] = 110574, - [SMALL_STATE(2077)] = 110628, - [SMALL_STATE(2078)] = 110676, - [SMALL_STATE(2079)] = 110730, - [SMALL_STATE(2080)] = 110782, - [SMALL_STATE(2081)] = 110836, - [SMALL_STATE(2082)] = 110884, - [SMALL_STATE(2083)] = 110936, - [SMALL_STATE(2084)] = 110984, - [SMALL_STATE(2085)] = 111032, - [SMALL_STATE(2086)] = 111080, - [SMALL_STATE(2087)] = 111136, - [SMALL_STATE(2088)] = 111184, - [SMALL_STATE(2089)] = 111232, - [SMALL_STATE(2090)] = 111284, - [SMALL_STATE(2091)] = 111340, - [SMALL_STATE(2092)] = 111388, - [SMALL_STATE(2093)] = 111440, - [SMALL_STATE(2094)] = 111492, - [SMALL_STATE(2095)] = 111542, - [SMALL_STATE(2096)] = 111590, - [SMALL_STATE(2097)] = 111642, - [SMALL_STATE(2098)] = 111690, - [SMALL_STATE(2099)] = 111738, - [SMALL_STATE(2100)] = 111790, - [SMALL_STATE(2101)] = 111846, - [SMALL_STATE(2102)] = 111900, - [SMALL_STATE(2103)] = 111956, - [SMALL_STATE(2104)] = 112004, - [SMALL_STATE(2105)] = 112056, - [SMALL_STATE(2106)] = 112104, - [SMALL_STATE(2107)] = 112152, - [SMALL_STATE(2108)] = 112200, - [SMALL_STATE(2109)] = 112248, - [SMALL_STATE(2110)] = 112300, - [SMALL_STATE(2111)] = 112352, - [SMALL_STATE(2112)] = 112406, - [SMALL_STATE(2113)] = 112458, - [SMALL_STATE(2114)] = 112512, - [SMALL_STATE(2115)] = 112566, - [SMALL_STATE(2116)] = 112622, - [SMALL_STATE(2117)] = 112678, - [SMALL_STATE(2118)] = 112730, - [SMALL_STATE(2119)] = 112786, - [SMALL_STATE(2120)] = 112840, - [SMALL_STATE(2121)] = 112894, - [SMALL_STATE(2122)] = 112942, - [SMALL_STATE(2123)] = 112990, - [SMALL_STATE(2124)] = 113038, - [SMALL_STATE(2125)] = 113086, - [SMALL_STATE(2126)] = 113140, - [SMALL_STATE(2127)] = 113187, - [SMALL_STATE(2128)] = 113234, - [SMALL_STATE(2129)] = 113285, - [SMALL_STATE(2130)] = 113334, - [SMALL_STATE(2131)] = 113381, - [SMALL_STATE(2132)] = 113430, - [SMALL_STATE(2133)] = 113477, - [SMALL_STATE(2134)] = 113524, - [SMALL_STATE(2135)] = 113571, - [SMALL_STATE(2136)] = 113618, - [SMALL_STATE(2137)] = 113665, - [SMALL_STATE(2138)] = 113720, - [SMALL_STATE(2139)] = 113771, - [SMALL_STATE(2140)] = 113822, - [SMALL_STATE(2141)] = 113873, - [SMALL_STATE(2142)] = 113920, - [SMALL_STATE(2143)] = 113971, - [SMALL_STATE(2144)] = 114022, - [SMALL_STATE(2145)] = 114073, - [SMALL_STATE(2146)] = 114120, - [SMALL_STATE(2147)] = 114169, - [SMALL_STATE(2148)] = 114218, - [SMALL_STATE(2149)] = 114265, - [SMALL_STATE(2150)] = 114312, - [SMALL_STATE(2151)] = 114363, - [SMALL_STATE(2152)] = 114412, - [SMALL_STATE(2153)] = 114459, - [SMALL_STATE(2154)] = 114506, - [SMALL_STATE(2155)] = 114557, - [SMALL_STATE(2156)] = 114604, - [SMALL_STATE(2157)] = 114655, - [SMALL_STATE(2158)] = 114702, - [SMALL_STATE(2159)] = 114749, - [SMALL_STATE(2160)] = 114796, - [SMALL_STATE(2161)] = 114843, - [SMALL_STATE(2162)] = 114890, - [SMALL_STATE(2163)] = 114941, - [SMALL_STATE(2164)] = 114988, - [SMALL_STATE(2165)] = 115035, - [SMALL_STATE(2166)] = 115082, - [SMALL_STATE(2167)] = 115133, - [SMALL_STATE(2168)] = 115186, - [SMALL_STATE(2169)] = 115239, - [SMALL_STATE(2170)] = 115286, - [SMALL_STATE(2171)] = 115333, - [SMALL_STATE(2172)] = 115384, - [SMALL_STATE(2173)] = 115435, - [SMALL_STATE(2174)] = 115482, - [SMALL_STATE(2175)] = 115529, - [SMALL_STATE(2176)] = 115576, - [SMALL_STATE(2177)] = 115623, - [SMALL_STATE(2178)] = 115670, - [SMALL_STATE(2179)] = 115717, - [SMALL_STATE(2180)] = 115764, - [SMALL_STATE(2181)] = 115811, - [SMALL_STATE(2182)] = 115858, - [SMALL_STATE(2183)] = 115905, - [SMALL_STATE(2184)] = 115958, - [SMALL_STATE(2185)] = 116011, - [SMALL_STATE(2186)] = 116058, - [SMALL_STATE(2187)] = 116105, - [SMALL_STATE(2188)] = 116152, - [SMALL_STATE(2189)] = 116199, - [SMALL_STATE(2190)] = 116246, - [SMALL_STATE(2191)] = 116293, - [SMALL_STATE(2192)] = 116340, - [SMALL_STATE(2193)] = 116387, - [SMALL_STATE(2194)] = 116434, - [SMALL_STATE(2195)] = 116481, - [SMALL_STATE(2196)] = 116528, - [SMALL_STATE(2197)] = 116575, - [SMALL_STATE(2198)] = 116622, - [SMALL_STATE(2199)] = 116669, - [SMALL_STATE(2200)] = 116716, - [SMALL_STATE(2201)] = 116763, - [SMALL_STATE(2202)] = 116810, - [SMALL_STATE(2203)] = 116857, - [SMALL_STATE(2204)] = 116904, - [SMALL_STATE(2205)] = 116951, - [SMALL_STATE(2206)] = 116998, - [SMALL_STATE(2207)] = 117045, - [SMALL_STATE(2208)] = 117096, - [SMALL_STATE(2209)] = 117143, - [SMALL_STATE(2210)] = 117190, - [SMALL_STATE(2211)] = 117237, - [SMALL_STATE(2212)] = 117284, - [SMALL_STATE(2213)] = 117333, - [SMALL_STATE(2214)] = 117380, - [SMALL_STATE(2215)] = 117431, - [SMALL_STATE(2216)] = 117478, - [SMALL_STATE(2217)] = 117525, - [SMALL_STATE(2218)] = 117572, - [SMALL_STATE(2219)] = 117619, - [SMALL_STATE(2220)] = 117666, - [SMALL_STATE(2221)] = 117713, - [SMALL_STATE(2222)] = 117760, - [SMALL_STATE(2223)] = 117807, - [SMALL_STATE(2224)] = 117854, - [SMALL_STATE(2225)] = 117901, - [SMALL_STATE(2226)] = 117948, - [SMALL_STATE(2227)] = 117995, - [SMALL_STATE(2228)] = 118042, - [SMALL_STATE(2229)] = 118089, - [SMALL_STATE(2230)] = 118140, - [SMALL_STATE(2231)] = 118191, - [SMALL_STATE(2232)] = 118242, - [SMALL_STATE(2233)] = 118289, - [SMALL_STATE(2234)] = 118336, - [SMALL_STATE(2235)] = 118383, - [SMALL_STATE(2236)] = 118430, - [SMALL_STATE(2237)] = 118477, - [SMALL_STATE(2238)] = 118524, - [SMALL_STATE(2239)] = 118571, - [SMALL_STATE(2240)] = 118618, - [SMALL_STATE(2241)] = 118665, - [SMALL_STATE(2242)] = 118714, - [SMALL_STATE(2243)] = 118761, - [SMALL_STATE(2244)] = 118812, - [SMALL_STATE(2245)] = 118859, - [SMALL_STATE(2246)] = 118906, - [SMALL_STATE(2247)] = 118953, - [SMALL_STATE(2248)] = 119000, - [SMALL_STATE(2249)] = 119047, - [SMALL_STATE(2250)] = 119094, - [SMALL_STATE(2251)] = 119141, - [SMALL_STATE(2252)] = 119188, - [SMALL_STATE(2253)] = 119239, - [SMALL_STATE(2254)] = 119286, - [SMALL_STATE(2255)] = 119337, - [SMALL_STATE(2256)] = 119384, - [SMALL_STATE(2257)] = 119431, - [SMALL_STATE(2258)] = 119513, - [SMALL_STATE(2259)] = 119595, - [SMALL_STATE(2260)] = 119641, - [SMALL_STATE(2261)] = 119687, - [SMALL_STATE(2262)] = 119733, - [SMALL_STATE(2263)] = 119815, - [SMALL_STATE(2264)] = 119863, - [SMALL_STATE(2265)] = 119909, - [SMALL_STATE(2266)] = 119955, - [SMALL_STATE(2267)] = 120001, - [SMALL_STATE(2268)] = 120047, - [SMALL_STATE(2269)] = 120093, - [SMALL_STATE(2270)] = 120139, - [SMALL_STATE(2271)] = 120221, - [SMALL_STATE(2272)] = 120267, - [SMALL_STATE(2273)] = 120313, - [SMALL_STATE(2274)] = 120359, - [SMALL_STATE(2275)] = 120405, - [SMALL_STATE(2276)] = 120487, - [SMALL_STATE(2277)] = 120561, - [SMALL_STATE(2278)] = 120617, - [SMALL_STATE(2279)] = 120663, - [SMALL_STATE(2280)] = 120709, - [SMALL_STATE(2281)] = 120755, - [SMALL_STATE(2282)] = 120837, - [SMALL_STATE(2283)] = 120883, - [SMALL_STATE(2284)] = 120965, - [SMALL_STATE(2285)] = 121011, - [SMALL_STATE(2286)] = 121059, - [SMALL_STATE(2287)] = 121109, - [SMALL_STATE(2288)] = 121155, - [SMALL_STATE(2289)] = 121207, - [SMALL_STATE(2290)] = 121253, - [SMALL_STATE(2291)] = 121309, - [SMALL_STATE(2292)] = 121391, - [SMALL_STATE(2293)] = 121445, - [SMALL_STATE(2294)] = 121527, - [SMALL_STATE(2295)] = 121581, - [SMALL_STATE(2296)] = 121627, - [SMALL_STATE(2297)] = 121673, - [SMALL_STATE(2298)] = 121755, - [SMALL_STATE(2299)] = 121805, - [SMALL_STATE(2300)] = 121851, - [SMALL_STATE(2301)] = 121933, - [SMALL_STATE(2302)] = 121987, - [SMALL_STATE(2303)] = 122037, - [SMALL_STATE(2304)] = 122119, - [SMALL_STATE(2305)] = 122165, - [SMALL_STATE(2306)] = 122221, - [SMALL_STATE(2307)] = 122303, - [SMALL_STATE(2308)] = 122385, - [SMALL_STATE(2309)] = 122435, - [SMALL_STATE(2310)] = 122481, - [SMALL_STATE(2311)] = 122541, - [SMALL_STATE(2312)] = 122603, - [SMALL_STATE(2313)] = 122653, - [SMALL_STATE(2314)] = 122703, - [SMALL_STATE(2315)] = 122785, - [SMALL_STATE(2316)] = 122867, - [SMALL_STATE(2317)] = 122913, - [SMALL_STATE(2318)] = 122995, - [SMALL_STATE(2319)] = 123077, - [SMALL_STATE(2320)] = 123125, - [SMALL_STATE(2321)] = 123189, - [SMALL_STATE(2322)] = 123235, - [SMALL_STATE(2323)] = 123281, - [SMALL_STATE(2324)] = 123339, - [SMALL_STATE(2325)] = 123389, - [SMALL_STATE(2326)] = 123471, - [SMALL_STATE(2327)] = 123527, - [SMALL_STATE(2328)] = 123575, - [SMALL_STATE(2329)] = 123657, - [SMALL_STATE(2330)] = 123739, - [SMALL_STATE(2331)] = 123789, - [SMALL_STATE(2332)] = 123855, - [SMALL_STATE(2333)] = 123905, - [SMALL_STATE(2334)] = 123987, - [SMALL_STATE(2335)] = 124043, - [SMALL_STATE(2336)] = 124125, - [SMALL_STATE(2337)] = 124171, - [SMALL_STATE(2338)] = 124239, - [SMALL_STATE(2339)] = 124285, - [SMALL_STATE(2340)] = 124367, - [SMALL_STATE(2341)] = 124413, - [SMALL_STATE(2342)] = 124459, - [SMALL_STATE(2343)] = 124505, - [SMALL_STATE(2344)] = 124555, - [SMALL_STATE(2345)] = 124601, - [SMALL_STATE(2346)] = 124647, - [SMALL_STATE(2347)] = 124693, - [SMALL_STATE(2348)] = 124739, - [SMALL_STATE(2349)] = 124785, - [SMALL_STATE(2350)] = 124831, - [SMALL_STATE(2351)] = 124877, - [SMALL_STATE(2352)] = 124947, - [SMALL_STATE(2353)] = 125001, - [SMALL_STATE(2354)] = 125083, - [SMALL_STATE(2355)] = 125159, - [SMALL_STATE(2356)] = 125205, - [SMALL_STATE(2357)] = 125251, - [SMALL_STATE(2358)] = 125333, - [SMALL_STATE(2359)] = 125379, - [SMALL_STATE(2360)] = 125461, - [SMALL_STATE(2361)] = 125543, - [SMALL_STATE(2362)] = 125615, - [SMALL_STATE(2363)] = 125689, - [SMALL_STATE(2364)] = 125735, - [SMALL_STATE(2365)] = 125817, - [SMALL_STATE(2366)] = 125863, - [SMALL_STATE(2367)] = 125945, - [SMALL_STATE(2368)] = 125991, - [SMALL_STATE(2369)] = 126037, - [SMALL_STATE(2370)] = 126083, - [SMALL_STATE(2371)] = 126129, - [SMALL_STATE(2372)] = 126175, - [SMALL_STATE(2373)] = 126253, - [SMALL_STATE(2374)] = 126299, - [SMALL_STATE(2375)] = 126345, - [SMALL_STATE(2376)] = 126393, - [SMALL_STATE(2377)] = 126443, - [SMALL_STATE(2378)] = 126489, - [SMALL_STATE(2379)] = 126535, - [SMALL_STATE(2380)] = 126617, - [SMALL_STATE(2381)] = 126699, - [SMALL_STATE(2382)] = 126749, - [SMALL_STATE(2383)] = 126799, - [SMALL_STATE(2384)] = 126851, - [SMALL_STATE(2385)] = 126905, - [SMALL_STATE(2386)] = 126987, - [SMALL_STATE(2387)] = 127069, - [SMALL_STATE(2388)] = 127127, - [SMALL_STATE(2389)] = 127209, - [SMALL_STATE(2390)] = 127271, - [SMALL_STATE(2391)] = 127335, - [SMALL_STATE(2392)] = 127401, - [SMALL_STATE(2393)] = 127469, - [SMALL_STATE(2394)] = 127539, - [SMALL_STATE(2395)] = 127611, - [SMALL_STATE(2396)] = 127657, - [SMALL_STATE(2397)] = 127733, - [SMALL_STATE(2398)] = 127789, - [SMALL_STATE(2399)] = 127835, - [SMALL_STATE(2400)] = 127881, - [SMALL_STATE(2401)] = 127927, - [SMALL_STATE(2402)] = 127973, - [SMALL_STATE(2403)] = 128019, - [SMALL_STATE(2404)] = 128065, - [SMALL_STATE(2405)] = 128111, - [SMALL_STATE(2406)] = 128157, - [SMALL_STATE(2407)] = 128203, - [SMALL_STATE(2408)] = 128249, - [SMALL_STATE(2409)] = 128331, - [SMALL_STATE(2410)] = 128377, - [SMALL_STATE(2411)] = 128423, - [SMALL_STATE(2412)] = 128469, - [SMALL_STATE(2413)] = 128515, - [SMALL_STATE(2414)] = 128597, - [SMALL_STATE(2415)] = 128679, - [SMALL_STATE(2416)] = 128761, - [SMALL_STATE(2417)] = 128807, - [SMALL_STATE(2418)] = 128853, - [SMALL_STATE(2419)] = 128899, - [SMALL_STATE(2420)] = 128945, - [SMALL_STATE(2421)] = 128991, - [SMALL_STATE(2422)] = 129037, - [SMALL_STATE(2423)] = 129085, - [SMALL_STATE(2424)] = 129167, - [SMALL_STATE(2425)] = 129249, - [SMALL_STATE(2426)] = 129295, - [SMALL_STATE(2427)] = 129341, - [SMALL_STATE(2428)] = 129387, - [SMALL_STATE(2429)] = 129437, - [SMALL_STATE(2430)] = 129519, - [SMALL_STATE(2431)] = 129569, - [SMALL_STATE(2432)] = 129651, - [SMALL_STATE(2433)] = 129733, - [SMALL_STATE(2434)] = 129815, - [SMALL_STATE(2435)] = 129897, - [SMALL_STATE(2436)] = 129979, - [SMALL_STATE(2437)] = 130061, - [SMALL_STATE(2438)] = 130106, - [SMALL_STATE(2439)] = 130161, - [SMALL_STATE(2440)] = 130222, - [SMALL_STATE(2441)] = 130301, - [SMALL_STATE(2442)] = 130356, - [SMALL_STATE(2443)] = 130413, - [SMALL_STATE(2444)] = 130460, - [SMALL_STATE(2445)] = 130525, - [SMALL_STATE(2446)] = 130604, - [SMALL_STATE(2447)] = 130649, - [SMALL_STATE(2448)] = 130694, - [SMALL_STATE(2449)] = 130741, - [SMALL_STATE(2450)] = 130786, - [SMALL_STATE(2451)] = 130853, - [SMALL_STATE(2452)] = 130904, - [SMALL_STATE(2453)] = 130973, - [SMALL_STATE(2454)] = 131028, - [SMALL_STATE(2455)] = 131103, - [SMALL_STATE(2456)] = 131178, - [SMALL_STATE(2457)] = 131249, - [SMALL_STATE(2458)] = 131294, - [SMALL_STATE(2459)] = 131339, - [SMALL_STATE(2460)] = 131402, - [SMALL_STATE(2461)] = 131447, - [SMALL_STATE(2462)] = 131526, - [SMALL_STATE(2463)] = 131581, - [SMALL_STATE(2464)] = 131626, - [SMALL_STATE(2465)] = 131671, - [SMALL_STATE(2466)] = 131716, - [SMALL_STATE(2467)] = 131793, - [SMALL_STATE(2468)] = 131840, - [SMALL_STATE(2469)] = 131885, - [SMALL_STATE(2470)] = 131930, - [SMALL_STATE(2471)] = 131975, - [SMALL_STATE(2472)] = 132054, - [SMALL_STATE(2473)] = 132099, - [SMALL_STATE(2474)] = 132176, - [SMALL_STATE(2475)] = 132249, - [SMALL_STATE(2476)] = 132294, - [SMALL_STATE(2477)] = 132351, - [SMALL_STATE(2478)] = 132404, - [SMALL_STATE(2479)] = 132475, - [SMALL_STATE(2480)] = 132554, - [SMALL_STATE(2481)] = 132623, - [SMALL_STATE(2482)] = 132690, - [SMALL_STATE(2483)] = 132741, - [SMALL_STATE(2484)] = 132806, - [SMALL_STATE(2485)] = 132885, - [SMALL_STATE(2486)] = 132974, - [SMALL_STATE(2487)] = 133063, - [SMALL_STATE(2488)] = 133152, - [SMALL_STATE(2489)] = 133241, - [SMALL_STATE(2490)] = 133288, - [SMALL_STATE(2491)] = 133335, - [SMALL_STATE(2492)] = 133384, - [SMALL_STATE(2493)] = 133457, - [SMALL_STATE(2494)] = 133536, - [SMALL_STATE(2495)] = 133581, - [SMALL_STATE(2496)] = 133660, - [SMALL_STATE(2497)] = 133737, - [SMALL_STATE(2498)] = 133816, - [SMALL_STATE(2499)] = 133865, - [SMALL_STATE(2500)] = 133914, - [SMALL_STATE(2501)] = 133961, - [SMALL_STATE(2502)] = 134014, - [SMALL_STATE(2503)] = 134071, - [SMALL_STATE(2504)] = 134144, - [SMALL_STATE(2505)] = 134205, - [SMALL_STATE(2506)] = 134268, - [SMALL_STATE(2507)] = 134333, - [SMALL_STATE(2508)] = 134400, - [SMALL_STATE(2509)] = 134469, - [SMALL_STATE(2510)] = 134540, - [SMALL_STATE(2511)] = 134593, - [SMALL_STATE(2512)] = 134656, - [SMALL_STATE(2513)] = 134701, - [SMALL_STATE(2514)] = 134778, - [SMALL_STATE(2515)] = 134853, - [SMALL_STATE(2516)] = 134908, - [SMALL_STATE(2517)] = 134997, - [SMALL_STATE(2518)] = 135086, - [SMALL_STATE(2519)] = 135135, - [SMALL_STATE(2520)] = 135184, - [SMALL_STATE(2521)] = 135245, - [SMALL_STATE(2522)] = 135300, - [SMALL_STATE(2523)] = 135347, - [SMALL_STATE(2524)] = 135436, - [SMALL_STATE(2525)] = 135483, - [SMALL_STATE(2526)] = 135534, - [SMALL_STATE(2527)] = 135589, - [SMALL_STATE(2528)] = 135678, - [SMALL_STATE(2529)] = 135731, - [SMALL_STATE(2530)] = 135810, - [SMALL_STATE(2531)] = 135867, - [SMALL_STATE(2532)] = 135914, - [SMALL_STATE(2533)] = 135969, - [SMALL_STATE(2534)] = 136018, - [SMALL_STATE(2535)] = 136075, - [SMALL_STATE(2536)] = 136130, - [SMALL_STATE(2537)] = 136177, - [SMALL_STATE(2538)] = 136232, - [SMALL_STATE(2539)] = 136289, - [SMALL_STATE(2540)] = 136346, - [SMALL_STATE(2541)] = 136405, - [SMALL_STATE(2542)] = 136466, - [SMALL_STATE(2543)] = 136529, - [SMALL_STATE(2544)] = 136594, - [SMALL_STATE(2545)] = 136639, - [SMALL_STATE(2546)] = 136692, - [SMALL_STATE(2547)] = 136743, - [SMALL_STATE(2548)] = 136822, - [SMALL_STATE(2549)] = 136867, - [SMALL_STATE(2550)] = 136946, - [SMALL_STATE(2551)] = 137025, - [SMALL_STATE(2552)] = 137074, - [SMALL_STATE(2553)] = 137119, - [SMALL_STATE(2554)] = 137186, - [SMALL_STATE(2555)] = 137231, - [SMALL_STATE(2556)] = 137300, - [SMALL_STATE(2557)] = 137389, - [SMALL_STATE(2558)] = 137434, - [SMALL_STATE(2559)] = 137481, - [SMALL_STATE(2560)] = 137530, - [SMALL_STATE(2561)] = 137619, - [SMALL_STATE(2562)] = 137668, - [SMALL_STATE(2563)] = 137747, - [SMALL_STATE(2564)] = 137826, - [SMALL_STATE(2565)] = 137871, - [SMALL_STATE(2566)] = 137942, - [SMALL_STATE(2567)] = 137987, - [SMALL_STATE(2568)] = 138032, - [SMALL_STATE(2569)] = 138105, - [SMALL_STATE(2570)] = 138150, - [SMALL_STATE(2571)] = 138229, - [SMALL_STATE(2572)] = 138274, - [SMALL_STATE(2573)] = 138319, - [SMALL_STATE(2574)] = 138382, - [SMALL_STATE(2575)] = 138437, - [SMALL_STATE(2576)] = 138512, - [SMALL_STATE(2577)] = 138589, - [SMALL_STATE(2578)] = 138678, - [SMALL_STATE(2579)] = 138757, - [SMALL_STATE(2580)] = 138814, - [SMALL_STATE(2581)] = 138885, - [SMALL_STATE(2582)] = 138954, - [SMALL_STATE(2583)] = 138999, - [SMALL_STATE(2584)] = 139066, - [SMALL_STATE(2585)] = 139113, - [SMALL_STATE(2586)] = 139178, - [SMALL_STATE(2587)] = 139241, - [SMALL_STATE(2588)] = 139302, - [SMALL_STATE(2589)] = 139347, - [SMALL_STATE(2590)] = 139404, - [SMALL_STATE(2591)] = 139461, - [SMALL_STATE(2592)] = 139508, - [SMALL_STATE(2593)] = 139561, - [SMALL_STATE(2594)] = 139614, - [SMALL_STATE(2595)] = 139667, - [SMALL_STATE(2596)] = 139718, - [SMALL_STATE(2597)] = 139767, - [SMALL_STATE(2598)] = 139846, - [SMALL_STATE(2599)] = 139925, - [SMALL_STATE(2600)] = 139972, - [SMALL_STATE(2601)] = 140051, - [SMALL_STATE(2602)] = 140100, - [SMALL_STATE(2603)] = 140145, - [SMALL_STATE(2604)] = 140200, - [SMALL_STATE(2605)] = 140255, - [SMALL_STATE(2606)] = 140330, - [SMALL_STATE(2607)] = 140407, - [SMALL_STATE(2608)] = 140478, - [SMALL_STATE(2609)] = 140533, - [SMALL_STATE(2610)] = 140602, - [SMALL_STATE(2611)] = 140657, - [SMALL_STATE(2612)] = 140712, - [SMALL_STATE(2613)] = 140765, - [SMALL_STATE(2614)] = 140838, - [SMALL_STATE(2615)] = 140917, - [SMALL_STATE(2616)] = 141006, - [SMALL_STATE(2617)] = 141073, - [SMALL_STATE(2618)] = 141118, - [SMALL_STATE(2619)] = 141183, - [SMALL_STATE(2620)] = 141246, - [SMALL_STATE(2621)] = 141307, - [SMALL_STATE(2622)] = 141364, - [SMALL_STATE(2623)] = 141417, - [SMALL_STATE(2624)] = 141468, - [SMALL_STATE(2625)] = 141517, - [SMALL_STATE(2626)] = 141566, - [SMALL_STATE(2627)] = 141613, - [SMALL_STATE(2628)] = 141662, - [SMALL_STATE(2629)] = 141738, - [SMALL_STATE(2630)] = 141812, - [SMALL_STATE(2631)] = 141862, - [SMALL_STATE(2632)] = 141910, - [SMALL_STATE(2633)] = 141956, - [SMALL_STATE(2634)] = 142032, - [SMALL_STATE(2635)] = 142076, - [SMALL_STATE(2636)] = 142120, - [SMALL_STATE(2637)] = 142164, - [SMALL_STATE(2638)] = 142232, - [SMALL_STATE(2639)] = 142276, - [SMALL_STATE(2640)] = 142352, - [SMALL_STATE(2641)] = 142406, - [SMALL_STATE(2642)] = 142470, - [SMALL_STATE(2643)] = 142534, - [SMALL_STATE(2644)] = 142596, - [SMALL_STATE(2645)] = 142656, - [SMALL_STATE(2646)] = 142714, - [SMALL_STATE(2647)] = 142772, - [SMALL_STATE(2648)] = 142816, - [SMALL_STATE(2649)] = 142870, - [SMALL_STATE(2650)] = 142946, - [SMALL_STATE(2651)] = 143006, - [SMALL_STATE(2652)] = 143060, - [SMALL_STATE(2653)] = 143122, - [SMALL_STATE(2654)] = 143178, - [SMALL_STATE(2655)] = 143242, - [SMALL_STATE(2656)] = 143296, - [SMALL_STATE(2657)] = 143348, - [SMALL_STATE(2658)] = 143398, - [SMALL_STATE(2659)] = 143464, - [SMALL_STATE(2660)] = 143532, - [SMALL_STATE(2661)] = 143580, - [SMALL_STATE(2662)] = 143628, - [SMALL_STATE(2663)] = 143702, - [SMALL_STATE(2664)] = 143746, - [SMALL_STATE(2665)] = 143790, - [SMALL_STATE(2666)] = 143862, - [SMALL_STATE(2667)] = 143906, - [SMALL_STATE(2668)] = 143950, - [SMALL_STATE(2669)] = 143996, - [SMALL_STATE(2670)] = 144072, - [SMALL_STATE(2671)] = 144116, - [SMALL_STATE(2672)] = 144192, - [SMALL_STATE(2673)] = 144268, - [SMALL_STATE(2674)] = 144344, - [SMALL_STATE(2675)] = 144410, - [SMALL_STATE(2676)] = 144486, - [SMALL_STATE(2677)] = 144572, - [SMALL_STATE(2678)] = 144648, - [SMALL_STATE(2679)] = 144724, - [SMALL_STATE(2680)] = 144810, - [SMALL_STATE(2681)] = 144886, - [SMALL_STATE(2682)] = 144930, - [SMALL_STATE(2683)] = 144974, - [SMALL_STATE(2684)] = 145050, - [SMALL_STATE(2685)] = 145126, - [SMALL_STATE(2686)] = 145202, - [SMALL_STATE(2687)] = 145278, - [SMALL_STATE(2688)] = 145354, - [SMALL_STATE(2689)] = 145406, - [SMALL_STATE(2690)] = 145458, - [SMALL_STATE(2691)] = 145534, - [SMALL_STATE(2692)] = 145610, - [SMALL_STATE(2693)] = 145686, - [SMALL_STATE(2694)] = 145772, - [SMALL_STATE(2695)] = 145816, - [SMALL_STATE(2696)] = 145902, - [SMALL_STATE(2697)] = 145988, - [SMALL_STATE(2698)] = 146064, - [SMALL_STATE(2699)] = 146108, - [SMALL_STATE(2700)] = 146184, - [SMALL_STATE(2701)] = 146254, - [SMALL_STATE(2702)] = 146330, - [SMALL_STATE(2703)] = 146406, - [SMALL_STATE(2704)] = 146456, - [SMALL_STATE(2705)] = 146500, - [SMALL_STATE(2706)] = 146544, - [SMALL_STATE(2707)] = 146620, - [SMALL_STATE(2708)] = 146692, - [SMALL_STATE(2709)] = 146778, - [SMALL_STATE(2710)] = 146832, - [SMALL_STATE(2711)] = 146880, - [SMALL_STATE(2712)] = 146926, - [SMALL_STATE(2713)] = 146974, - [SMALL_STATE(2714)] = 147024, - [SMALL_STATE(2715)] = 147078, - [SMALL_STATE(2716)] = 147122, - [SMALL_STATE(2717)] = 147174, - [SMALL_STATE(2718)] = 147218, - [SMALL_STATE(2719)] = 147294, - [SMALL_STATE(2720)] = 147380, - [SMALL_STATE(2721)] = 147424, - [SMALL_STATE(2722)] = 147480, - [SMALL_STATE(2723)] = 147524, - [SMALL_STATE(2724)] = 147584, - [SMALL_STATE(2725)] = 147646, - [SMALL_STATE(2726)] = 147732, - [SMALL_STATE(2727)] = 147796, - [SMALL_STATE(2728)] = 147862, - [SMALL_STATE(2729)] = 147938, - [SMALL_STATE(2730)] = 147988, - [SMALL_STATE(2731)] = 148038, - [SMALL_STATE(2732)] = 148082, - [SMALL_STATE(2733)] = 148150, - [SMALL_STATE(2734)] = 148194, - [SMALL_STATE(2735)] = 148238, - [SMALL_STATE(2736)] = 148314, - [SMALL_STATE(2737)] = 148384, - [SMALL_STATE(2738)] = 148428, - [SMALL_STATE(2739)] = 148504, - [SMALL_STATE(2740)] = 148548, - [SMALL_STATE(2741)] = 148592, - [SMALL_STATE(2742)] = 148636, - [SMALL_STATE(2743)] = 148680, - [SMALL_STATE(2744)] = 148750, - [SMALL_STATE(2745)] = 148794, - [SMALL_STATE(2746)] = 148838, - [SMALL_STATE(2747)] = 148914, - [SMALL_STATE(2748)] = 148968, - [SMALL_STATE(2749)] = 149044, - [SMALL_STATE(2750)] = 149120, - [SMALL_STATE(2751)] = 149196, - [SMALL_STATE(2752)] = 149262, - [SMALL_STATE(2753)] = 149314, - [SMALL_STATE(2754)] = 149358, - [SMALL_STATE(2755)] = 149444, - [SMALL_STATE(2756)] = 149520, - [SMALL_STATE(2757)] = 149564, - [SMALL_STATE(2758)] = 149650, - [SMALL_STATE(2759)] = 149694, - [SMALL_STATE(2760)] = 149738, - [SMALL_STATE(2761)] = 149782, - [SMALL_STATE(2762)] = 149826, - [SMALL_STATE(2763)] = 149870, - [SMALL_STATE(2764)] = 149914, - [SMALL_STATE(2765)] = 149964, - [SMALL_STATE(2766)] = 150008, - [SMALL_STATE(2767)] = 150052, - [SMALL_STATE(2768)] = 150096, - [SMALL_STATE(2769)] = 150140, - [SMALL_STATE(2770)] = 150184, - [SMALL_STATE(2771)] = 150228, - [SMALL_STATE(2772)] = 150278, - [SMALL_STATE(2773)] = 150352, - [SMALL_STATE(2774)] = 150402, - [SMALL_STATE(2775)] = 150446, - [SMALL_STATE(2776)] = 150522, - [SMALL_STATE(2777)] = 150598, - [SMALL_STATE(2778)] = 150674, - [SMALL_STATE(2779)] = 150718, - [SMALL_STATE(2780)] = 150804, - [SMALL_STATE(2781)] = 150890, - [SMALL_STATE(2782)] = 150934, - [SMALL_STATE(2783)] = 151010, - [SMALL_STATE(2784)] = 151054, - [SMALL_STATE(2785)] = 151098, - [SMALL_STATE(2786)] = 151142, - [SMALL_STATE(2787)] = 151212, - [SMALL_STATE(2788)] = 151264, - [SMALL_STATE(2789)] = 151340, - [SMALL_STATE(2790)] = 151392, - [SMALL_STATE(2791)] = 151468, - [SMALL_STATE(2792)] = 151512, - [SMALL_STATE(2793)] = 151588, - [SMALL_STATE(2794)] = 151636, - [SMALL_STATE(2795)] = 151684, - [SMALL_STATE(2796)] = 151760, - [SMALL_STATE(2797)] = 151810, - [SMALL_STATE(2798)] = 151886, - [SMALL_STATE(2799)] = 151938, - [SMALL_STATE(2800)] = 151992, - [SMALL_STATE(2801)] = 152050, - [SMALL_STATE(2802)] = 152110, - [SMALL_STATE(2803)] = 152154, - [SMALL_STATE(2804)] = 152198, - [SMALL_STATE(2805)] = 152242, - [SMALL_STATE(2806)] = 152304, - [SMALL_STATE(2807)] = 152368, - [SMALL_STATE(2808)] = 152444, - [SMALL_STATE(2809)] = 152508, - [SMALL_STATE(2810)] = 152584, - [SMALL_STATE(2811)] = 152650, - [SMALL_STATE(2812)] = 152694, - [SMALL_STATE(2813)] = 152738, - [SMALL_STATE(2814)] = 152806, - [SMALL_STATE(2815)] = 152850, - [SMALL_STATE(2816)] = 152894, - [SMALL_STATE(2817)] = 152938, - [SMALL_STATE(2818)] = 153014, - [SMALL_STATE(2819)] = 153058, - [SMALL_STATE(2820)] = 153102, - [SMALL_STATE(2821)] = 153146, - [SMALL_STATE(2822)] = 153222, - [SMALL_STATE(2823)] = 153268, - [SMALL_STATE(2824)] = 153316, - [SMALL_STATE(2825)] = 153366, - [SMALL_STATE(2826)] = 153442, - [SMALL_STATE(2827)] = 153512, - [SMALL_STATE(2828)] = 153556, - [SMALL_STATE(2829)] = 153600, - [SMALL_STATE(2830)] = 153644, - [SMALL_STATE(2831)] = 153696, - [SMALL_STATE(2832)] = 153750, - [SMALL_STATE(2833)] = 153804, - [SMALL_STATE(2834)] = 153880, - [SMALL_STATE(2835)] = 153926, - [SMALL_STATE(2836)] = 153970, - [SMALL_STATE(2837)] = 154024, - [SMALL_STATE(2838)] = 154076, - [SMALL_STATE(2839)] = 154134, - [SMALL_STATE(2840)] = 154178, - [SMALL_STATE(2841)] = 154238, - [SMALL_STATE(2842)] = 154290, - [SMALL_STATE(2843)] = 154334, - [SMALL_STATE(2844)] = 154396, - [SMALL_STATE(2845)] = 154440, - [SMALL_STATE(2846)] = 154526, - [SMALL_STATE(2847)] = 154590, - [SMALL_STATE(2848)] = 154676, - [SMALL_STATE(2849)] = 154752, - [SMALL_STATE(2850)] = 154838, - [SMALL_STATE(2851)] = 154914, - [SMALL_STATE(2852)] = 155000, - [SMALL_STATE(2853)] = 155052, - [SMALL_STATE(2854)] = 155096, - [SMALL_STATE(2855)] = 155140, - [SMALL_STATE(2856)] = 155216, - [SMALL_STATE(2857)] = 155260, - [SMALL_STATE(2858)] = 155304, - [SMALL_STATE(2859)] = 155348, - [SMALL_STATE(2860)] = 155424, - [SMALL_STATE(2861)] = 155468, - [SMALL_STATE(2862)] = 155512, - [SMALL_STATE(2863)] = 155556, - [SMALL_STATE(2864)] = 155600, - [SMALL_STATE(2865)] = 155676, - [SMALL_STATE(2866)] = 155728, - [SMALL_STATE(2867)] = 155774, - [SMALL_STATE(2868)] = 155860, - [SMALL_STATE(2869)] = 155936, - [SMALL_STATE(2870)] = 155980, - [SMALL_STATE(2871)] = 156024, - [SMALL_STATE(2872)] = 156110, - [SMALL_STATE(2873)] = 156178, - [SMALL_STATE(2874)] = 156222, - [SMALL_STATE(2875)] = 156294, - [SMALL_STATE(2876)] = 156370, - [SMALL_STATE(2877)] = 156417, - [SMALL_STATE(2878)] = 156464, - [SMALL_STATE(2879)] = 156515, - [SMALL_STATE(2880)] = 156566, - [SMALL_STATE(2881)] = 156613, - [SMALL_STATE(2882)] = 156692, - [SMALL_STATE(2883)] = 156739, - [SMALL_STATE(2884)] = 156786, - [SMALL_STATE(2885)] = 156833, - [SMALL_STATE(2886)] = 156882, - [SMALL_STATE(2887)] = 156931, - [SMALL_STATE(2888)] = 157010, - [SMALL_STATE(2889)] = 157053, - [SMALL_STATE(2890)] = 157096, - [SMALL_STATE(2891)] = 157139, - [SMALL_STATE(2892)] = 157182, - [SMALL_STATE(2893)] = 157225, - [SMALL_STATE(2894)] = 157268, - [SMALL_STATE(2895)] = 157311, - [SMALL_STATE(2896)] = 157390, - [SMALL_STATE(2897)] = 157477, - [SMALL_STATE(2898)] = 157520, - [SMALL_STATE(2899)] = 157563, - [SMALL_STATE(2900)] = 157606, - [SMALL_STATE(2901)] = 157649, - [SMALL_STATE(2902)] = 157692, - [SMALL_STATE(2903)] = 157735, - [SMALL_STATE(2904)] = 157786, - [SMALL_STATE(2905)] = 157833, - [SMALL_STATE(2906)] = 157884, - [SMALL_STATE(2907)] = 157931, - [SMALL_STATE(2908)] = 157974, - [SMALL_STATE(2909)] = 158053, - [SMALL_STATE(2910)] = 158096, - [SMALL_STATE(2911)] = 158143, - [SMALL_STATE(2912)] = 158186, - [SMALL_STATE(2913)] = 158229, - [SMALL_STATE(2914)] = 158312, - [SMALL_STATE(2915)] = 158355, - [SMALL_STATE(2916)] = 158406, - [SMALL_STATE(2917)] = 158453, - [SMALL_STATE(2918)] = 158496, - [SMALL_STATE(2919)] = 158547, - [SMALL_STATE(2920)] = 158634, - [SMALL_STATE(2921)] = 158721, - [SMALL_STATE(2922)] = 158772, - [SMALL_STATE(2923)] = 158819, - [SMALL_STATE(2924)] = 158870, - [SMALL_STATE(2925)] = 158917, - [SMALL_STATE(2926)] = 158999, - [SMALL_STATE(2927)] = 159081, - [SMALL_STATE(2928)] = 159131, - [SMALL_STATE(2929)] = 159173, - [SMALL_STATE(2930)] = 159223, - [SMALL_STATE(2931)] = 159265, - [SMALL_STATE(2932)] = 159341, - [SMALL_STATE(2933)] = 159423, - [SMALL_STATE(2934)] = 159473, - [SMALL_STATE(2935)] = 159515, - [SMALL_STATE(2936)] = 159597, - [SMALL_STATE(2937)] = 159679, - [SMALL_STATE(2938)] = 159761, - [SMALL_STATE(2939)] = 159843, - [SMALL_STATE(2940)] = 159893, - [SMALL_STATE(2941)] = 159975, - [SMALL_STATE(2942)] = 160057, - [SMALL_STATE(2943)] = 160139, - [SMALL_STATE(2944)] = 160221, - [SMALL_STATE(2945)] = 160263, - [SMALL_STATE(2946)] = 160305, - [SMALL_STATE(2947)] = 160387, - [SMALL_STATE(2948)] = 160469, - [SMALL_STATE(2949)] = 160511, - [SMALL_STATE(2950)] = 160553, - [SMALL_STATE(2951)] = 160595, - [SMALL_STATE(2952)] = 160637, - [SMALL_STATE(2953)] = 160679, - [SMALL_STATE(2954)] = 160721, - [SMALL_STATE(2955)] = 160767, - [SMALL_STATE(2956)] = 160849, - [SMALL_STATE(2957)] = 160931, - [SMALL_STATE(2958)] = 160973, - [SMALL_STATE(2959)] = 161055, - [SMALL_STATE(2960)] = 161101, - [SMALL_STATE(2961)] = 161143, - [SMALL_STATE(2962)] = 161225, - [SMALL_STATE(2963)] = 161267, - [SMALL_STATE(2964)] = 161309, - [SMALL_STATE(2965)] = 161351, - [SMALL_STATE(2966)] = 161433, - [SMALL_STATE(2967)] = 161475, - [SMALL_STATE(2968)] = 161557, - [SMALL_STATE(2969)] = 161639, - [SMALL_STATE(2970)] = 161721, - [SMALL_STATE(2971)] = 161763, - [SMALL_STATE(2972)] = 161845, - [SMALL_STATE(2973)] = 161927, - [SMALL_STATE(2974)] = 161969, - [SMALL_STATE(2975)] = 162014, - [SMALL_STATE(2976)] = 162059, - [SMALL_STATE(2977)] = 162104, - [SMALL_STATE(2978)] = 162177, - [SMALL_STATE(2979)] = 162250, - [SMALL_STATE(2980)] = 162295, - [SMALL_STATE(2981)] = 162340, - [SMALL_STATE(2982)] = 162413, - [SMALL_STATE(2983)] = 162454, - [SMALL_STATE(2984)] = 162499, - [SMALL_STATE(2985)] = 162544, - [SMALL_STATE(2986)] = 162617, - [SMALL_STATE(2987)] = 162693, - [SMALL_STATE(2988)] = 162769, - [SMALL_STATE(2989)] = 162845, - [SMALL_STATE(2990)] = 162921, - [SMALL_STATE(2991)] = 162969, - [SMALL_STATE(2992)] = 163009, - [SMALL_STATE(2993)] = 163085, - [SMALL_STATE(2994)] = 163161, - [SMALL_STATE(2995)] = 163237, - [SMALL_STATE(2996)] = 163313, - [SMALL_STATE(2997)] = 163353, - [SMALL_STATE(2998)] = 163429, - [SMALL_STATE(2999)] = 163505, - [SMALL_STATE(3000)] = 163581, - [SMALL_STATE(3001)] = 163621, - [SMALL_STATE(3002)] = 163697, - [SMALL_STATE(3003)] = 163773, - [SMALL_STATE(3004)] = 163813, - [SMALL_STATE(3005)] = 163889, - [SMALL_STATE(3006)] = 163965, - [SMALL_STATE(3007)] = 164041, - [SMALL_STATE(3008)] = 164081, - [SMALL_STATE(3009)] = 164157, - [SMALL_STATE(3010)] = 164233, - [SMALL_STATE(3011)] = 164309, - [SMALL_STATE(3012)] = 164385, - [SMALL_STATE(3013)] = 164461, - [SMALL_STATE(3014)] = 164501, - [SMALL_STATE(3015)] = 164577, - [SMALL_STATE(3016)] = 164653, - [SMALL_STATE(3017)] = 164729, - [SMALL_STATE(3018)] = 164805, - [SMALL_STATE(3019)] = 164881, - [SMALL_STATE(3020)] = 164957, - [SMALL_STATE(3021)] = 165033, - [SMALL_STATE(3022)] = 165109, - [SMALL_STATE(3023)] = 165185, - [SMALL_STATE(3024)] = 165261, - [SMALL_STATE(3025)] = 165337, - [SMALL_STATE(3026)] = 165413, - [SMALL_STATE(3027)] = 165489, - [SMALL_STATE(3028)] = 165565, - [SMALL_STATE(3029)] = 165641, - [SMALL_STATE(3030)] = 165717, - [SMALL_STATE(3031)] = 165793, - [SMALL_STATE(3032)] = 165869, - [SMALL_STATE(3033)] = 165945, - [SMALL_STATE(3034)] = 166021, - [SMALL_STATE(3035)] = 166097, - [SMALL_STATE(3036)] = 166145, - [SMALL_STATE(3037)] = 166185, - [SMALL_STATE(3038)] = 166225, - [SMALL_STATE(3039)] = 166301, - [SMALL_STATE(3040)] = 166341, - [SMALL_STATE(3041)] = 166414, - [SMALL_STATE(3042)] = 166461, - [SMALL_STATE(3043)] = 166534, - [SMALL_STATE(3044)] = 166607, - [SMALL_STATE(3045)] = 166680, - [SMALL_STATE(3046)] = 166751, - [SMALL_STATE(3047)] = 166822, - [SMALL_STATE(3048)] = 166893, - [SMALL_STATE(3049)] = 166966, - [SMALL_STATE(3050)] = 167039, - [SMALL_STATE(3051)] = 167086, - [SMALL_STATE(3052)] = 167159, - [SMALL_STATE(3053)] = 167232, - [SMALL_STATE(3054)] = 167279, - [SMALL_STATE(3055)] = 167326, - [SMALL_STATE(3056)] = 167399, - [SMALL_STATE(3057)] = 167472, - [SMALL_STATE(3058)] = 167545, - [SMALL_STATE(3059)] = 167618, - [SMALL_STATE(3060)] = 167691, - [SMALL_STATE(3061)] = 167764, - [SMALL_STATE(3062)] = 167837, - [SMALL_STATE(3063)] = 167910, - [SMALL_STATE(3064)] = 167983, - [SMALL_STATE(3065)] = 168056, - [SMALL_STATE(3066)] = 168127, - [SMALL_STATE(3067)] = 168174, - [SMALL_STATE(3068)] = 168249, - [SMALL_STATE(3069)] = 168322, - [SMALL_STATE(3070)] = 168393, - [SMALL_STATE(3071)] = 168466, - [SMALL_STATE(3072)] = 168541, - [SMALL_STATE(3073)] = 168588, - [SMALL_STATE(3074)] = 168663, - [SMALL_STATE(3075)] = 168736, - [SMALL_STATE(3076)] = 168809, - [SMALL_STATE(3077)] = 168880, - [SMALL_STATE(3078)] = 168955, - [SMALL_STATE(3079)] = 169026, - [SMALL_STATE(3080)] = 169099, - [SMALL_STATE(3081)] = 169172, - [SMALL_STATE(3082)] = 169245, - [SMALL_STATE(3083)] = 169318, - [SMALL_STATE(3084)] = 169391, - [SMALL_STATE(3085)] = 169464, - [SMALL_STATE(3086)] = 169537, - [SMALL_STATE(3087)] = 169610, - [SMALL_STATE(3088)] = 169683, - [SMALL_STATE(3089)] = 169730, - [SMALL_STATE(3090)] = 169803, - [SMALL_STATE(3091)] = 169878, - [SMALL_STATE(3092)] = 169925, - [SMALL_STATE(3093)] = 169998, - [SMALL_STATE(3094)] = 170071, - [SMALL_STATE(3095)] = 170146, - [SMALL_STATE(3096)] = 170217, - [SMALL_STATE(3097)] = 170288, - [SMALL_STATE(3098)] = 170335, - [SMALL_STATE(3099)] = 170408, - [SMALL_STATE(3100)] = 170481, - [SMALL_STATE(3101)] = 170528, - [SMALL_STATE(3102)] = 170599, - [SMALL_STATE(3103)] = 170672, - [SMALL_STATE(3104)] = 170745, - [SMALL_STATE(3105)] = 170816, - [SMALL_STATE(3106)] = 170887, - [SMALL_STATE(3107)] = 170960, - [SMALL_STATE(3108)] = 171033, - [SMALL_STATE(3109)] = 171104, - [SMALL_STATE(3110)] = 171177, - [SMALL_STATE(3111)] = 171252, - [SMALL_STATE(3112)] = 171320, - [SMALL_STATE(3113)] = 171388, - [SMALL_STATE(3114)] = 171462, - [SMALL_STATE(3115)] = 171530, - [SMALL_STATE(3116)] = 171598, - [SMALL_STATE(3117)] = 171666, - [SMALL_STATE(3118)] = 171734, - [SMALL_STATE(3119)] = 171802, - [SMALL_STATE(3120)] = 171870, - [SMALL_STATE(3121)] = 171938, - [SMALL_STATE(3122)] = 172010, - [SMALL_STATE(3123)] = 172078, - [SMALL_STATE(3124)] = 172146, - [SMALL_STATE(3125)] = 172214, - [SMALL_STATE(3126)] = 172286, - [SMALL_STATE(3127)] = 172354, - [SMALL_STATE(3128)] = 172422, - [SMALL_STATE(3129)] = 172490, - [SMALL_STATE(3130)] = 172564, - [SMALL_STATE(3131)] = 172632, - [SMALL_STATE(3132)] = 172700, - [SMALL_STATE(3133)] = 172774, - [SMALL_STATE(3134)] = 172848, - [SMALL_STATE(3135)] = 172916, - [SMALL_STATE(3136)] = 172990, - [SMALL_STATE(3137)] = 173058, - [SMALL_STATE(3138)] = 173126, - [SMALL_STATE(3139)] = 173200, - [SMALL_STATE(3140)] = 173268, - [SMALL_STATE(3141)] = 173336, - [SMALL_STATE(3142)] = 173410, - [SMALL_STATE(3143)] = 173484, - [SMALL_STATE(3144)] = 173558, - [SMALL_STATE(3145)] = 173626, - [SMALL_STATE(3146)] = 173694, - [SMALL_STATE(3147)] = 173762, - [SMALL_STATE(3148)] = 173830, - [SMALL_STATE(3149)] = 173898, - [SMALL_STATE(3150)] = 173966, - [SMALL_STATE(3151)] = 174034, - [SMALL_STATE(3152)] = 174102, - [SMALL_STATE(3153)] = 174170, - [SMALL_STATE(3154)] = 174238, - [SMALL_STATE(3155)] = 174306, - [SMALL_STATE(3156)] = 174374, - [SMALL_STATE(3157)] = 174442, - [SMALL_STATE(3158)] = 174516, - [SMALL_STATE(3159)] = 174590, - [SMALL_STATE(3160)] = 174658, - [SMALL_STATE(3161)] = 174726, - [SMALL_STATE(3162)] = 174794, - [SMALL_STATE(3163)] = 174868, - [SMALL_STATE(3164)] = 174940, - [SMALL_STATE(3165)] = 175014, - [SMALL_STATE(3166)] = 175088, - [SMALL_STATE(3167)] = 175156, - [SMALL_STATE(3168)] = 175228, - [SMALL_STATE(3169)] = 175296, - [SMALL_STATE(3170)] = 175364, - [SMALL_STATE(3171)] = 175438, - [SMALL_STATE(3172)] = 175512, - [SMALL_STATE(3173)] = 175584, - [SMALL_STATE(3174)] = 175658, - [SMALL_STATE(3175)] = 175732, - [SMALL_STATE(3176)] = 175806, - [SMALL_STATE(3177)] = 175880, - [SMALL_STATE(3178)] = 175948, - [SMALL_STATE(3179)] = 176022, - [SMALL_STATE(3180)] = 176096, - [SMALL_STATE(3181)] = 176164, - [SMALL_STATE(3182)] = 176232, - [SMALL_STATE(3183)] = 176306, - [SMALL_STATE(3184)] = 176378, - [SMALL_STATE(3185)] = 176446, - [SMALL_STATE(3186)] = 176514, - [SMALL_STATE(3187)] = 176582, - [SMALL_STATE(3188)] = 176654, - [SMALL_STATE(3189)] = 176722, - [SMALL_STATE(3190)] = 176790, - [SMALL_STATE(3191)] = 176858, - [SMALL_STATE(3192)] = 176932, - [SMALL_STATE(3193)] = 177004, - [SMALL_STATE(3194)] = 177076, - [SMALL_STATE(3195)] = 177150, - [SMALL_STATE(3196)] = 177218, - [SMALL_STATE(3197)] = 177286, - [SMALL_STATE(3198)] = 177354, - [SMALL_STATE(3199)] = 177428, - [SMALL_STATE(3200)] = 177496, - [SMALL_STATE(3201)] = 177564, - [SMALL_STATE(3202)] = 177632, - [SMALL_STATE(3203)] = 177700, - [SMALL_STATE(3204)] = 177768, - [SMALL_STATE(3205)] = 177836, - [SMALL_STATE(3206)] = 177904, - [SMALL_STATE(3207)] = 177978, - [SMALL_STATE(3208)] = 178046, - [SMALL_STATE(3209)] = 178114, - [SMALL_STATE(3210)] = 178182, - [SMALL_STATE(3211)] = 178256, - [SMALL_STATE(3212)] = 178330, - [SMALL_STATE(3213)] = 178404, - [SMALL_STATE(3214)] = 178472, - [SMALL_STATE(3215)] = 178540, - [SMALL_STATE(3216)] = 178608, - [SMALL_STATE(3217)] = 178682, - [SMALL_STATE(3218)] = 178756, - [SMALL_STATE(3219)] = 178824, - [SMALL_STATE(3220)] = 178898, - [SMALL_STATE(3221)] = 178966, - [SMALL_STATE(3222)] = 179034, - [SMALL_STATE(3223)] = 179102, - [SMALL_STATE(3224)] = 179176, - [SMALL_STATE(3225)] = 179244, - [SMALL_STATE(3226)] = 179318, - [SMALL_STATE(3227)] = 179386, - [SMALL_STATE(3228)] = 179454, - [SMALL_STATE(3229)] = 179522, - [SMALL_STATE(3230)] = 179590, - [SMALL_STATE(3231)] = 179658, - [SMALL_STATE(3232)] = 179726, - [SMALL_STATE(3233)] = 179794, - [SMALL_STATE(3234)] = 179862, - [SMALL_STATE(3235)] = 179936, - [SMALL_STATE(3236)] = 180004, - [SMALL_STATE(3237)] = 180078, - [SMALL_STATE(3238)] = 180146, - [SMALL_STATE(3239)] = 180218, - [SMALL_STATE(3240)] = 180286, - [SMALL_STATE(3241)] = 180358, - [SMALL_STATE(3242)] = 180430, - [SMALL_STATE(3243)] = 180498, - [SMALL_STATE(3244)] = 180566, - [SMALL_STATE(3245)] = 180640, - [SMALL_STATE(3246)] = 180712, - [SMALL_STATE(3247)] = 180784, - [SMALL_STATE(3248)] = 180852, - [SMALL_STATE(3249)] = 180926, - [SMALL_STATE(3250)] = 180994, - [SMALL_STATE(3251)] = 181068, - [SMALL_STATE(3252)] = 181142, - [SMALL_STATE(3253)] = 181216, - [SMALL_STATE(3254)] = 181290, - [SMALL_STATE(3255)] = 181364, - [SMALL_STATE(3256)] = 181436, - [SMALL_STATE(3257)] = 181510, - [SMALL_STATE(3258)] = 181582, - [SMALL_STATE(3259)] = 181656, - [SMALL_STATE(3260)] = 181730, - [SMALL_STATE(3261)] = 181798, - [SMALL_STATE(3262)] = 181870, - [SMALL_STATE(3263)] = 181938, - [SMALL_STATE(3264)] = 182012, - [SMALL_STATE(3265)] = 182080, - [SMALL_STATE(3266)] = 182152, - [SMALL_STATE(3267)] = 182220, - [SMALL_STATE(3268)] = 182292, - [SMALL_STATE(3269)] = 182366, - [SMALL_STATE(3270)] = 182440, - [SMALL_STATE(3271)] = 182508, - [SMALL_STATE(3272)] = 182582, - [SMALL_STATE(3273)] = 182650, - [SMALL_STATE(3274)] = 182724, - [SMALL_STATE(3275)] = 182798, - [SMALL_STATE(3276)] = 182866, - [SMALL_STATE(3277)] = 182934, - [SMALL_STATE(3278)] = 183002, - [SMALL_STATE(3279)] = 183070, - [SMALL_STATE(3280)] = 183138, - [SMALL_STATE(3281)] = 183206, - [SMALL_STATE(3282)] = 183280, - [SMALL_STATE(3283)] = 183352, - [SMALL_STATE(3284)] = 183420, - [SMALL_STATE(3285)] = 183488, - [SMALL_STATE(3286)] = 183560, - [SMALL_STATE(3287)] = 183632, - [SMALL_STATE(3288)] = 183706, - [SMALL_STATE(3289)] = 183774, - [SMALL_STATE(3290)] = 183842, - [SMALL_STATE(3291)] = 183910, - [SMALL_STATE(3292)] = 183978, - [SMALL_STATE(3293)] = 184050, - [SMALL_STATE(3294)] = 184118, - [SMALL_STATE(3295)] = 184192, - [SMALL_STATE(3296)] = 184260, - [SMALL_STATE(3297)] = 184332, - [SMALL_STATE(3298)] = 184400, - [SMALL_STATE(3299)] = 184468, - [SMALL_STATE(3300)] = 184536, - [SMALL_STATE(3301)] = 184604, - [SMALL_STATE(3302)] = 184672, - [SMALL_STATE(3303)] = 184746, - [SMALL_STATE(3304)] = 184820, - [SMALL_STATE(3305)] = 184894, - [SMALL_STATE(3306)] = 184962, - [SMALL_STATE(3307)] = 185034, - [SMALL_STATE(3308)] = 185102, - [SMALL_STATE(3309)] = 185170, - [SMALL_STATE(3310)] = 185238, - [SMALL_STATE(3311)] = 185310, - [SMALL_STATE(3312)] = 185378, - [SMALL_STATE(3313)] = 185452, - [SMALL_STATE(3314)] = 185520, - [SMALL_STATE(3315)] = 185592, - [SMALL_STATE(3316)] = 185660, - [SMALL_STATE(3317)] = 185732, - [SMALL_STATE(3318)] = 185800, - [SMALL_STATE(3319)] = 185868, - [SMALL_STATE(3320)] = 185936, - [SMALL_STATE(3321)] = 186008, - [SMALL_STATE(3322)] = 186076, - [SMALL_STATE(3323)] = 186144, - [SMALL_STATE(3324)] = 186218, - [SMALL_STATE(3325)] = 186290, - [SMALL_STATE(3326)] = 186358, - [SMALL_STATE(3327)] = 186426, - [SMALL_STATE(3328)] = 186494, - [SMALL_STATE(3329)] = 186562, - [SMALL_STATE(3330)] = 186630, - [SMALL_STATE(3331)] = 186676, - [SMALL_STATE(3332)] = 186744, - [SMALL_STATE(3333)] = 186812, - [SMALL_STATE(3334)] = 186880, - [SMALL_STATE(3335)] = 186948, - [SMALL_STATE(3336)] = 187016, - [SMALL_STATE(3337)] = 187084, - [SMALL_STATE(3338)] = 187152, - [SMALL_STATE(3339)] = 187224, - [SMALL_STATE(3340)] = 187292, - [SMALL_STATE(3341)] = 187360, - [SMALL_STATE(3342)] = 187432, - [SMALL_STATE(3343)] = 187500, - [SMALL_STATE(3344)] = 187572, - [SMALL_STATE(3345)] = 187640, - [SMALL_STATE(3346)] = 187714, - [SMALL_STATE(3347)] = 187782, - [SMALL_STATE(3348)] = 187850, - [SMALL_STATE(3349)] = 187918, - [SMALL_STATE(3350)] = 187992, - [SMALL_STATE(3351)] = 188060, - [SMALL_STATE(3352)] = 188134, - [SMALL_STATE(3353)] = 188208, - [SMALL_STATE(3354)] = 188276, - [SMALL_STATE(3355)] = 188344, - [SMALL_STATE(3356)] = 188418, - [SMALL_STATE(3357)] = 188490, - [SMALL_STATE(3358)] = 188562, - [SMALL_STATE(3359)] = 188630, - [SMALL_STATE(3360)] = 188698, - [SMALL_STATE(3361)] = 188766, - [SMALL_STATE(3362)] = 188834, - [SMALL_STATE(3363)] = 188902, - [SMALL_STATE(3364)] = 188970, - [SMALL_STATE(3365)] = 189038, - [SMALL_STATE(3366)] = 189106, - [SMALL_STATE(3367)] = 189174, - [SMALL_STATE(3368)] = 189242, - [SMALL_STATE(3369)] = 189310, - [SMALL_STATE(3370)] = 189378, - [SMALL_STATE(3371)] = 189452, - [SMALL_STATE(3372)] = 189520, - [SMALL_STATE(3373)] = 189588, - [SMALL_STATE(3374)] = 189656, - [SMALL_STATE(3375)] = 189728, - [SMALL_STATE(3376)] = 189796, - [SMALL_STATE(3377)] = 189864, - [SMALL_STATE(3378)] = 189932, - [SMALL_STATE(3379)] = 190000, - [SMALL_STATE(3380)] = 190074, - [SMALL_STATE(3381)] = 190148, - [SMALL_STATE(3382)] = 190222, - [SMALL_STATE(3383)] = 190296, - [SMALL_STATE(3384)] = 190370, - [SMALL_STATE(3385)] = 190444, - [SMALL_STATE(3386)] = 190512, - [SMALL_STATE(3387)] = 190586, - [SMALL_STATE(3388)] = 190660, - [SMALL_STATE(3389)] = 190728, - [SMALL_STATE(3390)] = 190802, - [SMALL_STATE(3391)] = 190876, - [SMALL_STATE(3392)] = 190950, - [SMALL_STATE(3393)] = 191018, - [SMALL_STATE(3394)] = 191092, - [SMALL_STATE(3395)] = 191160, - [SMALL_STATE(3396)] = 191234, - [SMALL_STATE(3397)] = 191302, - [SMALL_STATE(3398)] = 191376, - [SMALL_STATE(3399)] = 191444, - [SMALL_STATE(3400)] = 191512, - [SMALL_STATE(3401)] = 191586, - [SMALL_STATE(3402)] = 191658, - [SMALL_STATE(3403)] = 191726, - [SMALL_STATE(3404)] = 191800, - [SMALL_STATE(3405)] = 191868, - [SMALL_STATE(3406)] = 191942, - [SMALL_STATE(3407)] = 192014, - [SMALL_STATE(3408)] = 192082, - [SMALL_STATE(3409)] = 192150, - [SMALL_STATE(3410)] = 192224, - [SMALL_STATE(3411)] = 192298, - [SMALL_STATE(3412)] = 192366, - [SMALL_STATE(3413)] = 192440, - [SMALL_STATE(3414)] = 192514, - [SMALL_STATE(3415)] = 192588, - [SMALL_STATE(3416)] = 192662, - [SMALL_STATE(3417)] = 192730, - [SMALL_STATE(3418)] = 192798, - [SMALL_STATE(3419)] = 192870, - [SMALL_STATE(3420)] = 192942, - [SMALL_STATE(3421)] = 193014, - [SMALL_STATE(3422)] = 193082, - [SMALL_STATE(3423)] = 193156, - [SMALL_STATE(3424)] = 193224, - [SMALL_STATE(3425)] = 193292, - [SMALL_STATE(3426)] = 193360, - [SMALL_STATE(3427)] = 193428, - [SMALL_STATE(3428)] = 193502, - [SMALL_STATE(3429)] = 193570, - [SMALL_STATE(3430)] = 193638, - [SMALL_STATE(3431)] = 193706, - [SMALL_STATE(3432)] = 193778, - [SMALL_STATE(3433)] = 193850, - [SMALL_STATE(3434)] = 193924, - [SMALL_STATE(3435)] = 193998, - [SMALL_STATE(3436)] = 194072, - [SMALL_STATE(3437)] = 194146, - [SMALL_STATE(3438)] = 194218, - [SMALL_STATE(3439)] = 194292, - [SMALL_STATE(3440)] = 194364, - [SMALL_STATE(3441)] = 194436, - [SMALL_STATE(3442)] = 194504, - [SMALL_STATE(3443)] = 194572, - [SMALL_STATE(3444)] = 194646, - [SMALL_STATE(3445)] = 194720, - [SMALL_STATE(3446)] = 194788, - [SMALL_STATE(3447)] = 194860, - [SMALL_STATE(3448)] = 194932, - [SMALL_STATE(3449)] = 195006, - [SMALL_STATE(3450)] = 195080, - [SMALL_STATE(3451)] = 195154, - [SMALL_STATE(3452)] = 195228, - [SMALL_STATE(3453)] = 195296, - [SMALL_STATE(3454)] = 195368, - [SMALL_STATE(3455)] = 195442, - [SMALL_STATE(3456)] = 195514, - [SMALL_STATE(3457)] = 195582, - [SMALL_STATE(3458)] = 195656, - [SMALL_STATE(3459)] = 195730, - [SMALL_STATE(3460)] = 195802, - [SMALL_STATE(3461)] = 195874, - [SMALL_STATE(3462)] = 195942, - [SMALL_STATE(3463)] = 196016, - [SMALL_STATE(3464)] = 196090, - [SMALL_STATE(3465)] = 196164, - [SMALL_STATE(3466)] = 196238, - [SMALL_STATE(3467)] = 196312, - [SMALL_STATE(3468)] = 196386, - [SMALL_STATE(3469)] = 196460, - [SMALL_STATE(3470)] = 196534, - [SMALL_STATE(3471)] = 196608, - [SMALL_STATE(3472)] = 196676, - [SMALL_STATE(3473)] = 196750, - [SMALL_STATE(3474)] = 196824, - [SMALL_STATE(3475)] = 196896, - [SMALL_STATE(3476)] = 196970, - [SMALL_STATE(3477)] = 197044, - [SMALL_STATE(3478)] = 197118, - [SMALL_STATE(3479)] = 197186, - [SMALL_STATE(3480)] = 197232, - [SMALL_STATE(3481)] = 197300, - [SMALL_STATE(3482)] = 197374, - [SMALL_STATE(3483)] = 197448, - [SMALL_STATE(3484)] = 197516, - [SMALL_STATE(3485)] = 197584, - [SMALL_STATE(3486)] = 197658, - [SMALL_STATE(3487)] = 197732, - [SMALL_STATE(3488)] = 197806, - [SMALL_STATE(3489)] = 197880, - [SMALL_STATE(3490)] = 197948, - [SMALL_STATE(3491)] = 198022, - [SMALL_STATE(3492)] = 198096, - [SMALL_STATE(3493)] = 198170, - [SMALL_STATE(3494)] = 198244, - [SMALL_STATE(3495)] = 198318, - [SMALL_STATE(3496)] = 198392, - [SMALL_STATE(3497)] = 198460, - [SMALL_STATE(3498)] = 198534, - [SMALL_STATE(3499)] = 198602, - [SMALL_STATE(3500)] = 198676, - [SMALL_STATE(3501)] = 198750, - [SMALL_STATE(3502)] = 198824, - [SMALL_STATE(3503)] = 198898, - [SMALL_STATE(3504)] = 198972, - [SMALL_STATE(3505)] = 199046, - [SMALL_STATE(3506)] = 199120, - [SMALL_STATE(3507)] = 199194, - [SMALL_STATE(3508)] = 199268, - [SMALL_STATE(3509)] = 199342, - [SMALL_STATE(3510)] = 199416, - [SMALL_STATE(3511)] = 199490, - [SMALL_STATE(3512)] = 199558, - [SMALL_STATE(3513)] = 199626, - [SMALL_STATE(3514)] = 199700, - [SMALL_STATE(3515)] = 199774, - [SMALL_STATE(3516)] = 199848, - [SMALL_STATE(3517)] = 199922, - [SMALL_STATE(3518)] = 199996, - [SMALL_STATE(3519)] = 200070, - [SMALL_STATE(3520)] = 200144, - [SMALL_STATE(3521)] = 200218, - [SMALL_STATE(3522)] = 200292, - [SMALL_STATE(3523)] = 200349, - [SMALL_STATE(3524)] = 200394, - [SMALL_STATE(3525)] = 200469, - [SMALL_STATE(3526)] = 200512, - [SMALL_STATE(3527)] = 200555, - [SMALL_STATE(3528)] = 200612, - [SMALL_STATE(3529)] = 200687, - [SMALL_STATE(3530)] = 200752, - [SMALL_STATE(3531)] = 200827, - [SMALL_STATE(3532)] = 200883, - [SMALL_STATE(3533)] = 200925, - [SMALL_STATE(3534)] = 200967, - [SMALL_STATE(3535)] = 201009, - [SMALL_STATE(3536)] = 201051, - [SMALL_STATE(3537)] = 201093, - [SMALL_STATE(3538)] = 201165, - [SMALL_STATE(3539)] = 201207, - [SMALL_STATE(3540)] = 201251, - [SMALL_STATE(3541)] = 201293, - [SMALL_STATE(3542)] = 201365, - [SMALL_STATE(3543)] = 201421, - [SMALL_STATE(3544)] = 201463, - [SMALL_STATE(3545)] = 201505, - [SMALL_STATE(3546)] = 201577, - [SMALL_STATE(3547)] = 201619, - [SMALL_STATE(3548)] = 201661, - [SMALL_STATE(3549)] = 201702, - [SMALL_STATE(3550)] = 201743, - [SMALL_STATE(3551)] = 201778, - [SMALL_STATE(3552)] = 201813, - [SMALL_STATE(3553)] = 201856, - [SMALL_STATE(3554)] = 201891, - [SMALL_STATE(3555)] = 201934, - [SMALL_STATE(3556)] = 201977, - [SMALL_STATE(3557)] = 202012, - [SMALL_STATE(3558)] = 202055, - [SMALL_STATE(3559)] = 202090, - [SMALL_STATE(3560)] = 202125, - [SMALL_STATE(3561)] = 202160, - [SMALL_STATE(3562)] = 202201, - [SMALL_STATE(3563)] = 202236, - [SMALL_STATE(3564)] = 202271, - [SMALL_STATE(3565)] = 202308, - [SMALL_STATE(3566)] = 202347, - [SMALL_STATE(3567)] = 202388, - [SMALL_STATE(3568)] = 202423, - [SMALL_STATE(3569)] = 202458, - [SMALL_STATE(3570)] = 202493, - [SMALL_STATE(3571)] = 202528, - [SMALL_STATE(3572)] = 202563, - [SMALL_STATE(3573)] = 202598, - [SMALL_STATE(3574)] = 202633, - [SMALL_STATE(3575)] = 202678, - [SMALL_STATE(3576)] = 202729, - [SMALL_STATE(3577)] = 202784, - [SMALL_STATE(3578)] = 202835, - [SMALL_STATE(3579)] = 202880, - [SMALL_STATE(3580)] = 202915, - [SMALL_STATE(3581)] = 202952, - [SMALL_STATE(3582)] = 202989, - [SMALL_STATE(3583)] = 203024, - [SMALL_STATE(3584)] = 203065, - [SMALL_STATE(3585)] = 203100, - [SMALL_STATE(3586)] = 203137, - [SMALL_STATE(3587)] = 203172, - [SMALL_STATE(3588)] = 203207, - [SMALL_STATE(3589)] = 203242, - [SMALL_STATE(3590)] = 203297, - [SMALL_STATE(3591)] = 203334, - [SMALL_STATE(3592)] = 203375, - [SMALL_STATE(3593)] = 203410, - [SMALL_STATE(3594)] = 203465, - [SMALL_STATE(3595)] = 203506, - [SMALL_STATE(3596)] = 203545, - [SMALL_STATE(3597)] = 203586, - [SMALL_STATE(3598)] = 203627, - [SMALL_STATE(3599)] = 203662, - [SMALL_STATE(3600)] = 203717, - [SMALL_STATE(3601)] = 203758, - [SMALL_STATE(3602)] = 203793, - [SMALL_STATE(3603)] = 203832, - [SMALL_STATE(3604)] = 203873, - [SMALL_STATE(3605)] = 203914, - [SMALL_STATE(3606)] = 203949, - [SMALL_STATE(3607)] = 203984, - [SMALL_STATE(3608)] = 204019, - [SMALL_STATE(3609)] = 204054, - [SMALL_STATE(3610)] = 204095, - [SMALL_STATE(3611)] = 204136, - [SMALL_STATE(3612)] = 204191, - [SMALL_STATE(3613)] = 204246, - [SMALL_STATE(3614)] = 204287, - [SMALL_STATE(3615)] = 204328, - [SMALL_STATE(3616)] = 204369, - [SMALL_STATE(3617)] = 204404, - [SMALL_STATE(3618)] = 204445, - [SMALL_STATE(3619)] = 204486, - [SMALL_STATE(3620)] = 204525, - [SMALL_STATE(3621)] = 204560, - [SMALL_STATE(3622)] = 204595, - [SMALL_STATE(3623)] = 204636, - [SMALL_STATE(3624)] = 204671, - [SMALL_STATE(3625)] = 204712, - [SMALL_STATE(3626)] = 204753, - [SMALL_STATE(3627)] = 204788, - [SMALL_STATE(3628)] = 204823, - [SMALL_STATE(3629)] = 204864, - [SMALL_STATE(3630)] = 204903, - [SMALL_STATE(3631)] = 204938, - [SMALL_STATE(3632)] = 204979, - [SMALL_STATE(3633)] = 205014, - [SMALL_STATE(3634)] = 205049, - [SMALL_STATE(3635)] = 205092, - [SMALL_STATE(3636)] = 205133, - [SMALL_STATE(3637)] = 205167, - [SMALL_STATE(3638)] = 205219, - [SMALL_STATE(3639)] = 205257, - [SMALL_STATE(3640)] = 205291, - [SMALL_STATE(3641)] = 205343, - [SMALL_STATE(3642)] = 205383, - [SMALL_STATE(3643)] = 205423, - [SMALL_STATE(3644)] = 205463, - [SMALL_STATE(3645)] = 205497, - [SMALL_STATE(3646)] = 205537, - [SMALL_STATE(3647)] = 205577, - [SMALL_STATE(3648)] = 205617, - [SMALL_STATE(3649)] = 205657, - [SMALL_STATE(3650)] = 205691, - [SMALL_STATE(3651)] = 205731, - [SMALL_STATE(3652)] = 205765, - [SMALL_STATE(3653)] = 205799, - [SMALL_STATE(3654)] = 205839, - [SMALL_STATE(3655)] = 205879, - [SMALL_STATE(3656)] = 205919, - [SMALL_STATE(3657)] = 205959, - [SMALL_STATE(3658)] = 205999, - [SMALL_STATE(3659)] = 206033, - [SMALL_STATE(3660)] = 206071, - [SMALL_STATE(3661)] = 206111, - [SMALL_STATE(3662)] = 206149, - [SMALL_STATE(3663)] = 206183, - [SMALL_STATE(3664)] = 206217, - [SMALL_STATE(3665)] = 206259, - [SMALL_STATE(3666)] = 206299, - [SMALL_STATE(3667)] = 206341, - [SMALL_STATE(3668)] = 206391, - [SMALL_STATE(3669)] = 206429, - [SMALL_STATE(3670)] = 206463, - [SMALL_STATE(3671)] = 206503, - [SMALL_STATE(3672)] = 206537, - [SMALL_STATE(3673)] = 206575, - [SMALL_STATE(3674)] = 206615, - [SMALL_STATE(3675)] = 206655, - [SMALL_STATE(3676)] = 206689, - [SMALL_STATE(3677)] = 206729, - [SMALL_STATE(3678)] = 206769, - [SMALL_STATE(3679)] = 206803, - [SMALL_STATE(3680)] = 206843, - [SMALL_STATE(3681)] = 206883, - [SMALL_STATE(3682)] = 206923, - [SMALL_STATE(3683)] = 206957, - [SMALL_STATE(3684)] = 206991, - [SMALL_STATE(3685)] = 207029, - [SMALL_STATE(3686)] = 207069, - [SMALL_STATE(3687)] = 207107, - [SMALL_STATE(3688)] = 207141, - [SMALL_STATE(3689)] = 207181, - [SMALL_STATE(3690)] = 207215, - [SMALL_STATE(3691)] = 207249, - [SMALL_STATE(3692)] = 207289, - [SMALL_STATE(3693)] = 207329, - [SMALL_STATE(3694)] = 207363, - [SMALL_STATE(3695)] = 207403, - [SMALL_STATE(3696)] = 207437, - [SMALL_STATE(3697)] = 207475, - [SMALL_STATE(3698)] = 207513, - [SMALL_STATE(3699)] = 207549, - [SMALL_STATE(3700)] = 207583, - [SMALL_STATE(3701)] = 207621, - [SMALL_STATE(3702)] = 207661, - [SMALL_STATE(3703)] = 207695, - [SMALL_STATE(3704)] = 207733, - [SMALL_STATE(3705)] = 207785, - [SMALL_STATE(3706)] = 207819, - [SMALL_STATE(3707)] = 207859, - [SMALL_STATE(3708)] = 207893, - [SMALL_STATE(3709)] = 207927, - [SMALL_STATE(3710)] = 207961, - [SMALL_STATE(3711)] = 208011, - [SMALL_STATE(3712)] = 208045, - [SMALL_STATE(3713)] = 208079, - [SMALL_STATE(3714)] = 208119, - [SMALL_STATE(3715)] = 208171, - [SMALL_STATE(3716)] = 208211, - [SMALL_STATE(3717)] = 208251, - [SMALL_STATE(3718)] = 208285, - [SMALL_STATE(3719)] = 208319, - [SMALL_STATE(3720)] = 208359, - [SMALL_STATE(3721)] = 208393, - [SMALL_STATE(3722)] = 208427, - [SMALL_STATE(3723)] = 208467, - [SMALL_STATE(3724)] = 208501, - [SMALL_STATE(3725)] = 208535, - [SMALL_STATE(3726)] = 208569, - [SMALL_STATE(3727)] = 208603, - [SMALL_STATE(3728)] = 208637, - [SMALL_STATE(3729)] = 208671, - [SMALL_STATE(3730)] = 208711, - [SMALL_STATE(3731)] = 208753, - [SMALL_STATE(3732)] = 208793, - [SMALL_STATE(3733)] = 208833, - [SMALL_STATE(3734)] = 208867, - [SMALL_STATE(3735)] = 208907, - [SMALL_STATE(3736)] = 208941, - [SMALL_STATE(3737)] = 208975, - [SMALL_STATE(3738)] = 209009, - [SMALL_STATE(3739)] = 209043, - [SMALL_STATE(3740)] = 209077, - [SMALL_STATE(3741)] = 209121, - [SMALL_STATE(3742)] = 209165, - [SMALL_STATE(3743)] = 209224, - [SMALL_STATE(3744)] = 209289, - [SMALL_STATE(3745)] = 209322, - [SMALL_STATE(3746)] = 209359, - [SMALL_STATE(3747)] = 209418, - [SMALL_STATE(3748)] = 209477, - [SMALL_STATE(3749)] = 209526, - [SMALL_STATE(3750)] = 209559, - [SMALL_STATE(3751)] = 209592, - [SMALL_STATE(3752)] = 209651, - [SMALL_STATE(3753)] = 209686, - [SMALL_STATE(3754)] = 209729, - [SMALL_STATE(3755)] = 209788, - [SMALL_STATE(3756)] = 209853, - [SMALL_STATE(3757)] = 209912, - [SMALL_STATE(3758)] = 209945, - [SMALL_STATE(3759)] = 209978, - [SMALL_STATE(3760)] = 210011, - [SMALL_STATE(3761)] = 210044, - [SMALL_STATE(3762)] = 210103, - [SMALL_STATE(3763)] = 210136, - [SMALL_STATE(3764)] = 210195, - [SMALL_STATE(3765)] = 210228, - [SMALL_STATE(3766)] = 210261, - [SMALL_STATE(3767)] = 210294, - [SMALL_STATE(3768)] = 210333, - [SMALL_STATE(3769)] = 210372, - [SMALL_STATE(3770)] = 210411, - [SMALL_STATE(3771)] = 210450, - [SMALL_STATE(3772)] = 210489, - [SMALL_STATE(3773)] = 210528, - [SMALL_STATE(3774)] = 210567, - [SMALL_STATE(3775)] = 210606, - [SMALL_STATE(3776)] = 210665, - [SMALL_STATE(3777)] = 210704, - [SMALL_STATE(3778)] = 210743, - [SMALL_STATE(3779)] = 210802, - [SMALL_STATE(3780)] = 210841, - [SMALL_STATE(3781)] = 210900, - [SMALL_STATE(3782)] = 210947, - [SMALL_STATE(3783)] = 210986, - [SMALL_STATE(3784)] = 211019, - [SMALL_STATE(3785)] = 211078, - [SMALL_STATE(3786)] = 211111, - [SMALL_STATE(3787)] = 211150, - [SMALL_STATE(3788)] = 211189, - [SMALL_STATE(3789)] = 211222, - [SMALL_STATE(3790)] = 211255, - [SMALL_STATE(3791)] = 211314, - [SMALL_STATE(3792)] = 211347, - [SMALL_STATE(3793)] = 211380, - [SMALL_STATE(3794)] = 211413, - [SMALL_STATE(3795)] = 211446, - [SMALL_STATE(3796)] = 211479, - [SMALL_STATE(3797)] = 211518, - [SMALL_STATE(3798)] = 211583, - [SMALL_STATE(3799)] = 211648, - [SMALL_STATE(3800)] = 211687, - [SMALL_STATE(3801)] = 211726, - [SMALL_STATE(3802)] = 211765, - [SMALL_STATE(3803)] = 211824, - [SMALL_STATE(3804)] = 211883, - [SMALL_STATE(3805)] = 211942, - [SMALL_STATE(3806)] = 211981, - [SMALL_STATE(3807)] = 212024, - [SMALL_STATE(3808)] = 212083, - [SMALL_STATE(3809)] = 212122, - [SMALL_STATE(3810)] = 212155, - [SMALL_STATE(3811)] = 212204, - [SMALL_STATE(3812)] = 212263, - [SMALL_STATE(3813)] = 212312, - [SMALL_STATE(3814)] = 212359, - [SMALL_STATE(3815)] = 212418, - [SMALL_STATE(3816)] = 212451, - [SMALL_STATE(3817)] = 212510, - [SMALL_STATE(3818)] = 212559, - [SMALL_STATE(3819)] = 212618, - [SMALL_STATE(3820)] = 212677, - [SMALL_STATE(3821)] = 212710, - [SMALL_STATE(3822)] = 212769, - [SMALL_STATE(3823)] = 212828, - [SMALL_STATE(3824)] = 212869, - [SMALL_STATE(3825)] = 212902, - [SMALL_STATE(3826)] = 212961, - [SMALL_STATE(3827)] = 212994, - [SMALL_STATE(3828)] = 213059, - [SMALL_STATE(3829)] = 213100, - [SMALL_STATE(3830)] = 213139, - [SMALL_STATE(3831)] = 213204, - [SMALL_STATE(3832)] = 213263, - [SMALL_STATE(3833)] = 213322, - [SMALL_STATE(3834)] = 213359, - [SMALL_STATE(3835)] = 213418, - [SMALL_STATE(3836)] = 213477, - [SMALL_STATE(3837)] = 213536, - [SMALL_STATE(3838)] = 213575, - [SMALL_STATE(3839)] = 213634, - [SMALL_STATE(3840)] = 213667, - [SMALL_STATE(3841)] = 213726, - [SMALL_STATE(3842)] = 213759, - [SMALL_STATE(3843)] = 213798, - [SMALL_STATE(3844)] = 213837, - [SMALL_STATE(3845)] = 213876, - [SMALL_STATE(3846)] = 213935, - [SMALL_STATE(3847)] = 213968, - [SMALL_STATE(3848)] = 214007, - [SMALL_STATE(3849)] = 214046, - [SMALL_STATE(3850)] = 214085, - [SMALL_STATE(3851)] = 214118, - [SMALL_STATE(3852)] = 214177, - [SMALL_STATE(3853)] = 214210, - [SMALL_STATE(3854)] = 214249, - [SMALL_STATE(3855)] = 214308, - [SMALL_STATE(3856)] = 214367, - [SMALL_STATE(3857)] = 214400, - [SMALL_STATE(3858)] = 214459, - [SMALL_STATE(3859)] = 214518, - [SMALL_STATE(3860)] = 214561, - [SMALL_STATE(3861)] = 214620, - [SMALL_STATE(3862)] = 214653, - [SMALL_STATE(3863)] = 214712, - [SMALL_STATE(3864)] = 214745, - [SMALL_STATE(3865)] = 214804, - [SMALL_STATE(3866)] = 214869, - [SMALL_STATE(3867)] = 214934, - [SMALL_STATE(3868)] = 214973, - [SMALL_STATE(3869)] = 215032, - [SMALL_STATE(3870)] = 215071, - [SMALL_STATE(3871)] = 215130, - [SMALL_STATE(3872)] = 215169, - [SMALL_STATE(3873)] = 215218, - [SMALL_STATE(3874)] = 215257, - [SMALL_STATE(3875)] = 215290, - [SMALL_STATE(3876)] = 215339, - [SMALL_STATE(3877)] = 215378, - [SMALL_STATE(3878)] = 215417, - [SMALL_STATE(3879)] = 215456, - [SMALL_STATE(3880)] = 215495, - [SMALL_STATE(3881)] = 215554, - [SMALL_STATE(3882)] = 215591, - [SMALL_STATE(3883)] = 215650, - [SMALL_STATE(3884)] = 215683, - [SMALL_STATE(3885)] = 215742, - [SMALL_STATE(3886)] = 215801, - [SMALL_STATE(3887)] = 215860, - [SMALL_STATE(3888)] = 215897, - [SMALL_STATE(3889)] = 215938, - [SMALL_STATE(3890)] = 215997, - [SMALL_STATE(3891)] = 216038, - [SMALL_STATE(3892)] = 216075, - [SMALL_STATE(3893)] = 216134, - [SMALL_STATE(3894)] = 216193, - [SMALL_STATE(3895)] = 216226, - [SMALL_STATE(3896)] = 216285, - [SMALL_STATE(3897)] = 216322, - [SMALL_STATE(3898)] = 216357, - [SMALL_STATE(3899)] = 216416, - [SMALL_STATE(3900)] = 216459, - [SMALL_STATE(3901)] = 216492, - [SMALL_STATE(3902)] = 216525, - [SMALL_STATE(3903)] = 216584, - [SMALL_STATE(3904)] = 216617, - [SMALL_STATE(3905)] = 216676, - [SMALL_STATE(3906)] = 216711, - [SMALL_STATE(3907)] = 216744, - [SMALL_STATE(3908)] = 216787, - [SMALL_STATE(3909)] = 216846, - [SMALL_STATE(3910)] = 216905, - [SMALL_STATE(3911)] = 216948, - [SMALL_STATE(3912)] = 217007, - [SMALL_STATE(3913)] = 217066, - [SMALL_STATE(3914)] = 217131, - [SMALL_STATE(3915)] = 217190, - [SMALL_STATE(3916)] = 217227, - [SMALL_STATE(3917)] = 217268, - [SMALL_STATE(3918)] = 217301, - [SMALL_STATE(3919)] = 217360, - [SMALL_STATE(3920)] = 217400, - [SMALL_STATE(3921)] = 217432, - [SMALL_STATE(3922)] = 217464, - [SMALL_STATE(3923)] = 217510, - [SMALL_STATE(3924)] = 217542, - [SMALL_STATE(3925)] = 217604, - [SMALL_STATE(3926)] = 217666, - [SMALL_STATE(3927)] = 217706, - [SMALL_STATE(3928)] = 217738, - [SMALL_STATE(3929)] = 217770, - [SMALL_STATE(3930)] = 217802, - [SMALL_STATE(3931)] = 217834, - [SMALL_STATE(3932)] = 217866, - [SMALL_STATE(3933)] = 217898, - [SMALL_STATE(3934)] = 217960, - [SMALL_STATE(3935)] = 218022, - [SMALL_STATE(3936)] = 218054, - [SMALL_STATE(3937)] = 218116, - [SMALL_STATE(3938)] = 218148, - [SMALL_STATE(3939)] = 218180, - [SMALL_STATE(3940)] = 218212, - [SMALL_STATE(3941)] = 218244, - [SMALL_STATE(3942)] = 218280, - [SMALL_STATE(3943)] = 218312, - [SMALL_STATE(3944)] = 218344, - [SMALL_STATE(3945)] = 218376, - [SMALL_STATE(3946)] = 218408, - [SMALL_STATE(3947)] = 218440, - [SMALL_STATE(3948)] = 218472, - [SMALL_STATE(3949)] = 218508, - [SMALL_STATE(3950)] = 218554, - [SMALL_STATE(3951)] = 218586, - [SMALL_STATE(3952)] = 218618, - [SMALL_STATE(3953)] = 218650, - [SMALL_STATE(3954)] = 218682, - [SMALL_STATE(3955)] = 218722, - [SMALL_STATE(3956)] = 218754, - [SMALL_STATE(3957)] = 218786, - [SMALL_STATE(3958)] = 218818, - [SMALL_STATE(3959)] = 218850, - [SMALL_STATE(3960)] = 218882, - [SMALL_STATE(3961)] = 218914, - [SMALL_STATE(3962)] = 218946, - [SMALL_STATE(3963)] = 218978, - [SMALL_STATE(3964)] = 219010, - [SMALL_STATE(3965)] = 219042, - [SMALL_STATE(3966)] = 219074, - [SMALL_STATE(3967)] = 219106, - [SMALL_STATE(3968)] = 219138, - [SMALL_STATE(3969)] = 219170, - [SMALL_STATE(3970)] = 219202, - [SMALL_STATE(3971)] = 219234, - [SMALL_STATE(3972)] = 219266, - [SMALL_STATE(3973)] = 219298, - [SMALL_STATE(3974)] = 219334, - [SMALL_STATE(3975)] = 219366, - [SMALL_STATE(3976)] = 219408, - [SMALL_STATE(3977)] = 219440, - [SMALL_STATE(3978)] = 219472, - [SMALL_STATE(3979)] = 219504, - [SMALL_STATE(3980)] = 219536, - [SMALL_STATE(3981)] = 219582, - [SMALL_STATE(3982)] = 219614, - [SMALL_STATE(3983)] = 219676, - [SMALL_STATE(3984)] = 219708, - [SMALL_STATE(3985)] = 219744, - [SMALL_STATE(3986)] = 219778, - [SMALL_STATE(3987)] = 219820, - [SMALL_STATE(3988)] = 219852, - [SMALL_STATE(3989)] = 219884, - [SMALL_STATE(3990)] = 219916, - [SMALL_STATE(3991)] = 219948, - [SMALL_STATE(3992)] = 219988, - [SMALL_STATE(3993)] = 220050, - [SMALL_STATE(3994)] = 220082, - [SMALL_STATE(3995)] = 220114, - [SMALL_STATE(3996)] = 220176, - [SMALL_STATE(3997)] = 220238, - [SMALL_STATE(3998)] = 220270, - [SMALL_STATE(3999)] = 220302, - [SMALL_STATE(4000)] = 220342, - [SMALL_STATE(4001)] = 220382, - [SMALL_STATE(4002)] = 220414, - [SMALL_STATE(4003)] = 220446, - [SMALL_STATE(4004)] = 220478, - [SMALL_STATE(4005)] = 220510, - [SMALL_STATE(4006)] = 220542, - [SMALL_STATE(4007)] = 220574, - [SMALL_STATE(4008)] = 220614, - [SMALL_STATE(4009)] = 220646, - [SMALL_STATE(4010)] = 220678, - [SMALL_STATE(4011)] = 220710, - [SMALL_STATE(4012)] = 220756, - [SMALL_STATE(4013)] = 220788, - [SMALL_STATE(4014)] = 220820, - [SMALL_STATE(4015)] = 220852, - [SMALL_STATE(4016)] = 220884, - [SMALL_STATE(4017)] = 220922, - [SMALL_STATE(4018)] = 220954, - [SMALL_STATE(4019)] = 220992, - [SMALL_STATE(4020)] = 221024, - [SMALL_STATE(4021)] = 221056, - [SMALL_STATE(4022)] = 221088, - [SMALL_STATE(4023)] = 221120, - [SMALL_STATE(4024)] = 221152, - [SMALL_STATE(4025)] = 221184, - [SMALL_STATE(4026)] = 221230, - [SMALL_STATE(4027)] = 221262, - [SMALL_STATE(4028)] = 221300, - [SMALL_STATE(4029)] = 221338, - [SMALL_STATE(4030)] = 221376, - [SMALL_STATE(4031)] = 221414, - [SMALL_STATE(4032)] = 221452, - [SMALL_STATE(4033)] = 221490, - [SMALL_STATE(4034)] = 221522, - [SMALL_STATE(4035)] = 221560, - [SMALL_STATE(4036)] = 221592, - [SMALL_STATE(4037)] = 221630, - [SMALL_STATE(4038)] = 221662, - [SMALL_STATE(4039)] = 221694, - [SMALL_STATE(4040)] = 221726, - [SMALL_STATE(4041)] = 221762, - [SMALL_STATE(4042)] = 221794, - [SMALL_STATE(4043)] = 221826, - [SMALL_STATE(4044)] = 221872, - [SMALL_STATE(4045)] = 221904, - [SMALL_STATE(4046)] = 221936, - [SMALL_STATE(4047)] = 221976, - [SMALL_STATE(4048)] = 222008, - [SMALL_STATE(4049)] = 222040, - [SMALL_STATE(4050)] = 222072, - [SMALL_STATE(4051)] = 222104, - [SMALL_STATE(4052)] = 222136, - [SMALL_STATE(4053)] = 222176, - [SMALL_STATE(4054)] = 222208, - [SMALL_STATE(4055)] = 222240, - [SMALL_STATE(4056)] = 222272, - [SMALL_STATE(4057)] = 222304, - [SMALL_STATE(4058)] = 222336, - [SMALL_STATE(4059)] = 222368, - [SMALL_STATE(4060)] = 222400, - [SMALL_STATE(4061)] = 222432, - [SMALL_STATE(4062)] = 222464, - [SMALL_STATE(4063)] = 222496, - [SMALL_STATE(4064)] = 222528, - [SMALL_STATE(4065)] = 222560, - [SMALL_STATE(4066)] = 222592, - [SMALL_STATE(4067)] = 222624, - [SMALL_STATE(4068)] = 222656, - [SMALL_STATE(4069)] = 222688, - [SMALL_STATE(4070)] = 222720, - [SMALL_STATE(4071)] = 222752, - [SMALL_STATE(4072)] = 222787, - [SMALL_STATE(4073)] = 222818, - [SMALL_STATE(4074)] = 222857, - [SMALL_STATE(4075)] = 222896, - [SMALL_STATE(4076)] = 222941, - [SMALL_STATE(4077)] = 222986, - [SMALL_STATE(4078)] = 223023, - [SMALL_STATE(4079)] = 223060, - [SMALL_STATE(4080)] = 223107, - [SMALL_STATE(4081)] = 223144, - [SMALL_STATE(4082)] = 223181, - [SMALL_STATE(4083)] = 223218, - [SMALL_STATE(4084)] = 223257, - [SMALL_STATE(4085)] = 223292, - [SMALL_STATE(4086)] = 223331, - [SMALL_STATE(4087)] = 223378, - [SMALL_STATE(4088)] = 223417, - [SMALL_STATE(4089)] = 223452, - [SMALL_STATE(4090)] = 223497, - [SMALL_STATE(4091)] = 223536, - [SMALL_STATE(4092)] = 223571, - [SMALL_STATE(4093)] = 223610, - [SMALL_STATE(4094)] = 223645, - [SMALL_STATE(4095)] = 223684, - [SMALL_STATE(4096)] = 223729, - [SMALL_STATE(4097)] = 223764, - [SMALL_STATE(4098)] = 223809, - [SMALL_STATE(4099)] = 223846, - [SMALL_STATE(4100)] = 223885, - [SMALL_STATE(4101)] = 223920, - [SMALL_STATE(4102)] = 223965, - [SMALL_STATE(4103)] = 224002, - [SMALL_STATE(4104)] = 224037, - [SMALL_STATE(4105)] = 224072, - [SMALL_STATE(4106)] = 224111, - [SMALL_STATE(4107)] = 224146, - [SMALL_STATE(4108)] = 224183, - [SMALL_STATE(4109)] = 224222, - [SMALL_STATE(4110)] = 224261, - [SMALL_STATE(4111)] = 224298, - [SMALL_STATE(4112)] = 224328, - [SMALL_STATE(4113)] = 224378, - [SMALL_STATE(4114)] = 224414, - [SMALL_STATE(4115)] = 224446, - [SMALL_STATE(4116)] = 224478, - [SMALL_STATE(4117)] = 224510, - [SMALL_STATE(4118)] = 224566, - [SMALL_STATE(4119)] = 224598, - [SMALL_STATE(4120)] = 224630, - [SMALL_STATE(4121)] = 224686, - [SMALL_STATE(4122)] = 224742, - [SMALL_STATE(4123)] = 224774, - [SMALL_STATE(4124)] = 224830, - [SMALL_STATE(4125)] = 224864, - [SMALL_STATE(4126)] = 224920, - [SMALL_STATE(4127)] = 224976, - [SMALL_STATE(4128)] = 225032, - [SMALL_STATE(4129)] = 225088, - [SMALL_STATE(4130)] = 225118, - [SMALL_STATE(4131)] = 225174, - [SMALL_STATE(4132)] = 225230, - [SMALL_STATE(4133)] = 225286, - [SMALL_STATE(4134)] = 225316, - [SMALL_STATE(4135)] = 225346, - [SMALL_STATE(4136)] = 225380, - [SMALL_STATE(4137)] = 225436, - [SMALL_STATE(4138)] = 225492, - [SMALL_STATE(4139)] = 225524, - [SMALL_STATE(4140)] = 225580, - [SMALL_STATE(4141)] = 225636, - [SMALL_STATE(4142)] = 225692, - [SMALL_STATE(4143)] = 225724, - [SMALL_STATE(4144)] = 225756, - [SMALL_STATE(4145)] = 225812, - [SMALL_STATE(4146)] = 225844, - [SMALL_STATE(4147)] = 225882, - [SMALL_STATE(4148)] = 225914, - [SMALL_STATE(4149)] = 225970, - [SMALL_STATE(4150)] = 226006, - [SMALL_STATE(4151)] = 226062, - [SMALL_STATE(4152)] = 226118, - [SMALL_STATE(4153)] = 226150, - [SMALL_STATE(4154)] = 226188, - [SMALL_STATE(4155)] = 226226, - [SMALL_STATE(4156)] = 226262, - [SMALL_STATE(4157)] = 226318, - [SMALL_STATE(4158)] = 226354, - [SMALL_STATE(4159)] = 226384, - [SMALL_STATE(4160)] = 226440, - [SMALL_STATE(4161)] = 226496, - [SMALL_STATE(4162)] = 226552, - [SMALL_STATE(4163)] = 226584, - [SMALL_STATE(4164)] = 226640, - [SMALL_STATE(4165)] = 226670, - [SMALL_STATE(4166)] = 226700, - [SMALL_STATE(4167)] = 226730, - [SMALL_STATE(4168)] = 226762, - [SMALL_STATE(4169)] = 226792, - [SMALL_STATE(4170)] = 226826, - [SMALL_STATE(4171)] = 226868, - [SMALL_STATE(4172)] = 226898, - [SMALL_STATE(4173)] = 226932, - [SMALL_STATE(4174)] = 226988, - [SMALL_STATE(4175)] = 227030, - [SMALL_STATE(4176)] = 227062, - [SMALL_STATE(4177)] = 227118, - [SMALL_STATE(4178)] = 227148, - [SMALL_STATE(4179)] = 227178, - [SMALL_STATE(4180)] = 227208, - [SMALL_STATE(4181)] = 227264, - [SMALL_STATE(4182)] = 227320, - [SMALL_STATE(4183)] = 227350, - [SMALL_STATE(4184)] = 227406, - [SMALL_STATE(4185)] = 227462, - [SMALL_STATE(4186)] = 227518, - [SMALL_STATE(4187)] = 227574, - [SMALL_STATE(4188)] = 227630, - [SMALL_STATE(4189)] = 227686, - [SMALL_STATE(4190)] = 227742, - [SMALL_STATE(4191)] = 227798, - [SMALL_STATE(4192)] = 227834, - [SMALL_STATE(4193)] = 227870, - [SMALL_STATE(4194)] = 227926, - [SMALL_STATE(4195)] = 227966, - [SMALL_STATE(4196)] = 227998, - [SMALL_STATE(4197)] = 228030, - [SMALL_STATE(4198)] = 228086, - [SMALL_STATE(4199)] = 228116, - [SMALL_STATE(4200)] = 228152, - [SMALL_STATE(4201)] = 228182, - [SMALL_STATE(4202)] = 228218, - [SMALL_STATE(4203)] = 228250, - [SMALL_STATE(4204)] = 228282, - [SMALL_STATE(4205)] = 228314, - [SMALL_STATE(4206)] = 228346, - [SMALL_STATE(4207)] = 228388, - [SMALL_STATE(4208)] = 228420, - [SMALL_STATE(4209)] = 228450, - [SMALL_STATE(4210)] = 228482, - [SMALL_STATE(4211)] = 228512, - [SMALL_STATE(4212)] = 228542, - [SMALL_STATE(4213)] = 228574, - [SMALL_STATE(4214)] = 228616, - [SMALL_STATE(4215)] = 228645, - [SMALL_STATE(4216)] = 228674, - [SMALL_STATE(4217)] = 228721, - [SMALL_STATE(4218)] = 228754, - [SMALL_STATE(4219)] = 228783, - [SMALL_STATE(4220)] = 228812, - [SMALL_STATE(4221)] = 228851, - [SMALL_STATE(4222)] = 228884, - [SMALL_STATE(4223)] = 228915, - [SMALL_STATE(4224)] = 228944, - [SMALL_STATE(4225)] = 228977, - [SMALL_STATE(4226)] = 229006, - [SMALL_STATE(4227)] = 229035, - [SMALL_STATE(4228)] = 229076, - [SMALL_STATE(4229)] = 229115, - [SMALL_STATE(4230)] = 229148, - [SMALL_STATE(4231)] = 229177, - [SMALL_STATE(4232)] = 229206, - [SMALL_STATE(4233)] = 229235, - [SMALL_STATE(4234)] = 229264, - [SMALL_STATE(4235)] = 229299, - [SMALL_STATE(4236)] = 229328, - [SMALL_STATE(4237)] = 229357, - [SMALL_STATE(4238)] = 229386, - [SMALL_STATE(4239)] = 229419, - [SMALL_STATE(4240)] = 229448, - [SMALL_STATE(4241)] = 229495, - [SMALL_STATE(4242)] = 229524, - [SMALL_STATE(4243)] = 229553, - [SMALL_STATE(4244)] = 229582, - [SMALL_STATE(4245)] = 229611, - [SMALL_STATE(4246)] = 229640, - [SMALL_STATE(4247)] = 229681, - [SMALL_STATE(4248)] = 229710, - [SMALL_STATE(4249)] = 229739, - [SMALL_STATE(4250)] = 229772, - [SMALL_STATE(4251)] = 229801, - [SMALL_STATE(4252)] = 229830, - [SMALL_STATE(4253)] = 229873, - [SMALL_STATE(4254)] = 229902, - [SMALL_STATE(4255)] = 229931, - [SMALL_STATE(4256)] = 229960, - [SMALL_STATE(4257)] = 229989, - [SMALL_STATE(4258)] = 230018, - [SMALL_STATE(4259)] = 230047, - [SMALL_STATE(4260)] = 230076, - [SMALL_STATE(4261)] = 230105, - [SMALL_STATE(4262)] = 230140, - [SMALL_STATE(4263)] = 230173, - [SMALL_STATE(4264)] = 230206, - [SMALL_STATE(4265)] = 230235, - [SMALL_STATE(4266)] = 230270, - [SMALL_STATE(4267)] = 230303, - [SMALL_STATE(4268)] = 230350, - [SMALL_STATE(4269)] = 230383, - [SMALL_STATE(4270)] = 230418, - [SMALL_STATE(4271)] = 230447, - [SMALL_STATE(4272)] = 230476, - [SMALL_STATE(4273)] = 230505, - [SMALL_STATE(4274)] = 230534, - [SMALL_STATE(4275)] = 230567, - [SMALL_STATE(4276)] = 230600, - [SMALL_STATE(4277)] = 230629, - [SMALL_STATE(4278)] = 230664, - [SMALL_STATE(4279)] = 230693, - [SMALL_STATE(4280)] = 230722, - [SMALL_STATE(4281)] = 230757, - [SMALL_STATE(4282)] = 230786, - [SMALL_STATE(4283)] = 230815, - [SMALL_STATE(4284)] = 230844, - [SMALL_STATE(4285)] = 230873, - [SMALL_STATE(4286)] = 230916, - [SMALL_STATE(4287)] = 230951, - [SMALL_STATE(4288)] = 230984, - [SMALL_STATE(4289)] = 231017, - [SMALL_STATE(4290)] = 231050, - [SMALL_STATE(4291)] = 231079, - [SMALL_STATE(4292)] = 231108, - [SMALL_STATE(4293)] = 231143, - [SMALL_STATE(4294)] = 231172, - [SMALL_STATE(4295)] = 231201, - [SMALL_STATE(4296)] = 231230, - [SMALL_STATE(4297)] = 231259, - [SMALL_STATE(4298)] = 231288, - [SMALL_STATE(4299)] = 231317, - [SMALL_STATE(4300)] = 231352, - [SMALL_STATE(4301)] = 231411, - [SMALL_STATE(4302)] = 231440, - [SMALL_STATE(4303)] = 231469, - [SMALL_STATE(4304)] = 231504, - [SMALL_STATE(4305)] = 231539, - [SMALL_STATE(4306)] = 231574, - [SMALL_STATE(4307)] = 231609, - [SMALL_STATE(4308)] = 231638, - [SMALL_STATE(4309)] = 231667, - [SMALL_STATE(4310)] = 231696, - [SMALL_STATE(4311)] = 231729, - [SMALL_STATE(4312)] = 231764, - [SMALL_STATE(4313)] = 231797, - [SMALL_STATE(4314)] = 231826, - [SMALL_STATE(4315)] = 231855, - [SMALL_STATE(4316)] = 231884, - [SMALL_STATE(4317)] = 231919, - [SMALL_STATE(4318)] = 231948, - [SMALL_STATE(4319)] = 231977, - [SMALL_STATE(4320)] = 232006, - [SMALL_STATE(4321)] = 232035, - [SMALL_STATE(4322)] = 232070, - [SMALL_STATE(4323)] = 232098, - [SMALL_STATE(4324)] = 232126, - [SMALL_STATE(4325)] = 232154, - [SMALL_STATE(4326)] = 232182, - [SMALL_STATE(4327)] = 232224, - [SMALL_STATE(4328)] = 232286, - [SMALL_STATE(4329)] = 232318, - [SMALL_STATE(4330)] = 232352, - [SMALL_STATE(4331)] = 232384, - [SMALL_STATE(4332)] = 232412, - [SMALL_STATE(4333)] = 232444, - [SMALL_STATE(4334)] = 232472, - [SMALL_STATE(4335)] = 232504, - [SMALL_STATE(4336)] = 232532, - [SMALL_STATE(4337)] = 232560, - [SMALL_STATE(4338)] = 232588, - [SMALL_STATE(4339)] = 232616, - [SMALL_STATE(4340)] = 232672, - [SMALL_STATE(4341)] = 232700, - [SMALL_STATE(4342)] = 232732, - [SMALL_STATE(4343)] = 232764, - [SMALL_STATE(4344)] = 232792, - [SMALL_STATE(4345)] = 232824, - [SMALL_STATE(4346)] = 232858, - [SMALL_STATE(4347)] = 232886, - [SMALL_STATE(4348)] = 232918, - [SMALL_STATE(4349)] = 232950, - [SMALL_STATE(4350)] = 232978, - [SMALL_STATE(4351)] = 233010, - [SMALL_STATE(4352)] = 233042, - [SMALL_STATE(4353)] = 233070, - [SMALL_STATE(4354)] = 233098, - [SMALL_STATE(4355)] = 233126, - [SMALL_STATE(4356)] = 233154, - [SMALL_STATE(4357)] = 233186, - [SMALL_STATE(4358)] = 233218, - [SMALL_STATE(4359)] = 233254, - [SMALL_STATE(4360)] = 233282, - [SMALL_STATE(4361)] = 233310, - [SMALL_STATE(4362)] = 233338, - [SMALL_STATE(4363)] = 233366, - [SMALL_STATE(4364)] = 233394, - [SMALL_STATE(4365)] = 233432, - [SMALL_STATE(4366)] = 233460, - [SMALL_STATE(4367)] = 233488, - [SMALL_STATE(4368)] = 233518, - [SMALL_STATE(4369)] = 233550, - [SMALL_STATE(4370)] = 233578, - [SMALL_STATE(4371)] = 233606, - [SMALL_STATE(4372)] = 233634, - [SMALL_STATE(4373)] = 233668, - [SMALL_STATE(4374)] = 233712, - [SMALL_STATE(4375)] = 233740, - [SMALL_STATE(4376)] = 233772, - [SMALL_STATE(4377)] = 233800, - [SMALL_STATE(4378)] = 233836, - [SMALL_STATE(4379)] = 233864, - [SMALL_STATE(4380)] = 233902, - [SMALL_STATE(4381)] = 233930, - [SMALL_STATE(4382)] = 233958, - [SMALL_STATE(4383)] = 233986, - [SMALL_STATE(4384)] = 234014, - [SMALL_STATE(4385)] = 234042, - [SMALL_STATE(4386)] = 234084, - [SMALL_STATE(4387)] = 234112, - [SMALL_STATE(4388)] = 234168, - [SMALL_STATE(4389)] = 234196, - [SMALL_STATE(4390)] = 234224, - [SMALL_STATE(4391)] = 234252, - [SMALL_STATE(4392)] = 234284, - [SMALL_STATE(4393)] = 234311, - [SMALL_STATE(4394)] = 234338, - [SMALL_STATE(4395)] = 234365, - [SMALL_STATE(4396)] = 234392, - [SMALL_STATE(4397)] = 234419, - [SMALL_STATE(4398)] = 234450, - [SMALL_STATE(4399)] = 234477, - [SMALL_STATE(4400)] = 234504, - [SMALL_STATE(4401)] = 234541, - [SMALL_STATE(4402)] = 234568, - [SMALL_STATE(4403)] = 234595, - [SMALL_STATE(4404)] = 234622, - [SMALL_STATE(4405)] = 234653, - [SMALL_STATE(4406)] = 234680, - [SMALL_STATE(4407)] = 234707, - [SMALL_STATE(4408)] = 234734, - [SMALL_STATE(4409)] = 234761, - [SMALL_STATE(4410)] = 234798, - [SMALL_STATE(4411)] = 234825, - [SMALL_STATE(4412)] = 234856, - [SMALL_STATE(4413)] = 234883, - [SMALL_STATE(4414)] = 234914, - [SMALL_STATE(4415)] = 234951, - [SMALL_STATE(4416)] = 234986, - [SMALL_STATE(4417)] = 235013, - [SMALL_STATE(4418)] = 235050, - [SMALL_STATE(4419)] = 235097, - [SMALL_STATE(4420)] = 235124, - [SMALL_STATE(4421)] = 235151, - [SMALL_STATE(4422)] = 235182, - [SMALL_STATE(4423)] = 235213, - [SMALL_STATE(4424)] = 235240, - [SMALL_STATE(4425)] = 235271, - [SMALL_STATE(4426)] = 235306, - [SMALL_STATE(4427)] = 235333, - [SMALL_STATE(4428)] = 235368, - [SMALL_STATE(4429)] = 235394, - [SMALL_STATE(4430)] = 235430, - [SMALL_STATE(4431)] = 235456, - [SMALL_STATE(4432)] = 235482, - [SMALL_STATE(4433)] = 235520, - [SMALL_STATE(4434)] = 235552, - [SMALL_STATE(4435)] = 235590, - [SMALL_STATE(4436)] = 235628, - [SMALL_STATE(4437)] = 235666, - [SMALL_STATE(4438)] = 235698, - [SMALL_STATE(4439)] = 235724, - [SMALL_STATE(4440)] = 235750, - [SMALL_STATE(4441)] = 235788, - [SMALL_STATE(4442)] = 235826, - [SMALL_STATE(4443)] = 235864, - [SMALL_STATE(4444)] = 235896, - [SMALL_STATE(4445)] = 235922, - [SMALL_STATE(4446)] = 235948, - [SMALL_STATE(4447)] = 235984, - [SMALL_STATE(4448)] = 236016, - [SMALL_STATE(4449)] = 236042, - [SMALL_STATE(4450)] = 236068, - [SMALL_STATE(4451)] = 236094, - [SMALL_STATE(4452)] = 236120, - [SMALL_STATE(4453)] = 236146, - [SMALL_STATE(4454)] = 236178, - [SMALL_STATE(4455)] = 236204, - [SMALL_STATE(4456)] = 236230, - [SMALL_STATE(4457)] = 236256, - [SMALL_STATE(4458)] = 236282, - [SMALL_STATE(4459)] = 236308, - [SMALL_STATE(4460)] = 236334, - [SMALL_STATE(4461)] = 236360, - [SMALL_STATE(4462)] = 236386, - [SMALL_STATE(4463)] = 236412, - [SMALL_STATE(4464)] = 236438, - [SMALL_STATE(4465)] = 236470, - [SMALL_STATE(4466)] = 236496, - [SMALL_STATE(4467)] = 236522, - [SMALL_STATE(4468)] = 236548, - [SMALL_STATE(4469)] = 236574, - [SMALL_STATE(4470)] = 236600, - [SMALL_STATE(4471)] = 236626, - [SMALL_STATE(4472)] = 236652, - [SMALL_STATE(4473)] = 236678, - [SMALL_STATE(4474)] = 236704, - [SMALL_STATE(4475)] = 236740, - [SMALL_STATE(4476)] = 236766, - [SMALL_STATE(4477)] = 236792, - [SMALL_STATE(4478)] = 236830, - [SMALL_STATE(4479)] = 236856, - [SMALL_STATE(4480)] = 236882, - [SMALL_STATE(4481)] = 236920, - [SMALL_STATE(4482)] = 236946, - [SMALL_STATE(4483)] = 236971, - [SMALL_STATE(4484)] = 236996, - [SMALL_STATE(4485)] = 237031, - [SMALL_STATE(4486)] = 237056, - [SMALL_STATE(4487)] = 237081, - [SMALL_STATE(4488)] = 237106, - [SMALL_STATE(4489)] = 237137, - [SMALL_STATE(4490)] = 237168, - [SMALL_STATE(4491)] = 237193, - [SMALL_STATE(4492)] = 237218, - [SMALL_STATE(4493)] = 237249, - [SMALL_STATE(4494)] = 237284, - [SMALL_STATE(4495)] = 237309, - [SMALL_STATE(4496)] = 237334, - [SMALL_STATE(4497)] = 237369, - [SMALL_STATE(4498)] = 237394, - [SMALL_STATE(4499)] = 237419, - [SMALL_STATE(4500)] = 237450, - [SMALL_STATE(4501)] = 237481, - [SMALL_STATE(4502)] = 237506, - [SMALL_STATE(4503)] = 237531, - [SMALL_STATE(4504)] = 237562, - [SMALL_STATE(4505)] = 237587, - [SMALL_STATE(4506)] = 237622, - [SMALL_STATE(4507)] = 237647, - [SMALL_STATE(4508)] = 237672, - [SMALL_STATE(4509)] = 237697, - [SMALL_STATE(4510)] = 237722, - [SMALL_STATE(4511)] = 237747, - [SMALL_STATE(4512)] = 237772, - [SMALL_STATE(4513)] = 237797, - [SMALL_STATE(4514)] = 237822, - [SMALL_STATE(4515)] = 237847, - [SMALL_STATE(4516)] = 237872, - [SMALL_STATE(4517)] = 237897, - [SMALL_STATE(4518)] = 237922, - [SMALL_STATE(4519)] = 237947, - [SMALL_STATE(4520)] = 237972, - [SMALL_STATE(4521)] = 237997, - [SMALL_STATE(4522)] = 238022, - [SMALL_STATE(4523)] = 238047, - [SMALL_STATE(4524)] = 238072, - [SMALL_STATE(4525)] = 238097, - [SMALL_STATE(4526)] = 238128, - [SMALL_STATE(4527)] = 238163, - [SMALL_STATE(4528)] = 238188, - [SMALL_STATE(4529)] = 238213, - [SMALL_STATE(4530)] = 238238, - [SMALL_STATE(4531)] = 238263, - [SMALL_STATE(4532)] = 238288, - [SMALL_STATE(4533)] = 238313, - [SMALL_STATE(4534)] = 238338, - [SMALL_STATE(4535)] = 238363, - [SMALL_STATE(4536)] = 238388, - [SMALL_STATE(4537)] = 238413, - [SMALL_STATE(4538)] = 238438, - [SMALL_STATE(4539)] = 238463, - [SMALL_STATE(4540)] = 238488, - [SMALL_STATE(4541)] = 238513, - [SMALL_STATE(4542)] = 238538, - [SMALL_STATE(4543)] = 238563, - [SMALL_STATE(4544)] = 238588, - [SMALL_STATE(4545)] = 238623, - [SMALL_STATE(4546)] = 238648, - [SMALL_STATE(4547)] = 238673, - [SMALL_STATE(4548)] = 238698, - [SMALL_STATE(4549)] = 238723, - [SMALL_STATE(4550)] = 238762, - [SMALL_STATE(4551)] = 238797, - [SMALL_STATE(4552)] = 238822, - [SMALL_STATE(4553)] = 238857, - [SMALL_STATE(4554)] = 238881, - [SMALL_STATE(4555)] = 238905, - [SMALL_STATE(4556)] = 238929, - [SMALL_STATE(4557)] = 238953, - [SMALL_STATE(4558)] = 238977, - [SMALL_STATE(4559)] = 239001, - [SMALL_STATE(4560)] = 239025, - [SMALL_STATE(4561)] = 239049, - [SMALL_STATE(4562)] = 239073, - [SMALL_STATE(4563)] = 239097, - [SMALL_STATE(4564)] = 239121, - [SMALL_STATE(4565)] = 239145, - [SMALL_STATE(4566)] = 239169, - [SMALL_STATE(4567)] = 239193, - [SMALL_STATE(4568)] = 239225, - [SMALL_STATE(4569)] = 239249, - [SMALL_STATE(4570)] = 239277, - [SMALL_STATE(4571)] = 239313, - [SMALL_STATE(4572)] = 239337, - [SMALL_STATE(4573)] = 239375, - [SMALL_STATE(4574)] = 239403, - [SMALL_STATE(4575)] = 239427, - [SMALL_STATE(4576)] = 239455, - [SMALL_STATE(4577)] = 239479, - [SMALL_STATE(4578)] = 239503, - [SMALL_STATE(4579)] = 239544, - [SMALL_STATE(4580)] = 239585, - [SMALL_STATE(4581)] = 239626, - [SMALL_STATE(4582)] = 239667, - [SMALL_STATE(4583)] = 239708, - [SMALL_STATE(4584)] = 239749, - [SMALL_STATE(4585)] = 239790, - [SMALL_STATE(4586)] = 239831, - [SMALL_STATE(4587)] = 239872, - [SMALL_STATE(4588)] = 239913, - [SMALL_STATE(4589)] = 239954, - [SMALL_STATE(4590)] = 239995, - [SMALL_STATE(4591)] = 240036, - [SMALL_STATE(4592)] = 240077, - [SMALL_STATE(4593)] = 240118, - [SMALL_STATE(4594)] = 240159, - [SMALL_STATE(4595)] = 240200, - [SMALL_STATE(4596)] = 240241, - [SMALL_STATE(4597)] = 240282, - [SMALL_STATE(4598)] = 240323, - [SMALL_STATE(4599)] = 240364, - [SMALL_STATE(4600)] = 240405, - [SMALL_STATE(4601)] = 240446, - [SMALL_STATE(4602)] = 240487, - [SMALL_STATE(4603)] = 240528, - [SMALL_STATE(4604)] = 240569, - [SMALL_STATE(4605)] = 240610, - [SMALL_STATE(4606)] = 240651, - [SMALL_STATE(4607)] = 240692, - [SMALL_STATE(4608)] = 240733, - [SMALL_STATE(4609)] = 240774, - [SMALL_STATE(4610)] = 240815, - [SMALL_STATE(4611)] = 240856, - [SMALL_STATE(4612)] = 240885, - [SMALL_STATE(4613)] = 240926, - [SMALL_STATE(4614)] = 240967, - [SMALL_STATE(4615)] = 240996, - [SMALL_STATE(4616)] = 241037, - [SMALL_STATE(4617)] = 241078, - [SMALL_STATE(4618)] = 241119, - [SMALL_STATE(4619)] = 241160, - [SMALL_STATE(4620)] = 241201, - [SMALL_STATE(4621)] = 241242, - [SMALL_STATE(4622)] = 241283, - [SMALL_STATE(4623)] = 241324, - [SMALL_STATE(4624)] = 241365, - [SMALL_STATE(4625)] = 241406, - [SMALL_STATE(4626)] = 241447, - [SMALL_STATE(4627)] = 241488, - [SMALL_STATE(4628)] = 241529, - [SMALL_STATE(4629)] = 241570, - [SMALL_STATE(4630)] = 241611, - [SMALL_STATE(4631)] = 241652, - [SMALL_STATE(4632)] = 241693, - [SMALL_STATE(4633)] = 241734, - [SMALL_STATE(4634)] = 241775, - [SMALL_STATE(4635)] = 241816, - [SMALL_STATE(4636)] = 241857, - [SMALL_STATE(4637)] = 241898, - [SMALL_STATE(4638)] = 241939, - [SMALL_STATE(4639)] = 241980, - [SMALL_STATE(4640)] = 242021, - [SMALL_STATE(4641)] = 242062, - [SMALL_STATE(4642)] = 242103, - [SMALL_STATE(4643)] = 242144, - [SMALL_STATE(4644)] = 242185, - [SMALL_STATE(4645)] = 242226, - [SMALL_STATE(4646)] = 242267, - [SMALL_STATE(4647)] = 242308, - [SMALL_STATE(4648)] = 242349, - [SMALL_STATE(4649)] = 242390, - [SMALL_STATE(4650)] = 242431, - [SMALL_STATE(4651)] = 242472, - [SMALL_STATE(4652)] = 242513, - [SMALL_STATE(4653)] = 242554, - [SMALL_STATE(4654)] = 242595, - [SMALL_STATE(4655)] = 242636, - [SMALL_STATE(4656)] = 242677, - [SMALL_STATE(4657)] = 242718, - [SMALL_STATE(4658)] = 242759, - [SMALL_STATE(4659)] = 242800, - [SMALL_STATE(4660)] = 242841, - [SMALL_STATE(4661)] = 242882, - [SMALL_STATE(4662)] = 242923, - [SMALL_STATE(4663)] = 242964, - [SMALL_STATE(4664)] = 243005, - [SMALL_STATE(4665)] = 243046, - [SMALL_STATE(4666)] = 243087, - [SMALL_STATE(4667)] = 243128, - [SMALL_STATE(4668)] = 243169, - [SMALL_STATE(4669)] = 243210, - [SMALL_STATE(4670)] = 243251, - [SMALL_STATE(4671)] = 243274, - [SMALL_STATE(4672)] = 243315, - [SMALL_STATE(4673)] = 243356, - [SMALL_STATE(4674)] = 243397, - [SMALL_STATE(4675)] = 243438, - [SMALL_STATE(4676)] = 243479, - [SMALL_STATE(4677)] = 243520, - [SMALL_STATE(4678)] = 243561, - [SMALL_STATE(4679)] = 243602, - [SMALL_STATE(4680)] = 243643, - [SMALL_STATE(4681)] = 243684, - [SMALL_STATE(4682)] = 243725, - [SMALL_STATE(4683)] = 243766, - [SMALL_STATE(4684)] = 243807, - [SMALL_STATE(4685)] = 243848, - [SMALL_STATE(4686)] = 243889, - [SMALL_STATE(4687)] = 243930, - [SMALL_STATE(4688)] = 243971, - [SMALL_STATE(4689)] = 244012, - [SMALL_STATE(4690)] = 244053, - [SMALL_STATE(4691)] = 244094, - [SMALL_STATE(4692)] = 244135, - [SMALL_STATE(4693)] = 244176, - [SMALL_STATE(4694)] = 244217, - [SMALL_STATE(4695)] = 244258, - [SMALL_STATE(4696)] = 244299, - [SMALL_STATE(4697)] = 244340, - [SMALL_STATE(4698)] = 244381, - [SMALL_STATE(4699)] = 244422, - [SMALL_STATE(4700)] = 244463, - [SMALL_STATE(4701)] = 244504, - [SMALL_STATE(4702)] = 244545, - [SMALL_STATE(4703)] = 244567, - [SMALL_STATE(4704)] = 244589, - [SMALL_STATE(4705)] = 244614, - [SMALL_STATE(4706)] = 244639, - [SMALL_STATE(4707)] = 244664, - [SMALL_STATE(4708)] = 244689, - [SMALL_STATE(4709)] = 244714, - [SMALL_STATE(4710)] = 244739, - [SMALL_STATE(4711)] = 244764, - [SMALL_STATE(4712)] = 244789, - [SMALL_STATE(4713)] = 244818, - [SMALL_STATE(4714)] = 244843, - [SMALL_STATE(4715)] = 244868, - [SMALL_STATE(4716)] = 244893, - [SMALL_STATE(4717)] = 244918, - [SMALL_STATE(4718)] = 244943, - [SMALL_STATE(4719)] = 244968, - [SMALL_STATE(4720)] = 244993, - [SMALL_STATE(4721)] = 245018, - [SMALL_STATE(4722)] = 245043, - [SMALL_STATE(4723)] = 245068, - [SMALL_STATE(4724)] = 245093, - [SMALL_STATE(4725)] = 245118, - [SMALL_STATE(4726)] = 245143, - [SMALL_STATE(4727)] = 245168, - [SMALL_STATE(4728)] = 245193, - [SMALL_STATE(4729)] = 245218, - [SMALL_STATE(4730)] = 245243, - [SMALL_STATE(4731)] = 245268, - [SMALL_STATE(4732)] = 245293, - [SMALL_STATE(4733)] = 245318, - [SMALL_STATE(4734)] = 245343, - [SMALL_STATE(4735)] = 245368, - [SMALL_STATE(4736)] = 245393, - [SMALL_STATE(4737)] = 245418, - [SMALL_STATE(4738)] = 245443, - [SMALL_STATE(4739)] = 245472, - [SMALL_STATE(4740)] = 245497, - [SMALL_STATE(4741)] = 245522, - [SMALL_STATE(4742)] = 245547, - [SMALL_STATE(4743)] = 245572, - [SMALL_STATE(4744)] = 245597, - [SMALL_STATE(4745)] = 245622, - [SMALL_STATE(4746)] = 245647, - [SMALL_STATE(4747)] = 245672, - [SMALL_STATE(4748)] = 245697, - [SMALL_STATE(4749)] = 245722, - [SMALL_STATE(4750)] = 245747, - [SMALL_STATE(4751)] = 245772, - [SMALL_STATE(4752)] = 245797, - [SMALL_STATE(4753)] = 245822, - [SMALL_STATE(4754)] = 245847, - [SMALL_STATE(4755)] = 245872, - [SMALL_STATE(4756)] = 245897, - [SMALL_STATE(4757)] = 245922, - [SMALL_STATE(4758)] = 245947, - [SMALL_STATE(4759)] = 245972, - [SMALL_STATE(4760)] = 245997, - [SMALL_STATE(4761)] = 246022, - [SMALL_STATE(4762)] = 246047, - [SMALL_STATE(4763)] = 246072, - [SMALL_STATE(4764)] = 246097, - [SMALL_STATE(4765)] = 246122, - [SMALL_STATE(4766)] = 246147, - [SMALL_STATE(4767)] = 246172, - [SMALL_STATE(4768)] = 246197, - [SMALL_STATE(4769)] = 246222, - [SMALL_STATE(4770)] = 246247, - [SMALL_STATE(4771)] = 246272, - [SMALL_STATE(4772)] = 246297, - [SMALL_STATE(4773)] = 246322, - [SMALL_STATE(4774)] = 246347, - [SMALL_STATE(4775)] = 246376, - [SMALL_STATE(4776)] = 246401, - [SMALL_STATE(4777)] = 246426, - [SMALL_STATE(4778)] = 246451, - [SMALL_STATE(4779)] = 246476, - [SMALL_STATE(4780)] = 246501, - [SMALL_STATE(4781)] = 246526, - [SMALL_STATE(4782)] = 246551, - [SMALL_STATE(4783)] = 246576, - [SMALL_STATE(4784)] = 246601, - [SMALL_STATE(4785)] = 246626, - [SMALL_STATE(4786)] = 246651, - [SMALL_STATE(4787)] = 246676, - [SMALL_STATE(4788)] = 246701, - [SMALL_STATE(4789)] = 246726, - [SMALL_STATE(4790)] = 246751, - [SMALL_STATE(4791)] = 246776, - [SMALL_STATE(4792)] = 246801, - [SMALL_STATE(4793)] = 246826, - [SMALL_STATE(4794)] = 246851, - [SMALL_STATE(4795)] = 246876, - [SMALL_STATE(4796)] = 246901, - [SMALL_STATE(4797)] = 246926, - [SMALL_STATE(4798)] = 246951, - [SMALL_STATE(4799)] = 246976, - [SMALL_STATE(4800)] = 247001, - [SMALL_STATE(4801)] = 247026, - [SMALL_STATE(4802)] = 247051, - [SMALL_STATE(4803)] = 247080, - [SMALL_STATE(4804)] = 247105, - [SMALL_STATE(4805)] = 247130, - [SMALL_STATE(4806)] = 247155, - [SMALL_STATE(4807)] = 247180, - [SMALL_STATE(4808)] = 247205, - [SMALL_STATE(4809)] = 247230, - [SMALL_STATE(4810)] = 247255, - [SMALL_STATE(4811)] = 247280, - [SMALL_STATE(4812)] = 247305, - [SMALL_STATE(4813)] = 247330, - [SMALL_STATE(4814)] = 247355, - [SMALL_STATE(4815)] = 247380, - [SMALL_STATE(4816)] = 247405, - [SMALL_STATE(4817)] = 247430, - [SMALL_STATE(4818)] = 247455, - [SMALL_STATE(4819)] = 247480, - [SMALL_STATE(4820)] = 247505, - [SMALL_STATE(4821)] = 247530, - [SMALL_STATE(4822)] = 247555, - [SMALL_STATE(4823)] = 247580, - [SMALL_STATE(4824)] = 247605, - [SMALL_STATE(4825)] = 247630, - [SMALL_STATE(4826)] = 247655, - [SMALL_STATE(4827)] = 247680, - [SMALL_STATE(4828)] = 247705, - [SMALL_STATE(4829)] = 247730, - [SMALL_STATE(4830)] = 247755, - [SMALL_STATE(4831)] = 247780, - [SMALL_STATE(4832)] = 247805, - [SMALL_STATE(4833)] = 247830, - [SMALL_STATE(4834)] = 247855, - [SMALL_STATE(4835)] = 247880, - [SMALL_STATE(4836)] = 247905, - [SMALL_STATE(4837)] = 247930, - [SMALL_STATE(4838)] = 247955, - [SMALL_STATE(4839)] = 247980, - [SMALL_STATE(4840)] = 248005, - [SMALL_STATE(4841)] = 248030, - [SMALL_STATE(4842)] = 248055, - [SMALL_STATE(4843)] = 248084, - [SMALL_STATE(4844)] = 248109, - [SMALL_STATE(4845)] = 248134, - [SMALL_STATE(4846)] = 248159, - [SMALL_STATE(4847)] = 248184, - [SMALL_STATE(4848)] = 248209, - [SMALL_STATE(4849)] = 248234, - [SMALL_STATE(4850)] = 248259, - [SMALL_STATE(4851)] = 248284, - [SMALL_STATE(4852)] = 248309, - [SMALL_STATE(4853)] = 248334, - [SMALL_STATE(4854)] = 248359, - [SMALL_STATE(4855)] = 248384, - [SMALL_STATE(4856)] = 248409, - [SMALL_STATE(4857)] = 248434, - [SMALL_STATE(4858)] = 248459, - [SMALL_STATE(4859)] = 248484, - [SMALL_STATE(4860)] = 248513, - [SMALL_STATE(4861)] = 248538, - [SMALL_STATE(4862)] = 248563, - [SMALL_STATE(4863)] = 248588, - [SMALL_STATE(4864)] = 248613, - [SMALL_STATE(4865)] = 248638, - [SMALL_STATE(4866)] = 248663, - [SMALL_STATE(4867)] = 248688, - [SMALL_STATE(4868)] = 248713, - [SMALL_STATE(4869)] = 248742, - [SMALL_STATE(4870)] = 248767, - [SMALL_STATE(4871)] = 248792, - [SMALL_STATE(4872)] = 248817, - [SMALL_STATE(4873)] = 248842, - [SMALL_STATE(4874)] = 248867, - [SMALL_STATE(4875)] = 248892, - [SMALL_STATE(4876)] = 248917, - [SMALL_STATE(4877)] = 248942, - [SMALL_STATE(4878)] = 248967, - [SMALL_STATE(4879)] = 248996, - [SMALL_STATE(4880)] = 249022, - [SMALL_STATE(4881)] = 249048, - [SMALL_STATE(4882)] = 249074, - [SMALL_STATE(4883)] = 249100, - [SMALL_STATE(4884)] = 249122, - [SMALL_STATE(4885)] = 249148, - [SMALL_STATE(4886)] = 249174, - [SMALL_STATE(4887)] = 249200, - [SMALL_STATE(4888)] = 249226, - [SMALL_STATE(4889)] = 249252, - [SMALL_STATE(4890)] = 249271, - [SMALL_STATE(4891)] = 249294, - [SMALL_STATE(4892)] = 249317, - [SMALL_STATE(4893)] = 249340, - [SMALL_STATE(4894)] = 249359, - [SMALL_STATE(4895)] = 249378, - [SMALL_STATE(4896)] = 249397, - [SMALL_STATE(4897)] = 249420, - [SMALL_STATE(4898)] = 249443, - [SMALL_STATE(4899)] = 249474, - [SMALL_STATE(4900)] = 249497, - [SMALL_STATE(4901)] = 249516, - [SMALL_STATE(4902)] = 249535, - [SMALL_STATE(4903)] = 249554, - [SMALL_STATE(4904)] = 249577, - [SMALL_STATE(4905)] = 249596, - [SMALL_STATE(4906)] = 249615, - [SMALL_STATE(4907)] = 249634, - [SMALL_STATE(4908)] = 249653, - [SMALL_STATE(4909)] = 249672, - [SMALL_STATE(4910)] = 249691, - [SMALL_STATE(4911)] = 249710, - [SMALL_STATE(4912)] = 249741, - [SMALL_STATE(4913)] = 249760, - [SMALL_STATE(4914)] = 249779, - [SMALL_STATE(4915)] = 249798, - [SMALL_STATE(4916)] = 249821, - [SMALL_STATE(4917)] = 249840, - [SMALL_STATE(4918)] = 249859, - [SMALL_STATE(4919)] = 249890, - [SMALL_STATE(4920)] = 249913, - [SMALL_STATE(4921)] = 249932, - [SMALL_STATE(4922)] = 249952, - [SMALL_STATE(4923)] = 249972, - [SMALL_STATE(4924)] = 250000, - [SMALL_STATE(4925)] = 250020, - [SMALL_STATE(4926)] = 250040, - [SMALL_STATE(4927)] = 250056, - [SMALL_STATE(4928)] = 250072, - [SMALL_STATE(4929)] = 250092, - [SMALL_STATE(4930)] = 250112, - [SMALL_STATE(4931)] = 250132, - [SMALL_STATE(4932)] = 250148, - [SMALL_STATE(4933)] = 250168, - [SMALL_STATE(4934)] = 250188, - [SMALL_STATE(4935)] = 250208, - [SMALL_STATE(4936)] = 250231, - [SMALL_STATE(4937)] = 250262, - [SMALL_STATE(4938)] = 250286, - [SMALL_STATE(4939)] = 250310, - [SMALL_STATE(4940)] = 250334, - [SMALL_STATE(4941)] = 250358, - [SMALL_STATE(4942)] = 250382, - [SMALL_STATE(4943)] = 250406, - [SMALL_STATE(4944)] = 250430, - [SMALL_STATE(4945)] = 250454, - [SMALL_STATE(4946)] = 250478, - [SMALL_STATE(4947)] = 250502, - [SMALL_STATE(4948)] = 250526, - [SMALL_STATE(4949)] = 250550, - [SMALL_STATE(4950)] = 250574, - [SMALL_STATE(4951)] = 250596, - [SMALL_STATE(4952)] = 250620, - [SMALL_STATE(4953)] = 250644, - [SMALL_STATE(4954)] = 250668, - [SMALL_STATE(4955)] = 250690, - [SMALL_STATE(4956)] = 250714, - [SMALL_STATE(4957)] = 250738, - [SMALL_STATE(4958)] = 250762, - [SMALL_STATE(4959)] = 250786, - [SMALL_STATE(4960)] = 250810, - [SMALL_STATE(4961)] = 250834, - [SMALL_STATE(4962)] = 250858, - [SMALL_STATE(4963)] = 250882, - [SMALL_STATE(4964)] = 250906, - [SMALL_STATE(4965)] = 250930, - [SMALL_STATE(4966)] = 250954, - [SMALL_STATE(4967)] = 250978, - [SMALL_STATE(4968)] = 251002, - [SMALL_STATE(4969)] = 251024, - [SMALL_STATE(4970)] = 251048, - [SMALL_STATE(4971)] = 251072, - [SMALL_STATE(4972)] = 251096, - [SMALL_STATE(4973)] = 251109, - [SMALL_STATE(4974)] = 251124, - [SMALL_STATE(4975)] = 251139, - [SMALL_STATE(4976)] = 251156, - [SMALL_STATE(4977)] = 251171, - [SMALL_STATE(4978)] = 251188, - [SMALL_STATE(4979)] = 251203, - [SMALL_STATE(4980)] = 251218, - [SMALL_STATE(4981)] = 251233, - [SMALL_STATE(4982)] = 251254, - [SMALL_STATE(4983)] = 251269, - [SMALL_STATE(4984)] = 251284, - [SMALL_STATE(4985)] = 251297, - [SMALL_STATE(4986)] = 251312, - [SMALL_STATE(4987)] = 251325, - [SMALL_STATE(4988)] = 251340, - [SMALL_STATE(4989)] = 251355, - [SMALL_STATE(4990)] = 251374, - [SMALL_STATE(4991)] = 251387, - [SMALL_STATE(4992)] = 251402, - [SMALL_STATE(4993)] = 251417, - [SMALL_STATE(4994)] = 251432, - [SMALL_STATE(4995)] = 251447, - [SMALL_STATE(4996)] = 251462, - [SMALL_STATE(4997)] = 251477, - [SMALL_STATE(4998)] = 251492, - [SMALL_STATE(4999)] = 251507, - [SMALL_STATE(5000)] = 251528, - [SMALL_STATE(5001)] = 251543, - [SMALL_STATE(5002)] = 251568, - [SMALL_STATE(5003)] = 251583, - [SMALL_STATE(5004)] = 251598, - [SMALL_STATE(5005)] = 251619, - [SMALL_STATE(5006)] = 251632, - [SMALL_STATE(5007)] = 251647, - [SMALL_STATE(5008)] = 251662, - [SMALL_STATE(5009)] = 251677, - [SMALL_STATE(5010)] = 251690, - [SMALL_STATE(5011)] = 251705, - [SMALL_STATE(5012)] = 251720, - [SMALL_STATE(5013)] = 251740, - [SMALL_STATE(5014)] = 251760, - [SMALL_STATE(5015)] = 251780, - [SMALL_STATE(5016)] = 251800, - [SMALL_STATE(5017)] = 251820, - [SMALL_STATE(5018)] = 251840, - [SMALL_STATE(5019)] = 251860, - [SMALL_STATE(5020)] = 251874, - [SMALL_STATE(5021)] = 251888, - [SMALL_STATE(5022)] = 251908, - [SMALL_STATE(5023)] = 251928, - [SMALL_STATE(5024)] = 251948, - [SMALL_STATE(5025)] = 251968, - [SMALL_STATE(5026)] = 251988, - [SMALL_STATE(5027)] = 252002, - [SMALL_STATE(5028)] = 252016, - [SMALL_STATE(5029)] = 252036, - [SMALL_STATE(5030)] = 252056, - [SMALL_STATE(5031)] = 252076, - [SMALL_STATE(5032)] = 252090, - [SMALL_STATE(5033)] = 252104, - [SMALL_STATE(5034)] = 252124, - [SMALL_STATE(5035)] = 252144, - [SMALL_STATE(5036)] = 252164, - [SMALL_STATE(5037)] = 252178, - [SMALL_STATE(5038)] = 252192, - [SMALL_STATE(5039)] = 252212, - [SMALL_STATE(5040)] = 252232, - [SMALL_STATE(5041)] = 252252, - [SMALL_STATE(5042)] = 252272, - [SMALL_STATE(5043)] = 252286, - [SMALL_STATE(5044)] = 252306, - [SMALL_STATE(5045)] = 252322, - [SMALL_STATE(5046)] = 252342, - [SMALL_STATE(5047)] = 252362, - [SMALL_STATE(5048)] = 252377, - [SMALL_STATE(5049)] = 252396, - [SMALL_STATE(5050)] = 252409, - [SMALL_STATE(5051)] = 252426, - [SMALL_STATE(5052)] = 252443, - [SMALL_STATE(5053)] = 252456, - [SMALL_STATE(5054)] = 252473, - [SMALL_STATE(5055)] = 252486, - [SMALL_STATE(5056)] = 252505, - [SMALL_STATE(5057)] = 252524, - [SMALL_STATE(5058)] = 252541, - [SMALL_STATE(5059)] = 252554, - [SMALL_STATE(5060)] = 252571, - [SMALL_STATE(5061)] = 252588, - [SMALL_STATE(5062)] = 252603, - [SMALL_STATE(5063)] = 252620, - [SMALL_STATE(5064)] = 252637, - [SMALL_STATE(5065)] = 252656, - [SMALL_STATE(5066)] = 252675, - [SMALL_STATE(5067)] = 252692, - [SMALL_STATE(5068)] = 252707, - [SMALL_STATE(5069)] = 252724, - [SMALL_STATE(5070)] = 252741, - [SMALL_STATE(5071)] = 252760, - [SMALL_STATE(5072)] = 252775, - [SMALL_STATE(5073)] = 252792, - [SMALL_STATE(5074)] = 252811, - [SMALL_STATE(5075)] = 252830, - [SMALL_STATE(5076)] = 252849, - [SMALL_STATE(5077)] = 252866, - [SMALL_STATE(5078)] = 252883, - [SMALL_STATE(5079)] = 252902, - [SMALL_STATE(5080)] = 252921, - [SMALL_STATE(5081)] = 252938, - [SMALL_STATE(5082)] = 252957, - [SMALL_STATE(5083)] = 252976, - [SMALL_STATE(5084)] = 252995, - [SMALL_STATE(5085)] = 253014, - [SMALL_STATE(5086)] = 253031, - [SMALL_STATE(5087)] = 253048, - [SMALL_STATE(5088)] = 253067, - [SMALL_STATE(5089)] = 253086, - [SMALL_STATE(5090)] = 253101, - [SMALL_STATE(5091)] = 253120, - [SMALL_STATE(5092)] = 253135, - [SMALL_STATE(5093)] = 253154, - [SMALL_STATE(5094)] = 253171, - [SMALL_STATE(5095)] = 253188, - [SMALL_STATE(5096)] = 253205, - [SMALL_STATE(5097)] = 253224, - [SMALL_STATE(5098)] = 253243, - [SMALL_STATE(5099)] = 253258, - [SMALL_STATE(5100)] = 253273, - [SMALL_STATE(5101)] = 253290, - [SMALL_STATE(5102)] = 253301, - [SMALL_STATE(5103)] = 253312, - [SMALL_STATE(5104)] = 253323, - [SMALL_STATE(5105)] = 253340, - [SMALL_STATE(5106)] = 253359, - [SMALL_STATE(5107)] = 253374, - [SMALL_STATE(5108)] = 253393, - [SMALL_STATE(5109)] = 253408, - [SMALL_STATE(5110)] = 253423, - [SMALL_STATE(5111)] = 253440, - [SMALL_STATE(5112)] = 253457, - [SMALL_STATE(5113)] = 253476, - [SMALL_STATE(5114)] = 253493, - [SMALL_STATE(5115)] = 253508, - [SMALL_STATE(5116)] = 253523, - [SMALL_STATE(5117)] = 253538, - [SMALL_STATE(5118)] = 253557, - [SMALL_STATE(5119)] = 253574, - [SMALL_STATE(5120)] = 253587, - [SMALL_STATE(5121)] = 253604, - [SMALL_STATE(5122)] = 253621, - [SMALL_STATE(5123)] = 253640, - [SMALL_STATE(5124)] = 253655, - [SMALL_STATE(5125)] = 253670, - [SMALL_STATE(5126)] = 253685, - [SMALL_STATE(5127)] = 253704, - [SMALL_STATE(5128)] = 253719, - [SMALL_STATE(5129)] = 253734, - [SMALL_STATE(5130)] = 253749, - [SMALL_STATE(5131)] = 253764, - [SMALL_STATE(5132)] = 253779, - [SMALL_STATE(5133)] = 253798, - [SMALL_STATE(5134)] = 253815, - [SMALL_STATE(5135)] = 253832, - [SMALL_STATE(5136)] = 253851, - [SMALL_STATE(5137)] = 253868, - [SMALL_STATE(5138)] = 253883, - [SMALL_STATE(5139)] = 253902, - [SMALL_STATE(5140)] = 253917, - [SMALL_STATE(5141)] = 253934, - [SMALL_STATE(5142)] = 253951, - [SMALL_STATE(5143)] = 253966, - [SMALL_STATE(5144)] = 253985, - [SMALL_STATE(5145)] = 253995, - [SMALL_STATE(5146)] = 254005, - [SMALL_STATE(5147)] = 254015, - [SMALL_STATE(5148)] = 254025, - [SMALL_STATE(5149)] = 254035, - [SMALL_STATE(5150)] = 254045, - [SMALL_STATE(5151)] = 254055, - [SMALL_STATE(5152)] = 254071, - [SMALL_STATE(5153)] = 254081, - [SMALL_STATE(5154)] = 254091, - [SMALL_STATE(5155)] = 254105, - [SMALL_STATE(5156)] = 254115, - [SMALL_STATE(5157)] = 254125, - [SMALL_STATE(5158)] = 254139, - [SMALL_STATE(5159)] = 254149, - [SMALL_STATE(5160)] = 254159, - [SMALL_STATE(5161)] = 254169, - [SMALL_STATE(5162)] = 254183, - [SMALL_STATE(5163)] = 254193, - [SMALL_STATE(5164)] = 254209, - [SMALL_STATE(5165)] = 254223, - [SMALL_STATE(5166)] = 254233, - [SMALL_STATE(5167)] = 254243, - [SMALL_STATE(5168)] = 254257, - [SMALL_STATE(5169)] = 254271, - [SMALL_STATE(5170)] = 254287, - [SMALL_STATE(5171)] = 254303, - [SMALL_STATE(5172)] = 254317, - [SMALL_STATE(5173)] = 254327, - [SMALL_STATE(5174)] = 254343, - [SMALL_STATE(5175)] = 254353, - [SMALL_STATE(5176)] = 254363, - [SMALL_STATE(5177)] = 254379, - [SMALL_STATE(5178)] = 254391, - [SMALL_STATE(5179)] = 254401, - [SMALL_STATE(5180)] = 254411, - [SMALL_STATE(5181)] = 254421, - [SMALL_STATE(5182)] = 254431, - [SMALL_STATE(5183)] = 254447, - [SMALL_STATE(5184)] = 254457, - [SMALL_STATE(5185)] = 254467, - [SMALL_STATE(5186)] = 254481, - [SMALL_STATE(5187)] = 254491, - [SMALL_STATE(5188)] = 254507, - [SMALL_STATE(5189)] = 254517, - [SMALL_STATE(5190)] = 254527, - [SMALL_STATE(5191)] = 254537, - [SMALL_STATE(5192)] = 254549, - [SMALL_STATE(5193)] = 254559, - [SMALL_STATE(5194)] = 254575, - [SMALL_STATE(5195)] = 254585, - [SMALL_STATE(5196)] = 254597, - [SMALL_STATE(5197)] = 254613, - [SMALL_STATE(5198)] = 254629, - [SMALL_STATE(5199)] = 254639, - [SMALL_STATE(5200)] = 254649, - [SMALL_STATE(5201)] = 254665, - [SMALL_STATE(5202)] = 254681, - [SMALL_STATE(5203)] = 254691, - [SMALL_STATE(5204)] = 254701, - [SMALL_STATE(5205)] = 254711, - [SMALL_STATE(5206)] = 254727, - [SMALL_STATE(5207)] = 254737, - [SMALL_STATE(5208)] = 254747, - [SMALL_STATE(5209)] = 254757, - [SMALL_STATE(5210)] = 254770, - [SMALL_STATE(5211)] = 254783, - [SMALL_STATE(5212)] = 254796, - [SMALL_STATE(5213)] = 254809, - [SMALL_STATE(5214)] = 254822, - [SMALL_STATE(5215)] = 254835, - [SMALL_STATE(5216)] = 254846, - [SMALL_STATE(5217)] = 254859, - [SMALL_STATE(5218)] = 254872, - [SMALL_STATE(5219)] = 254885, - [SMALL_STATE(5220)] = 254898, - [SMALL_STATE(5221)] = 254911, - [SMALL_STATE(5222)] = 254924, - [SMALL_STATE(5223)] = 254937, - [SMALL_STATE(5224)] = 254950, - [SMALL_STATE(5225)] = 254963, - [SMALL_STATE(5226)] = 254976, - [SMALL_STATE(5227)] = 254989, - [SMALL_STATE(5228)] = 255000, - [SMALL_STATE(5229)] = 255009, - [SMALL_STATE(5230)] = 255022, - [SMALL_STATE(5231)] = 255035, - [SMALL_STATE(5232)] = 255046, - [SMALL_STATE(5233)] = 255059, - [SMALL_STATE(5234)] = 255068, - [SMALL_STATE(5235)] = 255081, - [SMALL_STATE(5236)] = 255094, - [SMALL_STATE(5237)] = 255107, - [SMALL_STATE(5238)] = 255120, - [SMALL_STATE(5239)] = 255129, - [SMALL_STATE(5240)] = 255142, - [SMALL_STATE(5241)] = 255155, - [SMALL_STATE(5242)] = 255166, - [SMALL_STATE(5243)] = 255179, - [SMALL_STATE(5244)] = 255190, - [SMALL_STATE(5245)] = 255201, - [SMALL_STATE(5246)] = 255214, - [SMALL_STATE(5247)] = 255227, - [SMALL_STATE(5248)] = 255240, - [SMALL_STATE(5249)] = 255251, - [SMALL_STATE(5250)] = 255262, - [SMALL_STATE(5251)] = 255271, - [SMALL_STATE(5252)] = 255284, - [SMALL_STATE(5253)] = 255295, - [SMALL_STATE(5254)] = 255308, - [SMALL_STATE(5255)] = 255319, - [SMALL_STATE(5256)] = 255332, - [SMALL_STATE(5257)] = 255345, - [SMALL_STATE(5258)] = 255358, - [SMALL_STATE(5259)] = 255369, - [SMALL_STATE(5260)] = 255382, - [SMALL_STATE(5261)] = 255393, - [SMALL_STATE(5262)] = 255404, - [SMALL_STATE(5263)] = 255417, - [SMALL_STATE(5264)] = 255426, - [SMALL_STATE(5265)] = 255439, - [SMALL_STATE(5266)] = 255452, - [SMALL_STATE(5267)] = 255465, - [SMALL_STATE(5268)] = 255478, - [SMALL_STATE(5269)] = 255489, - [SMALL_STATE(5270)] = 255502, - [SMALL_STATE(5271)] = 255515, - [SMALL_STATE(5272)] = 255526, - [SMALL_STATE(5273)] = 255537, - [SMALL_STATE(5274)] = 255550, - [SMALL_STATE(5275)] = 255563, - [SMALL_STATE(5276)] = 255576, - [SMALL_STATE(5277)] = 255589, - [SMALL_STATE(5278)] = 255602, - [SMALL_STATE(5279)] = 255615, - [SMALL_STATE(5280)] = 255626, - [SMALL_STATE(5281)] = 255635, - [SMALL_STATE(5282)] = 255648, - [SMALL_STATE(5283)] = 255661, - [SMALL_STATE(5284)] = 255670, - [SMALL_STATE(5285)] = 255683, - [SMALL_STATE(5286)] = 255696, - [SMALL_STATE(5287)] = 255709, - [SMALL_STATE(5288)] = 255722, - [SMALL_STATE(5289)] = 255735, - [SMALL_STATE(5290)] = 255748, - [SMALL_STATE(5291)] = 255759, - [SMALL_STATE(5292)] = 255770, - [SMALL_STATE(5293)] = 255783, - [SMALL_STATE(5294)] = 255796, - [SMALL_STATE(5295)] = 255809, - [SMALL_STATE(5296)] = 255822, - [SMALL_STATE(5297)] = 255835, - [SMALL_STATE(5298)] = 255848, - [SMALL_STATE(5299)] = 255861, - [SMALL_STATE(5300)] = 255874, - [SMALL_STATE(5301)] = 255883, - [SMALL_STATE(5302)] = 255896, - [SMALL_STATE(5303)] = 255909, - [SMALL_STATE(5304)] = 255922, - [SMALL_STATE(5305)] = 255933, - [SMALL_STATE(5306)] = 255942, - [SMALL_STATE(5307)] = 255955, - [SMALL_STATE(5308)] = 255968, - [SMALL_STATE(5309)] = 255981, - [SMALL_STATE(5310)] = 255990, - [SMALL_STATE(5311)] = 255999, - [SMALL_STATE(5312)] = 256012, - [SMALL_STATE(5313)] = 256025, - [SMALL_STATE(5314)] = 256038, - [SMALL_STATE(5315)] = 256051, - [SMALL_STATE(5316)] = 256064, - [SMALL_STATE(5317)] = 256075, - [SMALL_STATE(5318)] = 256086, - [SMALL_STATE(5319)] = 256099, - [SMALL_STATE(5320)] = 256110, - [SMALL_STATE(5321)] = 256121, - [SMALL_STATE(5322)] = 256134, - [SMALL_STATE(5323)] = 256147, - [SMALL_STATE(5324)] = 256160, - [SMALL_STATE(5325)] = 256171, - [SMALL_STATE(5326)] = 256184, - [SMALL_STATE(5327)] = 256197, - [SMALL_STATE(5328)] = 256210, - [SMALL_STATE(5329)] = 256223, - [SMALL_STATE(5330)] = 256236, - [SMALL_STATE(5331)] = 256249, - [SMALL_STATE(5332)] = 256260, - [SMALL_STATE(5333)] = 256273, - [SMALL_STATE(5334)] = 256286, - [SMALL_STATE(5335)] = 256299, - [SMALL_STATE(5336)] = 256312, - [SMALL_STATE(5337)] = 256325, - [SMALL_STATE(5338)] = 256338, - [SMALL_STATE(5339)] = 256347, - [SMALL_STATE(5340)] = 256358, - [SMALL_STATE(5341)] = 256371, - [SMALL_STATE(5342)] = 256380, - [SMALL_STATE(5343)] = 256393, - [SMALL_STATE(5344)] = 256406, - [SMALL_STATE(5345)] = 256417, - [SMALL_STATE(5346)] = 256426, - [SMALL_STATE(5347)] = 256437, - [SMALL_STATE(5348)] = 256448, - [SMALL_STATE(5349)] = 256461, - [SMALL_STATE(5350)] = 256470, - [SMALL_STATE(5351)] = 256483, - [SMALL_STATE(5352)] = 256492, - [SMALL_STATE(5353)] = 256503, - [SMALL_STATE(5354)] = 256512, - [SMALL_STATE(5355)] = 256525, - [SMALL_STATE(5356)] = 256538, - [SMALL_STATE(5357)] = 256551, - [SMALL_STATE(5358)] = 256564, - [SMALL_STATE(5359)] = 256577, - [SMALL_STATE(5360)] = 256590, - [SMALL_STATE(5361)] = 256603, - [SMALL_STATE(5362)] = 256614, - [SMALL_STATE(5363)] = 256625, - [SMALL_STATE(5364)] = 256638, - [SMALL_STATE(5365)] = 256651, - [SMALL_STATE(5366)] = 256662, - [SMALL_STATE(5367)] = 256675, - [SMALL_STATE(5368)] = 256688, - [SMALL_STATE(5369)] = 256701, - [SMALL_STATE(5370)] = 256714, - [SMALL_STATE(5371)] = 256727, - [SMALL_STATE(5372)] = 256740, - [SMALL_STATE(5373)] = 256753, - [SMALL_STATE(5374)] = 256763, - [SMALL_STATE(5375)] = 256773, - [SMALL_STATE(5376)] = 256783, - [SMALL_STATE(5377)] = 256793, - [SMALL_STATE(5378)] = 256803, - [SMALL_STATE(5379)] = 256813, - [SMALL_STATE(5380)] = 256823, - [SMALL_STATE(5381)] = 256831, - [SMALL_STATE(5382)] = 256841, - [SMALL_STATE(5383)] = 256851, - [SMALL_STATE(5384)] = 256859, - [SMALL_STATE(5385)] = 256867, - [SMALL_STATE(5386)] = 256875, - [SMALL_STATE(5387)] = 256885, - [SMALL_STATE(5388)] = 256895, - [SMALL_STATE(5389)] = 256905, - [SMALL_STATE(5390)] = 256913, - [SMALL_STATE(5391)] = 256923, - [SMALL_STATE(5392)] = 256933, - [SMALL_STATE(5393)] = 256943, - [SMALL_STATE(5394)] = 256951, - [SMALL_STATE(5395)] = 256961, - [SMALL_STATE(5396)] = 256971, - [SMALL_STATE(5397)] = 256981, - [SMALL_STATE(5398)] = 256989, - [SMALL_STATE(5399)] = 256999, - [SMALL_STATE(5400)] = 257009, - [SMALL_STATE(5401)] = 257019, - [SMALL_STATE(5402)] = 257027, - [SMALL_STATE(5403)] = 257037, - [SMALL_STATE(5404)] = 257045, - [SMALL_STATE(5405)] = 257055, - [SMALL_STATE(5406)] = 257065, - [SMALL_STATE(5407)] = 257075, - [SMALL_STATE(5408)] = 257085, - [SMALL_STATE(5409)] = 257095, - [SMALL_STATE(5410)] = 257105, - [SMALL_STATE(5411)] = 257113, - [SMALL_STATE(5412)] = 257123, - [SMALL_STATE(5413)] = 257133, - [SMALL_STATE(5414)] = 257143, - [SMALL_STATE(5415)] = 257153, - [SMALL_STATE(5416)] = 257163, - [SMALL_STATE(5417)] = 257173, - [SMALL_STATE(5418)] = 257183, - [SMALL_STATE(5419)] = 257191, - [SMALL_STATE(5420)] = 257201, - [SMALL_STATE(5421)] = 257211, - [SMALL_STATE(5422)] = 257219, - [SMALL_STATE(5423)] = 257229, - [SMALL_STATE(5424)] = 257237, - [SMALL_STATE(5425)] = 257247, - [SMALL_STATE(5426)] = 257255, - [SMALL_STATE(5427)] = 257265, - [SMALL_STATE(5428)] = 257275, - [SMALL_STATE(5429)] = 257283, - [SMALL_STATE(5430)] = 257291, - [SMALL_STATE(5431)] = 257299, - [SMALL_STATE(5432)] = 257307, - [SMALL_STATE(5433)] = 257315, - [SMALL_STATE(5434)] = 257325, - [SMALL_STATE(5435)] = 257333, - [SMALL_STATE(5436)] = 257341, - [SMALL_STATE(5437)] = 257351, - [SMALL_STATE(5438)] = 257361, - [SMALL_STATE(5439)] = 257369, - [SMALL_STATE(5440)] = 257379, - [SMALL_STATE(5441)] = 257389, - [SMALL_STATE(5442)] = 257399, - [SMALL_STATE(5443)] = 257407, - [SMALL_STATE(5444)] = 257415, - [SMALL_STATE(5445)] = 257425, - [SMALL_STATE(5446)] = 257435, - [SMALL_STATE(5447)] = 257443, - [SMALL_STATE(5448)] = 257451, - [SMALL_STATE(5449)] = 257459, - [SMALL_STATE(5450)] = 257467, - [SMALL_STATE(5451)] = 257477, - [SMALL_STATE(5452)] = 257485, - [SMALL_STATE(5453)] = 257495, - [SMALL_STATE(5454)] = 257503, - [SMALL_STATE(5455)] = 257511, - [SMALL_STATE(5456)] = 257519, - [SMALL_STATE(5457)] = 257527, - [SMALL_STATE(5458)] = 257537, - [SMALL_STATE(5459)] = 257547, - [SMALL_STATE(5460)] = 257557, - [SMALL_STATE(5461)] = 257567, - [SMALL_STATE(5462)] = 257575, - [SMALL_STATE(5463)] = 257585, - [SMALL_STATE(5464)] = 257595, - [SMALL_STATE(5465)] = 257605, - [SMALL_STATE(5466)] = 257613, - [SMALL_STATE(5467)] = 257621, - [SMALL_STATE(5468)] = 257631, - [SMALL_STATE(5469)] = 257641, - [SMALL_STATE(5470)] = 257649, - [SMALL_STATE(5471)] = 257657, - [SMALL_STATE(5472)] = 257667, - [SMALL_STATE(5473)] = 257675, - [SMALL_STATE(5474)] = 257685, - [SMALL_STATE(5475)] = 257695, - [SMALL_STATE(5476)] = 257705, - [SMALL_STATE(5477)] = 257715, - [SMALL_STATE(5478)] = 257723, - [SMALL_STATE(5479)] = 257733, - [SMALL_STATE(5480)] = 257743, - [SMALL_STATE(5481)] = 257753, - [SMALL_STATE(5482)] = 257763, - [SMALL_STATE(5483)] = 257771, - [SMALL_STATE(5484)] = 257781, - [SMALL_STATE(5485)] = 257791, - [SMALL_STATE(5486)] = 257799, - [SMALL_STATE(5487)] = 257809, - [SMALL_STATE(5488)] = 257819, - [SMALL_STATE(5489)] = 257829, - [SMALL_STATE(5490)] = 257839, - [SMALL_STATE(5491)] = 257846, - [SMALL_STATE(5492)] = 257853, - [SMALL_STATE(5493)] = 257860, - [SMALL_STATE(5494)] = 257867, - [SMALL_STATE(5495)] = 257874, - [SMALL_STATE(5496)] = 257881, - [SMALL_STATE(5497)] = 257888, - [SMALL_STATE(5498)] = 257895, - [SMALL_STATE(5499)] = 257902, - [SMALL_STATE(5500)] = 257909, - [SMALL_STATE(5501)] = 257916, - [SMALL_STATE(5502)] = 257923, - [SMALL_STATE(5503)] = 257930, - [SMALL_STATE(5504)] = 257937, - [SMALL_STATE(5505)] = 257944, - [SMALL_STATE(5506)] = 257951, - [SMALL_STATE(5507)] = 257958, - [SMALL_STATE(5508)] = 257965, - [SMALL_STATE(5509)] = 257972, - [SMALL_STATE(5510)] = 257979, - [SMALL_STATE(5511)] = 257986, - [SMALL_STATE(5512)] = 257993, - [SMALL_STATE(5513)] = 258000, - [SMALL_STATE(5514)] = 258007, - [SMALL_STATE(5515)] = 258014, - [SMALL_STATE(5516)] = 258021, - [SMALL_STATE(5517)] = 258028, - [SMALL_STATE(5518)] = 258035, - [SMALL_STATE(5519)] = 258042, - [SMALL_STATE(5520)] = 258049, - [SMALL_STATE(5521)] = 258056, - [SMALL_STATE(5522)] = 258063, - [SMALL_STATE(5523)] = 258070, - [SMALL_STATE(5524)] = 258077, - [SMALL_STATE(5525)] = 258084, - [SMALL_STATE(5526)] = 258091, - [SMALL_STATE(5527)] = 258098, - [SMALL_STATE(5528)] = 258105, - [SMALL_STATE(5529)] = 258112, - [SMALL_STATE(5530)] = 258119, - [SMALL_STATE(5531)] = 258126, - [SMALL_STATE(5532)] = 258133, - [SMALL_STATE(5533)] = 258140, - [SMALL_STATE(5534)] = 258147, - [SMALL_STATE(5535)] = 258154, - [SMALL_STATE(5536)] = 258161, - [SMALL_STATE(5537)] = 258168, - [SMALL_STATE(5538)] = 258175, - [SMALL_STATE(5539)] = 258182, - [SMALL_STATE(5540)] = 258189, - [SMALL_STATE(5541)] = 258196, - [SMALL_STATE(5542)] = 258203, - [SMALL_STATE(5543)] = 258210, - [SMALL_STATE(5544)] = 258217, - [SMALL_STATE(5545)] = 258224, - [SMALL_STATE(5546)] = 258231, - [SMALL_STATE(5547)] = 258238, - [SMALL_STATE(5548)] = 258245, - [SMALL_STATE(5549)] = 258252, - [SMALL_STATE(5550)] = 258259, - [SMALL_STATE(5551)] = 258266, - [SMALL_STATE(5552)] = 258273, - [SMALL_STATE(5553)] = 258280, - [SMALL_STATE(5554)] = 258287, - [SMALL_STATE(5555)] = 258294, - [SMALL_STATE(5556)] = 258301, - [SMALL_STATE(5557)] = 258308, - [SMALL_STATE(5558)] = 258315, - [SMALL_STATE(5559)] = 258322, - [SMALL_STATE(5560)] = 258329, - [SMALL_STATE(5561)] = 258336, - [SMALL_STATE(5562)] = 258343, - [SMALL_STATE(5563)] = 258350, - [SMALL_STATE(5564)] = 258357, - [SMALL_STATE(5565)] = 258364, - [SMALL_STATE(5566)] = 258371, - [SMALL_STATE(5567)] = 258378, - [SMALL_STATE(5568)] = 258385, - [SMALL_STATE(5569)] = 258392, - [SMALL_STATE(5570)] = 258399, - [SMALL_STATE(5571)] = 258406, - [SMALL_STATE(5572)] = 258413, - [SMALL_STATE(5573)] = 258420, - [SMALL_STATE(5574)] = 258427, - [SMALL_STATE(5575)] = 258434, - [SMALL_STATE(5576)] = 258441, - [SMALL_STATE(5577)] = 258448, - [SMALL_STATE(5578)] = 258455, - [SMALL_STATE(5579)] = 258462, - [SMALL_STATE(5580)] = 258469, - [SMALL_STATE(5581)] = 258476, - [SMALL_STATE(5582)] = 258483, - [SMALL_STATE(5583)] = 258490, - [SMALL_STATE(5584)] = 258497, - [SMALL_STATE(5585)] = 258504, - [SMALL_STATE(5586)] = 258511, - [SMALL_STATE(5587)] = 258518, - [SMALL_STATE(5588)] = 258525, - [SMALL_STATE(5589)] = 258532, - [SMALL_STATE(5590)] = 258539, - [SMALL_STATE(5591)] = 258546, - [SMALL_STATE(5592)] = 258553, - [SMALL_STATE(5593)] = 258560, - [SMALL_STATE(5594)] = 258567, - [SMALL_STATE(5595)] = 258574, - [SMALL_STATE(5596)] = 258581, - [SMALL_STATE(5597)] = 258588, - [SMALL_STATE(5598)] = 258595, - [SMALL_STATE(5599)] = 258602, - [SMALL_STATE(5600)] = 258609, - [SMALL_STATE(5601)] = 258616, - [SMALL_STATE(5602)] = 258623, - [SMALL_STATE(5603)] = 258630, - [SMALL_STATE(5604)] = 258637, - [SMALL_STATE(5605)] = 258644, - [SMALL_STATE(5606)] = 258651, - [SMALL_STATE(5607)] = 258658, - [SMALL_STATE(5608)] = 258665, - [SMALL_STATE(5609)] = 258672, - [SMALL_STATE(5610)] = 258679, - [SMALL_STATE(5611)] = 258686, - [SMALL_STATE(5612)] = 258693, - [SMALL_STATE(5613)] = 258700, - [SMALL_STATE(5614)] = 258707, - [SMALL_STATE(5615)] = 258714, - [SMALL_STATE(5616)] = 258721, - [SMALL_STATE(5617)] = 258728, - [SMALL_STATE(5618)] = 258735, - [SMALL_STATE(5619)] = 258742, - [SMALL_STATE(5620)] = 258749, - [SMALL_STATE(5621)] = 258756, - [SMALL_STATE(5622)] = 258763, - [SMALL_STATE(5623)] = 258770, - [SMALL_STATE(5624)] = 258777, - [SMALL_STATE(5625)] = 258784, - [SMALL_STATE(5626)] = 258791, - [SMALL_STATE(5627)] = 258798, - [SMALL_STATE(5628)] = 258805, - [SMALL_STATE(5629)] = 258812, - [SMALL_STATE(5630)] = 258819, - [SMALL_STATE(5631)] = 258826, - [SMALL_STATE(5632)] = 258833, - [SMALL_STATE(5633)] = 258840, - [SMALL_STATE(5634)] = 258847, - [SMALL_STATE(5635)] = 258854, - [SMALL_STATE(5636)] = 258861, - [SMALL_STATE(5637)] = 258868, - [SMALL_STATE(5638)] = 258875, - [SMALL_STATE(5639)] = 258882, - [SMALL_STATE(5640)] = 258889, - [SMALL_STATE(5641)] = 258896, - [SMALL_STATE(5642)] = 258903, - [SMALL_STATE(5643)] = 258910, - [SMALL_STATE(5644)] = 258917, - [SMALL_STATE(5645)] = 258924, - [SMALL_STATE(5646)] = 258931, - [SMALL_STATE(5647)] = 258938, - [SMALL_STATE(5648)] = 258945, - [SMALL_STATE(5649)] = 258952, - [SMALL_STATE(5650)] = 258959, - [SMALL_STATE(5651)] = 258966, - [SMALL_STATE(5652)] = 258973, - [SMALL_STATE(5653)] = 258980, - [SMALL_STATE(5654)] = 258987, - [SMALL_STATE(5655)] = 258994, - [SMALL_STATE(5656)] = 259001, - [SMALL_STATE(5657)] = 259008, - [SMALL_STATE(5658)] = 259015, - [SMALL_STATE(5659)] = 259022, - [SMALL_STATE(5660)] = 259029, - [SMALL_STATE(5661)] = 259036, - [SMALL_STATE(5662)] = 259043, - [SMALL_STATE(5663)] = 259050, - [SMALL_STATE(5664)] = 259057, - [SMALL_STATE(5665)] = 259064, - [SMALL_STATE(5666)] = 259071, - [SMALL_STATE(5667)] = 259078, - [SMALL_STATE(5668)] = 259085, - [SMALL_STATE(5669)] = 259092, - [SMALL_STATE(5670)] = 259099, - [SMALL_STATE(5671)] = 259106, - [SMALL_STATE(5672)] = 259113, - [SMALL_STATE(5673)] = 259120, - [SMALL_STATE(5674)] = 259127, - [SMALL_STATE(5675)] = 259134, - [SMALL_STATE(5676)] = 259141, - [SMALL_STATE(5677)] = 259148, - [SMALL_STATE(5678)] = 259155, - [SMALL_STATE(5679)] = 259162, - [SMALL_STATE(5680)] = 259169, - [SMALL_STATE(5681)] = 259176, - [SMALL_STATE(5682)] = 259183, - [SMALL_STATE(5683)] = 259190, - [SMALL_STATE(5684)] = 259197, - [SMALL_STATE(5685)] = 259204, - [SMALL_STATE(5686)] = 259211, - [SMALL_STATE(5687)] = 259218, - [SMALL_STATE(5688)] = 259225, - [SMALL_STATE(5689)] = 259232, - [SMALL_STATE(5690)] = 259239, - [SMALL_STATE(5691)] = 259246, - [SMALL_STATE(5692)] = 259253, - [SMALL_STATE(5693)] = 259260, - [SMALL_STATE(5694)] = 259267, - [SMALL_STATE(5695)] = 259274, - [SMALL_STATE(5696)] = 259281, - [SMALL_STATE(5697)] = 259288, - [SMALL_STATE(5698)] = 259295, - [SMALL_STATE(5699)] = 259302, - [SMALL_STATE(5700)] = 259309, - [SMALL_STATE(5701)] = 259316, - [SMALL_STATE(5702)] = 259323, - [SMALL_STATE(5703)] = 259330, - [SMALL_STATE(5704)] = 259337, - [SMALL_STATE(5705)] = 259344, - [SMALL_STATE(5706)] = 259351, - [SMALL_STATE(5707)] = 259358, - [SMALL_STATE(5708)] = 259365, - [SMALL_STATE(5709)] = 259372, - [SMALL_STATE(5710)] = 259379, - [SMALL_STATE(5711)] = 259386, - [SMALL_STATE(5712)] = 259393, - [SMALL_STATE(5713)] = 259400, - [SMALL_STATE(5714)] = 259407, - [SMALL_STATE(5715)] = 259414, - [SMALL_STATE(5716)] = 259421, - [SMALL_STATE(5717)] = 259428, - [SMALL_STATE(5718)] = 259435, - [SMALL_STATE(5719)] = 259442, - [SMALL_STATE(5720)] = 259449, - [SMALL_STATE(5721)] = 259456, - [SMALL_STATE(5722)] = 259463, - [SMALL_STATE(5723)] = 259470, - [SMALL_STATE(5724)] = 259477, - [SMALL_STATE(5725)] = 259484, - [SMALL_STATE(5726)] = 259491, - [SMALL_STATE(5727)] = 259498, - [SMALL_STATE(5728)] = 259505, - [SMALL_STATE(5729)] = 259512, - [SMALL_STATE(5730)] = 259519, - [SMALL_STATE(5731)] = 259526, - [SMALL_STATE(5732)] = 259533, - [SMALL_STATE(5733)] = 259540, - [SMALL_STATE(5734)] = 259547, - [SMALL_STATE(5735)] = 259554, - [SMALL_STATE(5736)] = 259561, - [SMALL_STATE(5737)] = 259568, - [SMALL_STATE(5738)] = 259575, - [SMALL_STATE(5739)] = 259582, - [SMALL_STATE(5740)] = 259589, - [SMALL_STATE(5741)] = 259596, - [SMALL_STATE(5742)] = 259603, - [SMALL_STATE(5743)] = 259610, - [SMALL_STATE(5744)] = 259617, - [SMALL_STATE(5745)] = 259624, - [SMALL_STATE(5746)] = 259631, - [SMALL_STATE(5747)] = 259638, - [SMALL_STATE(5748)] = 259645, - [SMALL_STATE(5749)] = 259652, - [SMALL_STATE(5750)] = 259659, - [SMALL_STATE(5751)] = 259666, - [SMALL_STATE(5752)] = 259673, - [SMALL_STATE(5753)] = 259680, - [SMALL_STATE(5754)] = 259687, - [SMALL_STATE(5755)] = 259694, - [SMALL_STATE(5756)] = 259701, - [SMALL_STATE(5757)] = 259708, - [SMALL_STATE(5758)] = 259715, - [SMALL_STATE(5759)] = 259722, - [SMALL_STATE(5760)] = 259729, - [SMALL_STATE(5761)] = 259736, - [SMALL_STATE(5762)] = 259743, - [SMALL_STATE(5763)] = 259750, - [SMALL_STATE(5764)] = 259757, - [SMALL_STATE(5765)] = 259764, - [SMALL_STATE(5766)] = 259771, - [SMALL_STATE(5767)] = 259778, - [SMALL_STATE(5768)] = 259785, - [SMALL_STATE(5769)] = 259792, - [SMALL_STATE(5770)] = 259799, - [SMALL_STATE(5771)] = 259806, - [SMALL_STATE(5772)] = 259813, - [SMALL_STATE(5773)] = 259820, - [SMALL_STATE(5774)] = 259827, - [SMALL_STATE(5775)] = 259834, - [SMALL_STATE(5776)] = 259841, - [SMALL_STATE(5777)] = 259848, - [SMALL_STATE(5778)] = 259855, - [SMALL_STATE(5779)] = 259862, - [SMALL_STATE(5780)] = 259869, - [SMALL_STATE(5781)] = 259876, - [SMALL_STATE(5782)] = 259883, - [SMALL_STATE(5783)] = 259890, - [SMALL_STATE(5784)] = 259897, - [SMALL_STATE(5785)] = 259904, - [SMALL_STATE(5786)] = 259911, - [SMALL_STATE(5787)] = 259918, - [SMALL_STATE(5788)] = 259925, - [SMALL_STATE(5789)] = 259932, - [SMALL_STATE(5790)] = 259939, - [SMALL_STATE(5791)] = 259946, - [SMALL_STATE(5792)] = 259953, - [SMALL_STATE(5793)] = 259960, - [SMALL_STATE(5794)] = 259967, - [SMALL_STATE(5795)] = 259974, - [SMALL_STATE(5796)] = 259981, - [SMALL_STATE(5797)] = 259988, - [SMALL_STATE(5798)] = 259995, - [SMALL_STATE(5799)] = 260002, - [SMALL_STATE(5800)] = 260009, - [SMALL_STATE(5801)] = 260016, - [SMALL_STATE(5802)] = 260023, - [SMALL_STATE(5803)] = 260030, - [SMALL_STATE(5804)] = 260037, - [SMALL_STATE(5805)] = 260044, - [SMALL_STATE(5806)] = 260051, - [SMALL_STATE(5807)] = 260058, - [SMALL_STATE(5808)] = 260065, - [SMALL_STATE(5809)] = 260072, - [SMALL_STATE(5810)] = 260079, - [SMALL_STATE(5811)] = 260086, - [SMALL_STATE(5812)] = 260093, - [SMALL_STATE(5813)] = 260100, - [SMALL_STATE(5814)] = 260107, - [SMALL_STATE(5815)] = 260114, - [SMALL_STATE(5816)] = 260121, - [SMALL_STATE(5817)] = 260128, - [SMALL_STATE(5818)] = 260135, - [SMALL_STATE(5819)] = 260142, - [SMALL_STATE(5820)] = 260149, - [SMALL_STATE(5821)] = 260156, - [SMALL_STATE(5822)] = 260163, - [SMALL_STATE(5823)] = 260170, - [SMALL_STATE(5824)] = 260177, - [SMALL_STATE(5825)] = 260184, - [SMALL_STATE(5826)] = 260191, - [SMALL_STATE(5827)] = 260198, - [SMALL_STATE(5828)] = 260205, - [SMALL_STATE(5829)] = 260212, - [SMALL_STATE(5830)] = 260219, - [SMALL_STATE(5831)] = 260226, - [SMALL_STATE(5832)] = 260233, - [SMALL_STATE(5833)] = 260240, - [SMALL_STATE(5834)] = 260247, - [SMALL_STATE(5835)] = 260254, - [SMALL_STATE(5836)] = 260261, - [SMALL_STATE(5837)] = 260268, - [SMALL_STATE(5838)] = 260275, - [SMALL_STATE(5839)] = 260282, - [SMALL_STATE(5840)] = 260289, - [SMALL_STATE(5841)] = 260296, - [SMALL_STATE(5842)] = 260303, - [SMALL_STATE(5843)] = 260310, - [SMALL_STATE(5844)] = 260317, - [SMALL_STATE(5845)] = 260324, - [SMALL_STATE(5846)] = 260331, - [SMALL_STATE(5847)] = 260338, - [SMALL_STATE(5848)] = 260345, - [SMALL_STATE(5849)] = 260352, - [SMALL_STATE(5850)] = 260359, - [SMALL_STATE(5851)] = 260366, - [SMALL_STATE(5852)] = 260373, - [SMALL_STATE(5853)] = 260380, - [SMALL_STATE(5854)] = 260387, - [SMALL_STATE(5855)] = 260394, - [SMALL_STATE(5856)] = 260401, - [SMALL_STATE(5857)] = 260408, - [SMALL_STATE(5858)] = 260415, - [SMALL_STATE(5859)] = 260422, - [SMALL_STATE(5860)] = 260429, - [SMALL_STATE(5861)] = 260436, - [SMALL_STATE(5862)] = 260443, - [SMALL_STATE(5863)] = 260450, - [SMALL_STATE(5864)] = 260457, - [SMALL_STATE(5865)] = 260464, - [SMALL_STATE(5866)] = 260471, - [SMALL_STATE(5867)] = 260478, - [SMALL_STATE(5868)] = 260485, - [SMALL_STATE(5869)] = 260492, - [SMALL_STATE(5870)] = 260499, - [SMALL_STATE(5871)] = 260506, - [SMALL_STATE(5872)] = 260513, - [SMALL_STATE(5873)] = 260520, - [SMALL_STATE(5874)] = 260527, - [SMALL_STATE(5875)] = 260534, - [SMALL_STATE(5876)] = 260541, - [SMALL_STATE(5877)] = 260548, - [SMALL_STATE(5878)] = 260555, - [SMALL_STATE(5879)] = 260562, - [SMALL_STATE(5880)] = 260569, - [SMALL_STATE(5881)] = 260576, - [SMALL_STATE(5882)] = 260583, - [SMALL_STATE(5883)] = 260590, - [SMALL_STATE(5884)] = 260597, - [SMALL_STATE(5885)] = 260604, - [SMALL_STATE(5886)] = 260611, - [SMALL_STATE(5887)] = 260618, - [SMALL_STATE(5888)] = 260625, - [SMALL_STATE(5889)] = 260632, - [SMALL_STATE(5890)] = 260639, - [SMALL_STATE(5891)] = 260646, - [SMALL_STATE(5892)] = 260653, - [SMALL_STATE(5893)] = 260660, - [SMALL_STATE(5894)] = 260667, - [SMALL_STATE(5895)] = 260674, - [SMALL_STATE(5896)] = 260681, - [SMALL_STATE(5897)] = 260688, - [SMALL_STATE(5898)] = 260695, - [SMALL_STATE(5899)] = 260702, - [SMALL_STATE(5900)] = 260709, - [SMALL_STATE(5901)] = 260716, - [SMALL_STATE(5902)] = 260723, - [SMALL_STATE(5903)] = 260730, - [SMALL_STATE(5904)] = 260737, - [SMALL_STATE(5905)] = 260744, - [SMALL_STATE(5906)] = 260751, - [SMALL_STATE(5907)] = 260758, - [SMALL_STATE(5908)] = 260765, - [SMALL_STATE(5909)] = 260772, - [SMALL_STATE(5910)] = 260779, - [SMALL_STATE(5911)] = 260786, - [SMALL_STATE(5912)] = 260793, - [SMALL_STATE(5913)] = 260800, - [SMALL_STATE(5914)] = 260807, - [SMALL_STATE(5915)] = 260814, - [SMALL_STATE(5916)] = 260821, - [SMALL_STATE(5917)] = 260828, - [SMALL_STATE(5918)] = 260835, - [SMALL_STATE(5919)] = 260842, - [SMALL_STATE(5920)] = 260849, - [SMALL_STATE(5921)] = 260856, - [SMALL_STATE(5922)] = 260863, - [SMALL_STATE(5923)] = 260870, - [SMALL_STATE(5924)] = 260877, - [SMALL_STATE(5925)] = 260884, - [SMALL_STATE(5926)] = 260891, - [SMALL_STATE(5927)] = 260898, - [SMALL_STATE(5928)] = 260905, - [SMALL_STATE(5929)] = 260912, - [SMALL_STATE(5930)] = 260919, - [SMALL_STATE(5931)] = 260926, - [SMALL_STATE(5932)] = 260933, - [SMALL_STATE(5933)] = 260940, - [SMALL_STATE(5934)] = 260947, - [SMALL_STATE(5935)] = 260954, - [SMALL_STATE(5936)] = 260961, - [SMALL_STATE(5937)] = 260968, - [SMALL_STATE(5938)] = 260975, - [SMALL_STATE(5939)] = 260982, - [SMALL_STATE(5940)] = 260989, - [SMALL_STATE(5941)] = 260996, - [SMALL_STATE(5942)] = 261003, - [SMALL_STATE(5943)] = 261010, - [SMALL_STATE(5944)] = 261017, - [SMALL_STATE(5945)] = 261024, - [SMALL_STATE(5946)] = 261031, - [SMALL_STATE(5947)] = 261038, - [SMALL_STATE(5948)] = 261045, - [SMALL_STATE(5949)] = 261052, - [SMALL_STATE(5950)] = 261059, - [SMALL_STATE(5951)] = 261066, - [SMALL_STATE(5952)] = 261073, - [SMALL_STATE(5953)] = 261080, - [SMALL_STATE(5954)] = 261087, - [SMALL_STATE(5955)] = 261094, - [SMALL_STATE(5956)] = 261101, - [SMALL_STATE(5957)] = 261108, - [SMALL_STATE(5958)] = 261115, - [SMALL_STATE(5959)] = 261122, - [SMALL_STATE(5960)] = 261129, - [SMALL_STATE(5961)] = 261136, - [SMALL_STATE(5962)] = 261143, - [SMALL_STATE(5963)] = 261150, - [SMALL_STATE(5964)] = 261157, - [SMALL_STATE(5965)] = 261164, - [SMALL_STATE(5966)] = 261171, - [SMALL_STATE(5967)] = 261178, - [SMALL_STATE(5968)] = 261185, - [SMALL_STATE(5969)] = 261192, - [SMALL_STATE(5970)] = 261199, - [SMALL_STATE(5971)] = 261206, - [SMALL_STATE(5972)] = 261213, - [SMALL_STATE(5973)] = 261220, - [SMALL_STATE(5974)] = 261227, - [SMALL_STATE(5975)] = 261234, - [SMALL_STATE(5976)] = 261241, - [SMALL_STATE(5977)] = 261248, - [SMALL_STATE(5978)] = 261255, - [SMALL_STATE(5979)] = 261262, - [SMALL_STATE(5980)] = 261269, - [SMALL_STATE(5981)] = 261276, - [SMALL_STATE(5982)] = 261283, - [SMALL_STATE(5983)] = 261290, - [SMALL_STATE(5984)] = 261297, - [SMALL_STATE(5985)] = 261304, - [SMALL_STATE(5986)] = 261311, - [SMALL_STATE(5987)] = 261318, - [SMALL_STATE(5988)] = 261325, - [SMALL_STATE(5989)] = 261332, - [SMALL_STATE(5990)] = 261339, - [SMALL_STATE(5991)] = 261346, - [SMALL_STATE(5992)] = 261353, - [SMALL_STATE(5993)] = 261360, - [SMALL_STATE(5994)] = 261367, - [SMALL_STATE(5995)] = 261374, - [SMALL_STATE(5996)] = 261381, - [SMALL_STATE(5997)] = 261388, - [SMALL_STATE(5998)] = 261395, - [SMALL_STATE(5999)] = 261402, - [SMALL_STATE(6000)] = 261409, - [SMALL_STATE(6001)] = 261416, - [SMALL_STATE(6002)] = 261423, - [SMALL_STATE(6003)] = 261430, - [SMALL_STATE(6004)] = 261437, - [SMALL_STATE(6005)] = 261444, - [SMALL_STATE(6006)] = 261451, - [SMALL_STATE(6007)] = 261458, - [SMALL_STATE(6008)] = 261465, - [SMALL_STATE(6009)] = 261472, - [SMALL_STATE(6010)] = 261479, - [SMALL_STATE(6011)] = 261486, - [SMALL_STATE(6012)] = 261493, - [SMALL_STATE(6013)] = 261500, - [SMALL_STATE(6014)] = 261507, - [SMALL_STATE(6015)] = 261514, - [SMALL_STATE(6016)] = 261521, - [SMALL_STATE(6017)] = 261528, - [SMALL_STATE(6018)] = 261535, - [SMALL_STATE(6019)] = 261542, - [SMALL_STATE(6020)] = 261549, - [SMALL_STATE(6021)] = 261556, - [SMALL_STATE(6022)] = 261563, - [SMALL_STATE(6023)] = 261570, - [SMALL_STATE(6024)] = 261577, - [SMALL_STATE(6025)] = 261584, - [SMALL_STATE(6026)] = 261591, - [SMALL_STATE(6027)] = 261598, - [SMALL_STATE(6028)] = 261605, - [SMALL_STATE(6029)] = 261612, - [SMALL_STATE(6030)] = 261619, - [SMALL_STATE(6031)] = 261626, - [SMALL_STATE(6032)] = 261633, - [SMALL_STATE(6033)] = 261640, - [SMALL_STATE(6034)] = 261647, - [SMALL_STATE(6035)] = 261654, - [SMALL_STATE(6036)] = 261661, - [SMALL_STATE(6037)] = 261668, - [SMALL_STATE(6038)] = 261675, - [SMALL_STATE(6039)] = 261682, - [SMALL_STATE(6040)] = 261689, - [SMALL_STATE(6041)] = 261696, - [SMALL_STATE(6042)] = 261703, - [SMALL_STATE(6043)] = 261710, - [SMALL_STATE(6044)] = 261717, - [SMALL_STATE(6045)] = 261724, - [SMALL_STATE(6046)] = 261731, - [SMALL_STATE(6047)] = 261738, - [SMALL_STATE(6048)] = 261745, - [SMALL_STATE(6049)] = 261752, - [SMALL_STATE(6050)] = 261759, - [SMALL_STATE(6051)] = 261766, - [SMALL_STATE(6052)] = 261773, - [SMALL_STATE(6053)] = 261780, - [SMALL_STATE(6054)] = 261787, - [SMALL_STATE(6055)] = 261794, - [SMALL_STATE(6056)] = 261801, - [SMALL_STATE(6057)] = 261808, - [SMALL_STATE(6058)] = 261815, - [SMALL_STATE(6059)] = 261822, - [SMALL_STATE(6060)] = 261829, - [SMALL_STATE(6061)] = 261836, - [SMALL_STATE(6062)] = 261843, - [SMALL_STATE(6063)] = 261850, - [SMALL_STATE(6064)] = 261857, - [SMALL_STATE(6065)] = 261864, - [SMALL_STATE(6066)] = 261871, - [SMALL_STATE(6067)] = 261878, - [SMALL_STATE(6068)] = 261885, - [SMALL_STATE(6069)] = 261892, - [SMALL_STATE(6070)] = 261899, - [SMALL_STATE(6071)] = 261906, - [SMALL_STATE(6072)] = 261913, - [SMALL_STATE(6073)] = 261920, - [SMALL_STATE(6074)] = 261927, - [SMALL_STATE(6075)] = 261934, - [SMALL_STATE(6076)] = 261941, - [SMALL_STATE(6077)] = 261948, - [SMALL_STATE(6078)] = 261955, - [SMALL_STATE(6079)] = 261962, - [SMALL_STATE(6080)] = 261969, - [SMALL_STATE(6081)] = 261976, - [SMALL_STATE(6082)] = 261983, - [SMALL_STATE(6083)] = 261990, - [SMALL_STATE(6084)] = 261997, - [SMALL_STATE(6085)] = 262004, - [SMALL_STATE(6086)] = 262011, - [SMALL_STATE(6087)] = 262018, - [SMALL_STATE(6088)] = 262025, - [SMALL_STATE(6089)] = 262032, - [SMALL_STATE(6090)] = 262039, - [SMALL_STATE(6091)] = 262046, - [SMALL_STATE(6092)] = 262053, - [SMALL_STATE(6093)] = 262060, - [SMALL_STATE(6094)] = 262067, - [SMALL_STATE(6095)] = 262074, - [SMALL_STATE(6096)] = 262081, - [SMALL_STATE(6097)] = 262088, - [SMALL_STATE(6098)] = 262095, - [SMALL_STATE(6099)] = 262102, - [SMALL_STATE(6100)] = 262109, - [SMALL_STATE(6101)] = 262116, - [SMALL_STATE(6102)] = 262123, - [SMALL_STATE(6103)] = 262130, - [SMALL_STATE(6104)] = 262137, - [SMALL_STATE(6105)] = 262144, - [SMALL_STATE(6106)] = 262151, - [SMALL_STATE(6107)] = 262158, - [SMALL_STATE(6108)] = 262165, - [SMALL_STATE(6109)] = 262172, - [SMALL_STATE(6110)] = 262179, - [SMALL_STATE(6111)] = 262186, - [SMALL_STATE(6112)] = 262193, - [SMALL_STATE(6113)] = 262200, - [SMALL_STATE(6114)] = 262207, - [SMALL_STATE(6115)] = 262214, - [SMALL_STATE(6116)] = 262221, - [SMALL_STATE(6117)] = 262228, - [SMALL_STATE(6118)] = 262235, - [SMALL_STATE(6119)] = 262242, - [SMALL_STATE(6120)] = 262249, - [SMALL_STATE(6121)] = 262256, - [SMALL_STATE(6122)] = 262263, - [SMALL_STATE(6123)] = 262270, - [SMALL_STATE(6124)] = 262277, - [SMALL_STATE(6125)] = 262284, - [SMALL_STATE(6126)] = 262291, - [SMALL_STATE(6127)] = 262298, - [SMALL_STATE(6128)] = 262305, - [SMALL_STATE(6129)] = 262312, - [SMALL_STATE(6130)] = 262319, - [SMALL_STATE(6131)] = 262326, - [SMALL_STATE(6132)] = 262333, - [SMALL_STATE(6133)] = 262340, - [SMALL_STATE(6134)] = 262347, - [SMALL_STATE(6135)] = 262354, - [SMALL_STATE(6136)] = 262361, - [SMALL_STATE(6137)] = 262368, - [SMALL_STATE(6138)] = 262375, - [SMALL_STATE(6139)] = 262382, - [SMALL_STATE(6140)] = 262389, - [SMALL_STATE(6141)] = 262396, - [SMALL_STATE(6142)] = 262403, - [SMALL_STATE(6143)] = 262410, - [SMALL_STATE(6144)] = 262417, - [SMALL_STATE(6145)] = 262424, - [SMALL_STATE(6146)] = 262431, - [SMALL_STATE(6147)] = 262438, - [SMALL_STATE(6148)] = 262445, - [SMALL_STATE(6149)] = 262452, - [SMALL_STATE(6150)] = 262459, - [SMALL_STATE(6151)] = 262466, - [SMALL_STATE(6152)] = 262473, - [SMALL_STATE(6153)] = 262480, - [SMALL_STATE(6154)] = 262487, - [SMALL_STATE(6155)] = 262494, - [SMALL_STATE(6156)] = 262501, - [SMALL_STATE(6157)] = 262508, - [SMALL_STATE(6158)] = 262515, - [SMALL_STATE(6159)] = 262522, - [SMALL_STATE(6160)] = 262529, - [SMALL_STATE(6161)] = 262536, - [SMALL_STATE(6162)] = 262543, - [SMALL_STATE(6163)] = 262550, + [SMALL_STATE(528)] = 0, + [SMALL_STATE(529)] = 120, + [SMALL_STATE(530)] = 240, + [SMALL_STATE(531)] = 359, + [SMALL_STATE(532)] = 478, + [SMALL_STATE(533)] = 594, + [SMALL_STATE(534)] = 712, + [SMALL_STATE(535)] = 830, + [SMALL_STATE(536)] = 944, + [SMALL_STATE(537)] = 1062, + [SMALL_STATE(538)] = 1180, + [SMALL_STATE(539)] = 1258, + [SMALL_STATE(540)] = 1336, + [SMALL_STATE(541)] = 1450, + [SMALL_STATE(542)] = 1565, + [SMALL_STATE(543)] = 1678, + [SMALL_STATE(544)] = 1793, + [SMALL_STATE(545)] = 1910, + [SMALL_STATE(546)] = 2027, + [SMALL_STATE(547)] = 2136, + [SMALL_STATE(548)] = 2249, + [SMALL_STATE(549)] = 2358, + [SMALL_STATE(550)] = 2435, + [SMALL_STATE(551)] = 2512, + [SMALL_STATE(552)] = 2621, + [SMALL_STATE(553)] = 2698, + [SMALL_STATE(554)] = 2775, + [SMALL_STATE(555)] = 2890, + [SMALL_STATE(556)] = 2966, + [SMALL_STATE(557)] = 3042, + [SMALL_STATE(558)] = 3154, + [SMALL_STATE(559)] = 3230, + [SMALL_STATE(560)] = 3338, + [SMALL_STATE(561)] = 3450, + [SMALL_STATE(562)] = 3562, + [SMALL_STATE(563)] = 3676, + [SMALL_STATE(564)] = 3784, + [SMALL_STATE(565)] = 3860, + [SMALL_STATE(566)] = 3968, + [SMALL_STATE(567)] = 4080, + [SMALL_STATE(568)] = 4156, + [SMALL_STATE(569)] = 4232, + [SMALL_STATE(570)] = 4346, + [SMALL_STATE(571)] = 4453, + [SMALL_STATE(572)] = 4564, + [SMALL_STATE(573)] = 4639, + [SMALL_STATE(574)] = 4710, + [SMALL_STATE(575)] = 4823, + [SMALL_STATE(576)] = 4894, + [SMALL_STATE(577)] = 5001, + [SMALL_STATE(578)] = 5108, + [SMALL_STATE(579)] = 5183, + [SMALL_STATE(580)] = 5258, + [SMALL_STATE(581)] = 5333, + [SMALL_STATE(582)] = 5440, + [SMALL_STATE(583)] = 5551, + [SMALL_STATE(584)] = 5652, + [SMALL_STATE(585)] = 5761, + [SMALL_STATE(586)] = 5868, + [SMALL_STATE(587)] = 5975, + [SMALL_STATE(588)] = 6084, + [SMALL_STATE(589)] = 6159, + [SMALL_STATE(590)] = 6234, + [SMALL_STATE(591)] = 6336, + [SMALL_STATE(592)] = 6436, + [SMALL_STATE(593)] = 6540, + [SMALL_STATE(594)] = 6640, + [SMALL_STATE(595)] = 6744, + [SMALL_STATE(596)] = 6844, + [SMALL_STATE(597)] = 6958, + [SMALL_STATE(598)] = 7032, + [SMALL_STATE(599)] = 7134, + [SMALL_STATE(600)] = 7198, + [SMALL_STATE(601)] = 7312, + [SMALL_STATE(602)] = 7382, + [SMALL_STATE(603)] = 7488, + [SMALL_STATE(604)] = 7562, + [SMALL_STATE(605)] = 7632, + [SMALL_STATE(606)] = 7706, + [SMALL_STATE(607)] = 7780, + [SMALL_STATE(608)] = 7850, + [SMALL_STATE(609)] = 7924, + [SMALL_STATE(610)] = 8024, + [SMALL_STATE(611)] = 8130, + [SMALL_STATE(612)] = 8204, + [SMALL_STATE(613)] = 8310, + [SMALL_STATE(614)] = 8412, + [SMALL_STATE(615)] = 8482, + [SMALL_STATE(616)] = 8581, + [SMALL_STATE(617)] = 8680, + [SMALL_STATE(618)] = 8795, + [SMALL_STATE(619)] = 8926, + [SMALL_STATE(620)] = 9057, + [SMALL_STATE(621)] = 9172, + [SMALL_STATE(622)] = 9271, + [SMALL_STATE(623)] = 9338, + [SMALL_STATE(624)] = 9469, + [SMALL_STATE(625)] = 9536, + [SMALL_STATE(626)] = 9603, + [SMALL_STATE(627)] = 9734, + [SMALL_STATE(628)] = 9833, + [SMALL_STATE(629)] = 9906, + [SMALL_STATE(630)] = 10007, + [SMALL_STATE(631)] = 10106, + [SMALL_STATE(632)] = 10205, + [SMALL_STATE(633)] = 10306, + [SMALL_STATE(634)] = 10407, + [SMALL_STATE(635)] = 10480, + [SMALL_STATE(636)] = 10579, + [SMALL_STATE(637)] = 10710, + [SMALL_STATE(638)] = 10783, + [SMALL_STATE(639)] = 10856, + [SMALL_STATE(640)] = 10929, + [SMALL_STATE(641)] = 11002, + [SMALL_STATE(642)] = 11075, + [SMALL_STATE(643)] = 11144, + [SMALL_STATE(644)] = 11217, + [SMALL_STATE(645)] = 11348, + [SMALL_STATE(646)] = 11417, + [SMALL_STATE(647)] = 11486, + [SMALL_STATE(648)] = 11559, + [SMALL_STATE(649)] = 11628, + [SMALL_STATE(650)] = 11697, + [SMALL_STATE(651)] = 11828, + [SMALL_STATE(652)] = 11927, + [SMALL_STATE(653)] = 12000, + [SMALL_STATE(654)] = 12099, + [SMALL_STATE(655)] = 12168, + [SMALL_STATE(656)] = 12235, + [SMALL_STATE(657)] = 12366, + [SMALL_STATE(658)] = 12465, + [SMALL_STATE(659)] = 12563, + [SMALL_STATE(660)] = 12691, + [SMALL_STATE(661)] = 12789, + [SMALL_STATE(662)] = 12917, + [SMALL_STATE(663)] = 12989, + [SMALL_STATE(664)] = 13061, + [SMALL_STATE(665)] = 13161, + [SMALL_STATE(666)] = 13259, + [SMALL_STATE(667)] = 13331, + [SMALL_STATE(668)] = 13431, + [SMALL_STATE(669)] = 13503, + [SMALL_STATE(670)] = 13575, + [SMALL_STATE(671)] = 13647, + [SMALL_STATE(672)] = 13775, + [SMALL_STATE(673)] = 13873, + [SMALL_STATE(674)] = 13941, + [SMALL_STATE(675)] = 14013, + [SMALL_STATE(676)] = 14121, + [SMALL_STATE(677)] = 14193, + [SMALL_STATE(678)] = 14265, + [SMALL_STATE(679)] = 14363, + [SMALL_STATE(680)] = 14435, + [SMALL_STATE(681)] = 14533, + [SMALL_STATE(682)] = 14631, + [SMALL_STATE(683)] = 14699, + [SMALL_STATE(684)] = 14771, + [SMALL_STATE(685)] = 14869, + [SMALL_STATE(686)] = 14997, + [SMALL_STATE(687)] = 15065, + [SMALL_STATE(688)] = 15137, + [SMALL_STATE(689)] = 15245, + [SMALL_STATE(690)] = 15313, + [SMALL_STATE(691)] = 15413, + [SMALL_STATE(692)] = 15511, + [SMALL_STATE(693)] = 15583, + [SMALL_STATE(694)] = 15683, + [SMALL_STATE(695)] = 15751, + [SMALL_STATE(696)] = 15851, + [SMALL_STATE(697)] = 15923, + [SMALL_STATE(698)] = 16051, + [SMALL_STATE(699)] = 16179, + [SMALL_STATE(700)] = 16251, + [SMALL_STATE(701)] = 16323, + [SMALL_STATE(702)] = 16451, + [SMALL_STATE(703)] = 16549, + [SMALL_STATE(704)] = 16659, + [SMALL_STATE(705)] = 16757, + [SMALL_STATE(706)] = 16855, + [SMALL_STATE(707)] = 16953, + [SMALL_STATE(708)] = 17051, + [SMALL_STATE(709)] = 17119, + [SMALL_STATE(710)] = 17219, + [SMALL_STATE(711)] = 17290, + [SMALL_STATE(712)] = 17415, + [SMALL_STATE(713)] = 17540, + [SMALL_STATE(714)] = 17665, + [SMALL_STATE(715)] = 17762, + [SMALL_STATE(716)] = 17859, + [SMALL_STATE(717)] = 17930, + [SMALL_STATE(718)] = 18001, + [SMALL_STATE(719)] = 18100, + [SMALL_STATE(720)] = 18197, + [SMALL_STATE(721)] = 18294, + [SMALL_STATE(722)] = 18365, + [SMALL_STATE(723)] = 18462, + [SMALL_STATE(724)] = 18533, + [SMALL_STATE(725)] = 18630, + [SMALL_STATE(726)] = 18701, + [SMALL_STATE(727)] = 18798, + [SMALL_STATE(728)] = 18907, + [SMALL_STATE(729)] = 19022, + [SMALL_STATE(730)] = 19137, + [SMALL_STATE(731)] = 19262, + [SMALL_STATE(732)] = 19361, + [SMALL_STATE(733)] = 19432, + [SMALL_STATE(734)] = 19529, + [SMALL_STATE(735)] = 19654, + [SMALL_STATE(736)] = 19725, + [SMALL_STATE(737)] = 19840, + [SMALL_STATE(738)] = 19911, + [SMALL_STATE(739)] = 20008, + [SMALL_STATE(740)] = 20105, + [SMALL_STATE(741)] = 20176, + [SMALL_STATE(742)] = 20273, + [SMALL_STATE(743)] = 20370, + [SMALL_STATE(744)] = 20469, + [SMALL_STATE(745)] = 20584, + [SMALL_STATE(746)] = 20699, + [SMALL_STATE(747)] = 20802, + [SMALL_STATE(748)] = 20899, + [SMALL_STATE(749)] = 21002, + [SMALL_STATE(750)] = 21073, + [SMALL_STATE(751)] = 21144, + [SMALL_STATE(752)] = 21255, + [SMALL_STATE(753)] = 21364, + [SMALL_STATE(754)] = 21479, + [SMALL_STATE(755)] = 21574, + [SMALL_STATE(756)] = 21669, + [SMALL_STATE(757)] = 21740, + [SMALL_STATE(758)] = 21837, + [SMALL_STATE(759)] = 21952, + [SMALL_STATE(760)] = 22019, + [SMALL_STATE(761)] = 22144, + [SMALL_STATE(762)] = 22241, + [SMALL_STATE(763)] = 22366, + [SMALL_STATE(764)] = 22491, + [SMALL_STATE(765)] = 22588, + [SMALL_STATE(766)] = 22659, + [SMALL_STATE(767)] = 22730, + [SMALL_STATE(768)] = 22801, + [SMALL_STATE(769)] = 22872, + [SMALL_STATE(770)] = 22987, + [SMALL_STATE(771)] = 23102, + [SMALL_STATE(772)] = 23217, + [SMALL_STATE(773)] = 23284, + [SMALL_STATE(774)] = 23381, + [SMALL_STATE(775)] = 23452, + [SMALL_STATE(776)] = 23523, + [SMALL_STATE(777)] = 23594, + [SMALL_STATE(778)] = 23697, + [SMALL_STATE(779)] = 23791, + [SMALL_STATE(780)] = 23887, + [SMALL_STATE(781)] = 23947, + [SMALL_STATE(782)] = 24043, + [SMALL_STATE(783)] = 24113, + [SMALL_STATE(784)] = 24209, + [SMALL_STATE(785)] = 24279, + [SMALL_STATE(786)] = 24373, + [SMALL_STATE(787)] = 24467, + [SMALL_STATE(788)] = 24537, + [SMALL_STATE(789)] = 24633, + [SMALL_STATE(790)] = 24729, + [SMALL_STATE(791)] = 24825, + [SMALL_STATE(792)] = 24919, + [SMALL_STATE(793)] = 25015, + [SMALL_STATE(794)] = 25085, + [SMALL_STATE(795)] = 25147, + [SMALL_STATE(796)] = 25217, + [SMALL_STATE(797)] = 25287, + [SMALL_STATE(798)] = 25391, + [SMALL_STATE(799)] = 25487, + [SMALL_STATE(800)] = 25591, + [SMALL_STATE(801)] = 25653, + [SMALL_STATE(802)] = 25723, + [SMALL_STATE(803)] = 25783, + [SMALL_STATE(804)] = 25887, + [SMALL_STATE(805)] = 25983, + [SMALL_STATE(806)] = 26053, + [SMALL_STATE(807)] = 26118, + [SMALL_STATE(808)] = 26197, + [SMALL_STATE(809)] = 26262, + [SMALL_STATE(810)] = 26335, + [SMALL_STATE(811)] = 26396, + [SMALL_STATE(812)] = 26491, + [SMALL_STATE(813)] = 26552, + [SMALL_STATE(814)] = 26619, + [SMALL_STATE(815)] = 26684, + [SMALL_STATE(816)] = 26749, + [SMALL_STATE(817)] = 26814, + [SMALL_STATE(818)] = 26911, + [SMALL_STATE(819)] = 26990, + [SMALL_STATE(820)] = 27055, + [SMALL_STATE(821)] = 27120, + [SMALL_STATE(822)] = 27185, + [SMALL_STATE(823)] = 27256, + [SMALL_STATE(824)] = 27321, + [SMALL_STATE(825)] = 27386, + [SMALL_STATE(826)] = 27481, + [SMALL_STATE(827)] = 27576, + [SMALL_STATE(828)] = 27635, + [SMALL_STATE(829)] = 27728, + [SMALL_STATE(830)] = 27821, + [SMALL_STATE(831)] = 27885, + [SMALL_STATE(832)] = 27943, + [SMALL_STATE(833)] = 28007, + [SMALL_STATE(834)] = 28071, + [SMALL_STATE(835)] = 28135, + [SMALL_STATE(836)] = 28213, + [SMALL_STATE(837)] = 28277, + [SMALL_STATE(838)] = 28341, + [SMALL_STATE(839)] = 28405, + [SMALL_STATE(840)] = 28477, + [SMALL_STATE(841)] = 28545, + [SMALL_STATE(842)] = 28609, + [SMALL_STATE(843)] = 28677, + [SMALL_STATE(844)] = 28735, + [SMALL_STATE(845)] = 28793, + [SMALL_STATE(846)] = 28851, + [SMALL_STATE(847)] = 28909, + [SMALL_STATE(848)] = 28979, + [SMALL_STATE(849)] = 29037, + [SMALL_STATE(850)] = 29115, + [SMALL_STATE(851)] = 29179, + [SMALL_STATE(852)] = 29275, + [SMALL_STATE(853)] = 29339, + [SMALL_STATE(854)] = 29403, + [SMALL_STATE(855)] = 29467, + [SMALL_STATE(856)] = 29525, + [SMALL_STATE(857)] = 29583, + [SMALL_STATE(858)] = 29641, + [SMALL_STATE(859)] = 29705, + [SMALL_STATE(860)] = 29769, + [SMALL_STATE(861)] = 29863, + [SMALL_STATE(862)] = 29927, + [SMALL_STATE(863)] = 30021, + [SMALL_STATE(864)] = 30115, + [SMALL_STATE(865)] = 30173, + [SMALL_STATE(866)] = 30269, + [SMALL_STATE(867)] = 30327, + [SMALL_STATE(868)] = 30423, + [SMALL_STATE(869)] = 30481, + [SMALL_STATE(870)] = 30539, + [SMALL_STATE(871)] = 30603, + [SMALL_STATE(872)] = 30661, + [SMALL_STATE(873)] = 30719, + [SMALL_STATE(874)] = 30787, + [SMALL_STATE(875)] = 30851, + [SMALL_STATE(876)] = 30947, + [SMALL_STATE(877)] = 31011, + [SMALL_STATE(878)] = 31079, + [SMALL_STATE(879)] = 31175, + [SMALL_STATE(880)] = 31271, + [SMALL_STATE(881)] = 31335, + [SMALL_STATE(882)] = 31403, + [SMALL_STATE(883)] = 31467, + [SMALL_STATE(884)] = 31535, + [SMALL_STATE(885)] = 31593, + [SMALL_STATE(886)] = 31657, + [SMALL_STATE(887)] = 31723, + [SMALL_STATE(888)] = 31781, + [SMALL_STATE(889)] = 31839, + [SMALL_STATE(890)] = 31897, + [SMALL_STATE(891)] = 31965, + [SMALL_STATE(892)] = 32029, + [SMALL_STATE(893)] = 32097, + [SMALL_STATE(894)] = 32161, + [SMALL_STATE(895)] = 32225, + [SMALL_STATE(896)] = 32321, + [SMALL_STATE(897)] = 32388, + [SMALL_STATE(898)] = 32483, + [SMALL_STATE(899)] = 32540, + [SMALL_STATE(900)] = 32607, + [SMALL_STATE(901)] = 32664, + [SMALL_STATE(902)] = 32721, + [SMALL_STATE(903)] = 32788, + [SMALL_STATE(904)] = 32883, + [SMALL_STATE(905)] = 32950, + [SMALL_STATE(906)] = 33013, + [SMALL_STATE(907)] = 33080, + [SMALL_STATE(908)] = 33145, + [SMALL_STATE(909)] = 33238, + [SMALL_STATE(910)] = 33331, + [SMALL_STATE(911)] = 33388, + [SMALL_STATE(912)] = 33455, + [SMALL_STATE(913)] = 33512, + [SMALL_STATE(914)] = 33589, + [SMALL_STATE(915)] = 33646, + [SMALL_STATE(916)] = 33703, + [SMALL_STATE(917)] = 33760, + [SMALL_STATE(918)] = 33817, + [SMALL_STATE(919)] = 33874, + [SMALL_STATE(920)] = 33931, + [SMALL_STATE(921)] = 33994, + [SMALL_STATE(922)] = 34051, + [SMALL_STATE(923)] = 34108, + [SMALL_STATE(924)] = 34165, + [SMALL_STATE(925)] = 34222, + [SMALL_STATE(926)] = 34333, + [SMALL_STATE(927)] = 34394, + [SMALL_STATE(928)] = 34451, + [SMALL_STATE(929)] = 34508, + [SMALL_STATE(930)] = 34565, + [SMALL_STATE(931)] = 34622, + [SMALL_STATE(932)] = 34679, + [SMALL_STATE(933)] = 34742, + [SMALL_STATE(934)] = 34853, + [SMALL_STATE(935)] = 34910, + [SMALL_STATE(936)] = 34973, + [SMALL_STATE(937)] = 35068, + [SMALL_STATE(938)] = 35179, + [SMALL_STATE(939)] = 35242, + [SMALL_STATE(940)] = 35337, + [SMALL_STATE(941)] = 35402, + [SMALL_STATE(942)] = 35469, + [SMALL_STATE(943)] = 35536, + [SMALL_STATE(944)] = 35603, + [SMALL_STATE(945)] = 35698, + [SMALL_STATE(946)] = 35775, + [SMALL_STATE(947)] = 35842, + [SMALL_STATE(948)] = 35905, + [SMALL_STATE(949)] = 35976, + [SMALL_STATE(950)] = 36039, + [SMALL_STATE(951)] = 36136, + [SMALL_STATE(952)] = 36247, + [SMALL_STATE(953)] = 36308, + [SMALL_STATE(954)] = 36375, + [SMALL_STATE(955)] = 36442, + [SMALL_STATE(956)] = 36553, + [SMALL_STATE(957)] = 36620, + [SMALL_STATE(958)] = 36683, + [SMALL_STATE(959)] = 36794, + [SMALL_STATE(960)] = 36857, + [SMALL_STATE(961)] = 36924, + [SMALL_STATE(962)] = 36993, + [SMALL_STATE(963)] = 37090, + [SMALL_STATE(964)] = 37147, + [SMALL_STATE(965)] = 37204, + [SMALL_STATE(966)] = 37267, + [SMALL_STATE(967)] = 37330, + [SMALL_STATE(968)] = 37425, + [SMALL_STATE(969)] = 37482, + [SMALL_STATE(970)] = 37545, + [SMALL_STATE(971)] = 37608, + [SMALL_STATE(972)] = 37703, + [SMALL_STATE(973)] = 37796, + [SMALL_STATE(974)] = 37889, + [SMALL_STATE(975)] = 37952, + [SMALL_STATE(976)] = 38009, + [SMALL_STATE(977)] = 38102, + [SMALL_STATE(978)] = 38159, + [SMALL_STATE(979)] = 38222, + [SMALL_STATE(980)] = 38319, + [SMALL_STATE(981)] = 38376, + [SMALL_STATE(982)] = 38471, + [SMALL_STATE(983)] = 38528, + [SMALL_STATE(984)] = 38591, + [SMALL_STATE(985)] = 38648, + [SMALL_STATE(986)] = 38711, + [SMALL_STATE(987)] = 38780, + [SMALL_STATE(988)] = 38837, + [SMALL_STATE(989)] = 38894, + [SMALL_STATE(990)] = 39005, + [SMALL_STATE(991)] = 39062, + [SMALL_STATE(992)] = 39139, + [SMALL_STATE(993)] = 39202, + [SMALL_STATE(994)] = 39265, + [SMALL_STATE(995)] = 39328, + [SMALL_STATE(996)] = 39391, + [SMALL_STATE(997)] = 39454, + [SMALL_STATE(998)] = 39565, + [SMALL_STATE(999)] = 39622, + [SMALL_STATE(1000)] = 39679, + [SMALL_STATE(1001)] = 39742, + [SMALL_STATE(1002)] = 39805, + [SMALL_STATE(1003)] = 39882, + [SMALL_STATE(1004)] = 39945, + [SMALL_STATE(1005)] = 40002, + [SMALL_STATE(1006)] = 40059, + [SMALL_STATE(1007)] = 40130, + [SMALL_STATE(1008)] = 40193, + [SMALL_STATE(1009)] = 40250, + [SMALL_STATE(1010)] = 40307, + [SMALL_STATE(1011)] = 40373, + [SMALL_STATE(1012)] = 40435, + [SMALL_STATE(1013)] = 40499, + [SMALL_STATE(1014)] = 40555, + [SMALL_STATE(1015)] = 40615, + [SMALL_STATE(1016)] = 40671, + [SMALL_STATE(1017)] = 40727, + [SMALL_STATE(1018)] = 40783, + [SMALL_STATE(1019)] = 40839, + [SMALL_STATE(1020)] = 40895, + [SMALL_STATE(1021)] = 40951, + [SMALL_STATE(1022)] = 41013, + [SMALL_STATE(1023)] = 41069, + [SMALL_STATE(1024)] = 41131, + [SMALL_STATE(1025)] = 41197, + [SMALL_STATE(1026)] = 41263, + [SMALL_STATE(1027)] = 41323, + [SMALL_STATE(1028)] = 41379, + [SMALL_STATE(1029)] = 41447, + [SMALL_STATE(1030)] = 41503, + [SMALL_STATE(1031)] = 41577, + [SMALL_STATE(1032)] = 41633, + [SMALL_STATE(1033)] = 41695, + [SMALL_STATE(1034)] = 41751, + [SMALL_STATE(1035)] = 41807, + [SMALL_STATE(1036)] = 41901, + [SMALL_STATE(1037)] = 41975, + [SMALL_STATE(1038)] = 42031, + [SMALL_STATE(1039)] = 42087, + [SMALL_STATE(1040)] = 42149, + [SMALL_STATE(1041)] = 42211, + [SMALL_STATE(1042)] = 42277, + [SMALL_STATE(1043)] = 42339, + [SMALL_STATE(1044)] = 42395, + [SMALL_STATE(1045)] = 42451, + [SMALL_STATE(1046)] = 42511, + [SMALL_STATE(1047)] = 42567, + [SMALL_STATE(1048)] = 42623, + [SMALL_STATE(1049)] = 42689, + [SMALL_STATE(1050)] = 42745, + [SMALL_STATE(1051)] = 42811, + [SMALL_STATE(1052)] = 42877, + [SMALL_STATE(1053)] = 42933, + [SMALL_STATE(1054)] = 42999, + [SMALL_STATE(1055)] = 43061, + [SMALL_STATE(1056)] = 43123, + [SMALL_STATE(1057)] = 43217, + [SMALL_STATE(1058)] = 43273, + [SMALL_STATE(1059)] = 43329, + [SMALL_STATE(1060)] = 43399, + [SMALL_STATE(1061)] = 43455, + [SMALL_STATE(1062)] = 43511, + [SMALL_STATE(1063)] = 43567, + [SMALL_STATE(1064)] = 43623, + [SMALL_STATE(1065)] = 43679, + [SMALL_STATE(1066)] = 43741, + [SMALL_STATE(1067)] = 43803, + [SMALL_STATE(1068)] = 43865, + [SMALL_STATE(1069)] = 43927, + [SMALL_STATE(1070)] = 43989, + [SMALL_STATE(1071)] = 44055, + [SMALL_STATE(1072)] = 44121, + [SMALL_STATE(1073)] = 44183, + [SMALL_STATE(1074)] = 44245, + [SMALL_STATE(1075)] = 44307, + [SMALL_STATE(1076)] = 44401, + [SMALL_STATE(1077)] = 44463, + [SMALL_STATE(1078)] = 44525, + [SMALL_STATE(1079)] = 44587, + [SMALL_STATE(1080)] = 44649, + [SMALL_STATE(1081)] = 44713, + [SMALL_STATE(1082)] = 44775, + [SMALL_STATE(1083)] = 44831, + [SMALL_STATE(1084)] = 44887, + [SMALL_STATE(1085)] = 44943, + [SMALL_STATE(1086)] = 44999, + [SMALL_STATE(1087)] = 45061, + [SMALL_STATE(1088)] = 45123, + [SMALL_STATE(1089)] = 45185, + [SMALL_STATE(1090)] = 45247, + [SMALL_STATE(1091)] = 45341, + [SMALL_STATE(1092)] = 45403, + [SMALL_STATE(1093)] = 45465, + [SMALL_STATE(1094)] = 45527, + [SMALL_STATE(1095)] = 45589, + [SMALL_STATE(1096)] = 45649, + [SMALL_STATE(1097)] = 45719, + [SMALL_STATE(1098)] = 45779, + [SMALL_STATE(1099)] = 45847, + [SMALL_STATE(1100)] = 45903, + [SMALL_STATE(1101)] = 45965, + [SMALL_STATE(1102)] = 46021, + [SMALL_STATE(1103)] = 46115, + [SMALL_STATE(1104)] = 46171, + [SMALL_STATE(1105)] = 46227, + [SMALL_STATE(1106)] = 46289, + [SMALL_STATE(1107)] = 46351, + [SMALL_STATE(1108)] = 46413, + [SMALL_STATE(1109)] = 46475, + [SMALL_STATE(1110)] = 46537, + [SMALL_STATE(1111)] = 46629, + [SMALL_STATE(1112)] = 46721, + [SMALL_STATE(1113)] = 46777, + [SMALL_STATE(1114)] = 46833, + [SMALL_STATE(1115)] = 46899, + [SMALL_STATE(1116)] = 46965, + [SMALL_STATE(1117)] = 47021, + [SMALL_STATE(1118)] = 47115, + [SMALL_STATE(1119)] = 47209, + [SMALL_STATE(1120)] = 47265, + [SMALL_STATE(1121)] = 47321, + [SMALL_STATE(1122)] = 47383, + [SMALL_STATE(1123)] = 47445, + [SMALL_STATE(1124)] = 47507, + [SMALL_STATE(1125)] = 47569, + [SMALL_STATE(1126)] = 47625, + [SMALL_STATE(1127)] = 47681, + [SMALL_STATE(1128)] = 47743, + [SMALL_STATE(1129)] = 47799, + [SMALL_STATE(1130)] = 47855, + [SMALL_STATE(1131)] = 47911, + [SMALL_STATE(1132)] = 47973, + [SMALL_STATE(1133)] = 48049, + [SMALL_STATE(1134)] = 48105, + [SMALL_STATE(1135)] = 48171, + [SMALL_STATE(1136)] = 48237, + [SMALL_STATE(1137)] = 48293, + [SMALL_STATE(1138)] = 48349, + [SMALL_STATE(1139)] = 48405, + [SMALL_STATE(1140)] = 48461, + [SMALL_STATE(1141)] = 48523, + [SMALL_STATE(1142)] = 48589, + [SMALL_STATE(1143)] = 48645, + [SMALL_STATE(1144)] = 48701, + [SMALL_STATE(1145)] = 48763, + [SMALL_STATE(1146)] = 48819, + [SMALL_STATE(1147)] = 48879, + [SMALL_STATE(1148)] = 48941, + [SMALL_STATE(1149)] = 49003, + [SMALL_STATE(1150)] = 49063, + [SMALL_STATE(1151)] = 49139, + [SMALL_STATE(1152)] = 49213, + [SMALL_STATE(1153)] = 49269, + [SMALL_STATE(1154)] = 49343, + [SMALL_STATE(1155)] = 49409, + [SMALL_STATE(1156)] = 49465, + [SMALL_STATE(1157)] = 49527, + [SMALL_STATE(1158)] = 49583, + [SMALL_STATE(1159)] = 49645, + [SMALL_STATE(1160)] = 49701, + [SMALL_STATE(1161)] = 49763, + [SMALL_STATE(1162)] = 49819, + [SMALL_STATE(1163)] = 49881, + [SMALL_STATE(1164)] = 49943, + [SMALL_STATE(1165)] = 50008, + [SMALL_STATE(1166)] = 50063, + [SMALL_STATE(1167)] = 50124, + [SMALL_STATE(1168)] = 50185, + [SMALL_STATE(1169)] = 50240, + [SMALL_STATE(1170)] = 50295, + [SMALL_STATE(1171)] = 50356, + [SMALL_STATE(1172)] = 50417, + [SMALL_STATE(1173)] = 50510, + [SMALL_STATE(1174)] = 50577, + [SMALL_STATE(1175)] = 50638, + [SMALL_STATE(1176)] = 50697, + [SMALL_STATE(1177)] = 50752, + [SMALL_STATE(1178)] = 50813, + [SMALL_STATE(1179)] = 50906, + [SMALL_STATE(1180)] = 50965, + [SMALL_STATE(1181)] = 51024, + [SMALL_STATE(1182)] = 51079, + [SMALL_STATE(1183)] = 51134, + [SMALL_STATE(1184)] = 51189, + [SMALL_STATE(1185)] = 51250, + [SMALL_STATE(1186)] = 51305, + [SMALL_STATE(1187)] = 51360, + [SMALL_STATE(1188)] = 51415, + [SMALL_STATE(1189)] = 51470, + [SMALL_STATE(1190)] = 51525, + [SMALL_STATE(1191)] = 51586, + [SMALL_STATE(1192)] = 51647, + [SMALL_STATE(1193)] = 51708, + [SMALL_STATE(1194)] = 51769, + [SMALL_STATE(1195)] = 51824, + [SMALL_STATE(1196)] = 51879, + [SMALL_STATE(1197)] = 51934, + [SMALL_STATE(1198)] = 51999, + [SMALL_STATE(1199)] = 52054, + [SMALL_STATE(1200)] = 52109, + [SMALL_STATE(1201)] = 52164, + [SMALL_STATE(1202)] = 52223, + [SMALL_STATE(1203)] = 52282, + [SMALL_STATE(1204)] = 52343, + [SMALL_STATE(1205)] = 52398, + [SMALL_STATE(1206)] = 52453, + [SMALL_STATE(1207)] = 52508, + [SMALL_STATE(1208)] = 52563, + [SMALL_STATE(1209)] = 52618, + [SMALL_STATE(1210)] = 52677, + [SMALL_STATE(1211)] = 52732, + [SMALL_STATE(1212)] = 52793, + [SMALL_STATE(1213)] = 52852, + [SMALL_STATE(1214)] = 52907, + [SMALL_STATE(1215)] = 52968, + [SMALL_STATE(1216)] = 53029, + [SMALL_STATE(1217)] = 53084, + [SMALL_STATE(1218)] = 53145, + [SMALL_STATE(1219)] = 53200, + [SMALL_STATE(1220)] = 53261, + [SMALL_STATE(1221)] = 53316, + [SMALL_STATE(1222)] = 53371, + [SMALL_STATE(1223)] = 53426, + [SMALL_STATE(1224)] = 53481, + [SMALL_STATE(1225)] = 53536, + [SMALL_STATE(1226)] = 53591, + [SMALL_STATE(1227)] = 53652, + [SMALL_STATE(1228)] = 53713, + [SMALL_STATE(1229)] = 53774, + [SMALL_STATE(1230)] = 53829, + [SMALL_STATE(1231)] = 53890, + [SMALL_STATE(1232)] = 53945, + [SMALL_STATE(1233)] = 54000, + [SMALL_STATE(1234)] = 54055, + [SMALL_STATE(1235)] = 54116, + [SMALL_STATE(1236)] = 54171, + [SMALL_STATE(1237)] = 54226, + [SMALL_STATE(1238)] = 54281, + [SMALL_STATE(1239)] = 54336, + [SMALL_STATE(1240)] = 54391, + [SMALL_STATE(1241)] = 54446, + [SMALL_STATE(1242)] = 54501, + [SMALL_STATE(1243)] = 54556, + [SMALL_STATE(1244)] = 54617, + [SMALL_STATE(1245)] = 54678, + [SMALL_STATE(1246)] = 54739, + [SMALL_STATE(1247)] = 54794, + [SMALL_STATE(1248)] = 54849, + [SMALL_STATE(1249)] = 54904, + [SMALL_STATE(1250)] = 54965, + [SMALL_STATE(1251)] = 55026, + [SMALL_STATE(1252)] = 55087, + [SMALL_STATE(1253)] = 55142, + [SMALL_STATE(1254)] = 55197, + [SMALL_STATE(1255)] = 55252, + [SMALL_STATE(1256)] = 55307, + [SMALL_STATE(1257)] = 55362, + [SMALL_STATE(1258)] = 55423, + [SMALL_STATE(1259)] = 55484, + [SMALL_STATE(1260)] = 55539, + [SMALL_STATE(1261)] = 55594, + [SMALL_STATE(1262)] = 55655, + [SMALL_STATE(1263)] = 55716, + [SMALL_STATE(1264)] = 55777, + [SMALL_STATE(1265)] = 55838, + [SMALL_STATE(1266)] = 55899, + [SMALL_STATE(1267)] = 55960, + [SMALL_STATE(1268)] = 56019, + [SMALL_STATE(1269)] = 56074, + [SMALL_STATE(1270)] = 56135, + [SMALL_STATE(1271)] = 56196, + [SMALL_STATE(1272)] = 56257, + [SMALL_STATE(1273)] = 56312, + [SMALL_STATE(1274)] = 56373, + [SMALL_STATE(1275)] = 56434, + [SMALL_STATE(1276)] = 56495, + [SMALL_STATE(1277)] = 56556, + [SMALL_STATE(1278)] = 56611, + [SMALL_STATE(1279)] = 56666, + [SMALL_STATE(1280)] = 56721, + [SMALL_STATE(1281)] = 56776, + [SMALL_STATE(1282)] = 56831, + [SMALL_STATE(1283)] = 56886, + [SMALL_STATE(1284)] = 56941, + [SMALL_STATE(1285)] = 56996, + [SMALL_STATE(1286)] = 57051, + [SMALL_STATE(1287)] = 57106, + [SMALL_STATE(1288)] = 57161, + [SMALL_STATE(1289)] = 57216, + [SMALL_STATE(1290)] = 57271, + [SMALL_STATE(1291)] = 57332, + [SMALL_STATE(1292)] = 57393, + [SMALL_STATE(1293)] = 57448, + [SMALL_STATE(1294)] = 57503, + [SMALL_STATE(1295)] = 57558, + [SMALL_STATE(1296)] = 57617, + [SMALL_STATE(1297)] = 57672, + [SMALL_STATE(1298)] = 57727, + [SMALL_STATE(1299)] = 57782, + [SMALL_STATE(1300)] = 57837, + [SMALL_STATE(1301)] = 57892, + [SMALL_STATE(1302)] = 57947, + [SMALL_STATE(1303)] = 58002, + [SMALL_STATE(1304)] = 58057, + [SMALL_STATE(1305)] = 58112, + [SMALL_STATE(1306)] = 58167, + [SMALL_STATE(1307)] = 58222, + [SMALL_STATE(1308)] = 58282, + [SMALL_STATE(1309)] = 58342, + [SMALL_STATE(1310)] = 58396, + [SMALL_STATE(1311)] = 58450, + [SMALL_STATE(1312)] = 58510, + [SMALL_STATE(1313)] = 58576, + [SMALL_STATE(1314)] = 58634, + [SMALL_STATE(1315)] = 58724, + [SMALL_STATE(1316)] = 58778, + [SMALL_STATE(1317)] = 58832, + [SMALL_STATE(1318)] = 58922, + [SMALL_STATE(1319)] = 58982, + [SMALL_STATE(1320)] = 59036, + [SMALL_STATE(1321)] = 59096, + [SMALL_STATE(1322)] = 59154, + [SMALL_STATE(1323)] = 59214, + [SMALL_STATE(1324)] = 59268, + [SMALL_STATE(1325)] = 59322, + [SMALL_STATE(1326)] = 59382, + [SMALL_STATE(1327)] = 59442, + [SMALL_STATE(1328)] = 59496, + [SMALL_STATE(1329)] = 59550, + [SMALL_STATE(1330)] = 59604, + [SMALL_STATE(1331)] = 59664, + [SMALL_STATE(1332)] = 59724, + [SMALL_STATE(1333)] = 59814, + [SMALL_STATE(1334)] = 59874, + [SMALL_STATE(1335)] = 59928, + [SMALL_STATE(1336)] = 59986, + [SMALL_STATE(1337)] = 60046, + [SMALL_STATE(1338)] = 60106, + [SMALL_STATE(1339)] = 60160, + [SMALL_STATE(1340)] = 60220, + [SMALL_STATE(1341)] = 60274, + [SMALL_STATE(1342)] = 60334, + [SMALL_STATE(1343)] = 60394, + [SMALL_STATE(1344)] = 60454, + [SMALL_STATE(1345)] = 60514, + [SMALL_STATE(1346)] = 60568, + [SMALL_STATE(1347)] = 60622, + [SMALL_STATE(1348)] = 60682, + [SMALL_STATE(1349)] = 60736, + [SMALL_STATE(1350)] = 60794, + [SMALL_STATE(1351)] = 60848, + [SMALL_STATE(1352)] = 60902, + [SMALL_STATE(1353)] = 60956, + [SMALL_STATE(1354)] = 61010, + [SMALL_STATE(1355)] = 61070, + [SMALL_STATE(1356)] = 61130, + [SMALL_STATE(1357)] = 61190, + [SMALL_STATE(1358)] = 61250, + [SMALL_STATE(1359)] = 61308, + [SMALL_STATE(1360)] = 61362, + [SMALL_STATE(1361)] = 61422, + [SMALL_STATE(1362)] = 61480, + [SMALL_STATE(1363)] = 61540, + [SMALL_STATE(1364)] = 61600, + [SMALL_STATE(1365)] = 61654, + [SMALL_STATE(1366)] = 61708, + [SMALL_STATE(1367)] = 61762, + [SMALL_STATE(1368)] = 61822, + [SMALL_STATE(1369)] = 61880, + [SMALL_STATE(1370)] = 61940, + [SMALL_STATE(1371)] = 62000, + [SMALL_STATE(1372)] = 62060, + [SMALL_STATE(1373)] = 62120, + [SMALL_STATE(1374)] = 62180, + [SMALL_STATE(1375)] = 62238, + [SMALL_STATE(1376)] = 62292, + [SMALL_STATE(1377)] = 62346, + [SMALL_STATE(1378)] = 62404, + [SMALL_STATE(1379)] = 62458, + [SMALL_STATE(1380)] = 62516, + [SMALL_STATE(1381)] = 62574, + [SMALL_STATE(1382)] = 62634, + [SMALL_STATE(1383)] = 62692, + [SMALL_STATE(1384)] = 62752, + [SMALL_STATE(1385)] = 62806, + [SMALL_STATE(1386)] = 62860, + [SMALL_STATE(1387)] = 62914, + [SMALL_STATE(1388)] = 62968, + [SMALL_STATE(1389)] = 63028, + [SMALL_STATE(1390)] = 63082, + [SMALL_STATE(1391)] = 63136, + [SMALL_STATE(1392)] = 63196, + [SMALL_STATE(1393)] = 63256, + [SMALL_STATE(1394)] = 63310, + [SMALL_STATE(1395)] = 63370, + [SMALL_STATE(1396)] = 63430, + [SMALL_STATE(1397)] = 63490, + [SMALL_STATE(1398)] = 63550, + [SMALL_STATE(1399)] = 63610, + [SMALL_STATE(1400)] = 63670, + [SMALL_STATE(1401)] = 63724, + [SMALL_STATE(1402)] = 63782, + [SMALL_STATE(1403)] = 63836, + [SMALL_STATE(1404)] = 63890, + [SMALL_STATE(1405)] = 63944, + [SMALL_STATE(1406)] = 64004, + [SMALL_STATE(1407)] = 64058, + [SMALL_STATE(1408)] = 64118, + [SMALL_STATE(1409)] = 64172, + [SMALL_STATE(1410)] = 64226, + [SMALL_STATE(1411)] = 64280, + [SMALL_STATE(1412)] = 64334, + [SMALL_STATE(1413)] = 64394, + [SMALL_STATE(1414)] = 64448, + [SMALL_STATE(1415)] = 64502, + [SMALL_STATE(1416)] = 64562, + [SMALL_STATE(1417)] = 64616, + [SMALL_STATE(1418)] = 64670, + [SMALL_STATE(1419)] = 64724, + [SMALL_STATE(1420)] = 64778, + [SMALL_STATE(1421)] = 64838, + [SMALL_STATE(1422)] = 64898, + [SMALL_STATE(1423)] = 64952, + [SMALL_STATE(1424)] = 65006, + [SMALL_STATE(1425)] = 65060, + [SMALL_STATE(1426)] = 65124, + [SMALL_STATE(1427)] = 65188, + [SMALL_STATE(1428)] = 65242, + [SMALL_STATE(1429)] = 65296, + [SMALL_STATE(1430)] = 65354, + [SMALL_STATE(1431)] = 65408, + [SMALL_STATE(1432)] = 65466, + [SMALL_STATE(1433)] = 65520, + [SMALL_STATE(1434)] = 65578, + [SMALL_STATE(1435)] = 65632, + [SMALL_STATE(1436)] = 65686, + [SMALL_STATE(1437)] = 65744, + [SMALL_STATE(1438)] = 65798, + [SMALL_STATE(1439)] = 65852, + [SMALL_STATE(1440)] = 65906, + [SMALL_STATE(1441)] = 65960, + [SMALL_STATE(1442)] = 66020, + [SMALL_STATE(1443)] = 66074, + [SMALL_STATE(1444)] = 66134, + [SMALL_STATE(1445)] = 66194, + [SMALL_STATE(1446)] = 66254, + [SMALL_STATE(1447)] = 66314, + [SMALL_STATE(1448)] = 66374, + [SMALL_STATE(1449)] = 66432, + [SMALL_STATE(1450)] = 66486, + [SMALL_STATE(1451)] = 66540, + [SMALL_STATE(1452)] = 66600, + [SMALL_STATE(1453)] = 66654, + [SMALL_STATE(1454)] = 66708, + [SMALL_STATE(1455)] = 66762, + [SMALL_STATE(1456)] = 66816, + [SMALL_STATE(1457)] = 66870, + [SMALL_STATE(1458)] = 66930, + [SMALL_STATE(1459)] = 66984, + [SMALL_STATE(1460)] = 67038, + [SMALL_STATE(1461)] = 67098, + [SMALL_STATE(1462)] = 67152, + [SMALL_STATE(1463)] = 67206, + [SMALL_STATE(1464)] = 67260, + [SMALL_STATE(1465)] = 67314, + [SMALL_STATE(1466)] = 67368, + [SMALL_STATE(1467)] = 67422, + [SMALL_STATE(1468)] = 67482, + [SMALL_STATE(1469)] = 67542, + [SMALL_STATE(1470)] = 67596, + [SMALL_STATE(1471)] = 67656, + [SMALL_STATE(1472)] = 67710, + [SMALL_STATE(1473)] = 67764, + [SMALL_STATE(1474)] = 67818, + [SMALL_STATE(1475)] = 67876, + [SMALL_STATE(1476)] = 67936, + [SMALL_STATE(1477)] = 67990, + [SMALL_STATE(1478)] = 68044, + [SMALL_STATE(1479)] = 68098, + [SMALL_STATE(1480)] = 68152, + [SMALL_STATE(1481)] = 68210, + [SMALL_STATE(1482)] = 68269, + [SMALL_STATE(1483)] = 68322, + [SMALL_STATE(1484)] = 68375, + [SMALL_STATE(1485)] = 68428, + [SMALL_STATE(1486)] = 68481, + [SMALL_STATE(1487)] = 68534, + [SMALL_STATE(1488)] = 68587, + [SMALL_STATE(1489)] = 68640, + [SMALL_STATE(1490)] = 68693, + [SMALL_STATE(1491)] = 68746, + [SMALL_STATE(1492)] = 68799, + [SMALL_STATE(1493)] = 68852, + [SMALL_STATE(1494)] = 68905, + [SMALL_STATE(1495)] = 68958, + [SMALL_STATE(1496)] = 69011, + [SMALL_STATE(1497)] = 69064, + [SMALL_STATE(1498)] = 69117, + [SMALL_STATE(1499)] = 69170, + [SMALL_STATE(1500)] = 69223, + [SMALL_STATE(1501)] = 69276, + [SMALL_STATE(1502)] = 69329, + [SMALL_STATE(1503)] = 69382, + [SMALL_STATE(1504)] = 69435, + [SMALL_STATE(1505)] = 69488, + [SMALL_STATE(1506)] = 69541, + [SMALL_STATE(1507)] = 69594, + [SMALL_STATE(1508)] = 69647, + [SMALL_STATE(1509)] = 69700, + [SMALL_STATE(1510)] = 69757, + [SMALL_STATE(1511)] = 69810, + [SMALL_STATE(1512)] = 69863, + [SMALL_STATE(1513)] = 69922, + [SMALL_STATE(1514)] = 69975, + [SMALL_STATE(1515)] = 70028, + [SMALL_STATE(1516)] = 70081, + [SMALL_STATE(1517)] = 70134, + [SMALL_STATE(1518)] = 70187, + [SMALL_STATE(1519)] = 70240, + [SMALL_STATE(1520)] = 70293, + [SMALL_STATE(1521)] = 70346, + [SMALL_STATE(1522)] = 70399, + [SMALL_STATE(1523)] = 70456, + [SMALL_STATE(1524)] = 70515, + [SMALL_STATE(1525)] = 70574, + [SMALL_STATE(1526)] = 70627, + [SMALL_STATE(1527)] = 70686, + [SMALL_STATE(1528)] = 70739, + [SMALL_STATE(1529)] = 70798, + [SMALL_STATE(1530)] = 70857, + [SMALL_STATE(1531)] = 70910, + [SMALL_STATE(1532)] = 70963, + [SMALL_STATE(1533)] = 71016, + [SMALL_STATE(1534)] = 71069, + [SMALL_STATE(1535)] = 71122, + [SMALL_STATE(1536)] = 71175, + [SMALL_STATE(1537)] = 71234, + [SMALL_STATE(1538)] = 71287, + [SMALL_STATE(1539)] = 71340, + [SMALL_STATE(1540)] = 71397, + [SMALL_STATE(1541)] = 71450, + [SMALL_STATE(1542)] = 71503, + [SMALL_STATE(1543)] = 71556, + [SMALL_STATE(1544)] = 71609, + [SMALL_STATE(1545)] = 71662, + [SMALL_STATE(1546)] = 71715, + [SMALL_STATE(1547)] = 71768, + [SMALL_STATE(1548)] = 71821, + [SMALL_STATE(1549)] = 71874, + [SMALL_STATE(1550)] = 71927, + [SMALL_STATE(1551)] = 71980, + [SMALL_STATE(1552)] = 72033, + [SMALL_STATE(1553)] = 72086, + [SMALL_STATE(1554)] = 72139, + [SMALL_STATE(1555)] = 72192, + [SMALL_STATE(1556)] = 72245, + [SMALL_STATE(1557)] = 72298, + [SMALL_STATE(1558)] = 72357, + [SMALL_STATE(1559)] = 72416, + [SMALL_STATE(1560)] = 72475, + [SMALL_STATE(1561)] = 72534, + [SMALL_STATE(1562)] = 72587, + [SMALL_STATE(1563)] = 72654, + [SMALL_STATE(1564)] = 72707, + [SMALL_STATE(1565)] = 72760, + [SMALL_STATE(1566)] = 72813, + [SMALL_STATE(1567)] = 72866, + [SMALL_STATE(1568)] = 72923, + [SMALL_STATE(1569)] = 72976, + [SMALL_STATE(1570)] = 73029, + [SMALL_STATE(1571)] = 73082, + [SMALL_STATE(1572)] = 73135, + [SMALL_STATE(1573)] = 73194, + [SMALL_STATE(1574)] = 73247, + [SMALL_STATE(1575)] = 73300, + [SMALL_STATE(1576)] = 73359, + [SMALL_STATE(1577)] = 73462, + [SMALL_STATE(1578)] = 73515, + [SMALL_STATE(1579)] = 73568, + [SMALL_STATE(1580)] = 73621, + [SMALL_STATE(1581)] = 73674, + [SMALL_STATE(1582)] = 73727, + [SMALL_STATE(1583)] = 73786, + [SMALL_STATE(1584)] = 73839, + [SMALL_STATE(1585)] = 73892, + [SMALL_STATE(1586)] = 73945, + [SMALL_STATE(1587)] = 73998, + [SMALL_STATE(1588)] = 74051, + [SMALL_STATE(1589)] = 74104, + [SMALL_STATE(1590)] = 74157, + [SMALL_STATE(1591)] = 74210, + [SMALL_STATE(1592)] = 74263, + [SMALL_STATE(1593)] = 74316, + [SMALL_STATE(1594)] = 74369, + [SMALL_STATE(1595)] = 74422, + [SMALL_STATE(1596)] = 74475, + [SMALL_STATE(1597)] = 74534, + [SMALL_STATE(1598)] = 74593, + [SMALL_STATE(1599)] = 74646, + [SMALL_STATE(1600)] = 74705, + [SMALL_STATE(1601)] = 74758, + [SMALL_STATE(1602)] = 74817, + [SMALL_STATE(1603)] = 74876, + [SMALL_STATE(1604)] = 74941, + [SMALL_STATE(1605)] = 74998, + [SMALL_STATE(1606)] = 75051, + [SMALL_STATE(1607)] = 75108, + [SMALL_STATE(1608)] = 75161, + [SMALL_STATE(1609)] = 75218, + [SMALL_STATE(1610)] = 75271, + [SMALL_STATE(1611)] = 75324, + [SMALL_STATE(1612)] = 75377, + [SMALL_STATE(1613)] = 75430, + [SMALL_STATE(1614)] = 75483, + [SMALL_STATE(1615)] = 75536, + [SMALL_STATE(1616)] = 75639, + [SMALL_STATE(1617)] = 75692, + [SMALL_STATE(1618)] = 75745, + [SMALL_STATE(1619)] = 75802, + [SMALL_STATE(1620)] = 75855, + [SMALL_STATE(1621)] = 75958, + [SMALL_STATE(1622)] = 76011, + [SMALL_STATE(1623)] = 76064, + [SMALL_STATE(1624)] = 76117, + [SMALL_STATE(1625)] = 76170, + [SMALL_STATE(1626)] = 76223, + [SMALL_STATE(1627)] = 76276, + [SMALL_STATE(1628)] = 76341, + [SMALL_STATE(1629)] = 76394, + [SMALL_STATE(1630)] = 76447, + [SMALL_STATE(1631)] = 76506, + [SMALL_STATE(1632)] = 76563, + [SMALL_STATE(1633)] = 76622, + [SMALL_STATE(1634)] = 76675, + [SMALL_STATE(1635)] = 76736, + [SMALL_STATE(1636)] = 76797, + [SMALL_STATE(1637)] = 76900, + [SMALL_STATE(1638)] = 76959, + [SMALL_STATE(1639)] = 77018, + [SMALL_STATE(1640)] = 77071, + [SMALL_STATE(1641)] = 77130, + [SMALL_STATE(1642)] = 77183, + [SMALL_STATE(1643)] = 77236, + [SMALL_STATE(1644)] = 77293, + [SMALL_STATE(1645)] = 77346, + [SMALL_STATE(1646)] = 77405, + [SMALL_STATE(1647)] = 77462, + [SMALL_STATE(1648)] = 77521, + [SMALL_STATE(1649)] = 77586, + [SMALL_STATE(1650)] = 77645, + [SMALL_STATE(1651)] = 77704, + [SMALL_STATE(1652)] = 77757, + [SMALL_STATE(1653)] = 77810, + [SMALL_STATE(1654)] = 77869, + [SMALL_STATE(1655)] = 77958, + [SMALL_STATE(1656)] = 78011, + [SMALL_STATE(1657)] = 78064, + [SMALL_STATE(1658)] = 78117, + [SMALL_STATE(1659)] = 78174, + [SMALL_STATE(1660)] = 78233, + [SMALL_STATE(1661)] = 78292, + [SMALL_STATE(1662)] = 78351, + [SMALL_STATE(1663)] = 78410, + [SMALL_STATE(1664)] = 78469, + [SMALL_STATE(1665)] = 78528, + [SMALL_STATE(1666)] = 78587, + [SMALL_STATE(1667)] = 78640, + [SMALL_STATE(1668)] = 78693, + [SMALL_STATE(1669)] = 78746, + [SMALL_STATE(1670)] = 78799, + [SMALL_STATE(1671)] = 78888, + [SMALL_STATE(1672)] = 78941, + [SMALL_STATE(1673)] = 79000, + [SMALL_STATE(1674)] = 79053, + [SMALL_STATE(1675)] = 79106, + [SMALL_STATE(1676)] = 79165, + [SMALL_STATE(1677)] = 79218, + [SMALL_STATE(1678)] = 79271, + [SMALL_STATE(1679)] = 79324, + [SMALL_STATE(1680)] = 79427, + [SMALL_STATE(1681)] = 79480, + [SMALL_STATE(1682)] = 79539, + [SMALL_STATE(1683)] = 79592, + [SMALL_STATE(1684)] = 79645, + [SMALL_STATE(1685)] = 79698, + [SMALL_STATE(1686)] = 79801, + [SMALL_STATE(1687)] = 79854, + [SMALL_STATE(1688)] = 79907, + [SMALL_STATE(1689)] = 79966, + [SMALL_STATE(1690)] = 80019, + [SMALL_STATE(1691)] = 80072, + [SMALL_STATE(1692)] = 80125, + [SMALL_STATE(1693)] = 80178, + [SMALL_STATE(1694)] = 80231, + [SMALL_STATE(1695)] = 80290, + [SMALL_STATE(1696)] = 80349, + [SMALL_STATE(1697)] = 80408, + [SMALL_STATE(1698)] = 80461, + [SMALL_STATE(1699)] = 80564, + [SMALL_STATE(1700)] = 80621, + [SMALL_STATE(1701)] = 80674, + [SMALL_STATE(1702)] = 80727, + [SMALL_STATE(1703)] = 80780, + [SMALL_STATE(1704)] = 80837, + [SMALL_STATE(1705)] = 80896, + [SMALL_STATE(1706)] = 80955, + [SMALL_STATE(1707)] = 81024, + [SMALL_STATE(1708)] = 81093, + [SMALL_STATE(1709)] = 81152, + [SMALL_STATE(1710)] = 81205, + [SMALL_STATE(1711)] = 81264, + [SMALL_STATE(1712)] = 81323, + [SMALL_STATE(1713)] = 81376, + [SMALL_STATE(1714)] = 81429, + [SMALL_STATE(1715)] = 81488, + [SMALL_STATE(1716)] = 81547, + [SMALL_STATE(1717)] = 81600, + [SMALL_STATE(1718)] = 81659, + [SMALL_STATE(1719)] = 81712, + [SMALL_STATE(1720)] = 81773, + [SMALL_STATE(1721)] = 81830, + [SMALL_STATE(1722)] = 81889, + [SMALL_STATE(1723)] = 81948, + [SMALL_STATE(1724)] = 82001, + [SMALL_STATE(1725)] = 82054, + [SMALL_STATE(1726)] = 82113, + [SMALL_STATE(1727)] = 82165, + [SMALL_STATE(1728)] = 82223, + [SMALL_STATE(1729)] = 82275, + [SMALL_STATE(1730)] = 82327, + [SMALL_STATE(1731)] = 82427, + [SMALL_STATE(1732)] = 82479, + [SMALL_STATE(1733)] = 82531, + [SMALL_STATE(1734)] = 82583, + [SMALL_STATE(1735)] = 82635, + [SMALL_STATE(1736)] = 82687, + [SMALL_STATE(1737)] = 82743, + [SMALL_STATE(1738)] = 82795, + [SMALL_STATE(1739)] = 82851, + [SMALL_STATE(1740)] = 82907, + [SMALL_STATE(1741)] = 82963, + [SMALL_STATE(1742)] = 83019, + [SMALL_STATE(1743)] = 83075, + [SMALL_STATE(1744)] = 83131, + [SMALL_STATE(1745)] = 83187, + [SMALL_STATE(1746)] = 83245, + [SMALL_STATE(1747)] = 83297, + [SMALL_STATE(1748)] = 83349, + [SMALL_STATE(1749)] = 83401, + [SMALL_STATE(1750)] = 83501, + [SMALL_STATE(1751)] = 83559, + [SMALL_STATE(1752)] = 83615, + [SMALL_STATE(1753)] = 83673, + [SMALL_STATE(1754)] = 83725, + [SMALL_STATE(1755)] = 83777, + [SMALL_STATE(1756)] = 83829, + [SMALL_STATE(1757)] = 83881, + [SMALL_STATE(1758)] = 83981, + [SMALL_STATE(1759)] = 84039, + [SMALL_STATE(1760)] = 84091, + [SMALL_STATE(1761)] = 84143, + [SMALL_STATE(1762)] = 84195, + [SMALL_STATE(1763)] = 84247, + [SMALL_STATE(1764)] = 84299, + [SMALL_STATE(1765)] = 84351, + [SMALL_STATE(1766)] = 84403, + [SMALL_STATE(1767)] = 84455, + [SMALL_STATE(1768)] = 84507, + [SMALL_STATE(1769)] = 84559, + [SMALL_STATE(1770)] = 84611, + [SMALL_STATE(1771)] = 84663, + [SMALL_STATE(1772)] = 84715, + [SMALL_STATE(1773)] = 84767, + [SMALL_STATE(1774)] = 84819, + [SMALL_STATE(1775)] = 84871, + [SMALL_STATE(1776)] = 84923, + [SMALL_STATE(1777)] = 84975, + [SMALL_STATE(1778)] = 85027, + [SMALL_STATE(1779)] = 85127, + [SMALL_STATE(1780)] = 85185, + [SMALL_STATE(1781)] = 85243, + [SMALL_STATE(1782)] = 85295, + [SMALL_STATE(1783)] = 85347, + [SMALL_STATE(1784)] = 85399, + [SMALL_STATE(1785)] = 85457, + [SMALL_STATE(1786)] = 85509, + [SMALL_STATE(1787)] = 85567, + [SMALL_STATE(1788)] = 85625, + [SMALL_STATE(1789)] = 85677, + [SMALL_STATE(1790)] = 85733, + [SMALL_STATE(1791)] = 85785, + [SMALL_STATE(1792)] = 85885, + [SMALL_STATE(1793)] = 85937, + [SMALL_STATE(1794)] = 85989, + [SMALL_STATE(1795)] = 86047, + [SMALL_STATE(1796)] = 86105, + [SMALL_STATE(1797)] = 86157, + [SMALL_STATE(1798)] = 86213, + [SMALL_STATE(1799)] = 86265, + [SMALL_STATE(1800)] = 86321, + [SMALL_STATE(1801)] = 86379, + [SMALL_STATE(1802)] = 86435, + [SMALL_STATE(1803)] = 86487, + [SMALL_STATE(1804)] = 86543, + [SMALL_STATE(1805)] = 86595, + [SMALL_STATE(1806)] = 86647, + [SMALL_STATE(1807)] = 86747, + [SMALL_STATE(1808)] = 86799, + [SMALL_STATE(1809)] = 86857, + [SMALL_STATE(1810)] = 86909, + [SMALL_STATE(1811)] = 86961, + [SMALL_STATE(1812)] = 87031, + [SMALL_STATE(1813)] = 87083, + [SMALL_STATE(1814)] = 87135, + [SMALL_STATE(1815)] = 87191, + [SMALL_STATE(1816)] = 87243, + [SMALL_STATE(1817)] = 87299, + [SMALL_STATE(1818)] = 87351, + [SMALL_STATE(1819)] = 87403, + [SMALL_STATE(1820)] = 87455, + [SMALL_STATE(1821)] = 87507, + [SMALL_STATE(1822)] = 87565, + [SMALL_STATE(1823)] = 87623, + [SMALL_STATE(1824)] = 87681, + [SMALL_STATE(1825)] = 87781, + [SMALL_STATE(1826)] = 87833, + [SMALL_STATE(1827)] = 87889, + [SMALL_STATE(1828)] = 87941, + [SMALL_STATE(1829)] = 87997, + [SMALL_STATE(1830)] = 88053, + [SMALL_STATE(1831)] = 88153, + [SMALL_STATE(1832)] = 88211, + [SMALL_STATE(1833)] = 88269, + [SMALL_STATE(1834)] = 88321, + [SMALL_STATE(1835)] = 88373, + [SMALL_STATE(1836)] = 88425, + [SMALL_STATE(1837)] = 88477, + [SMALL_STATE(1838)] = 88529, + [SMALL_STATE(1839)] = 88581, + [SMALL_STATE(1840)] = 88639, + [SMALL_STATE(1841)] = 88691, + [SMALL_STATE(1842)] = 88743, + [SMALL_STATE(1843)] = 88843, + [SMALL_STATE(1844)] = 88901, + [SMALL_STATE(1845)] = 88953, + [SMALL_STATE(1846)] = 89011, + [SMALL_STATE(1847)] = 89069, + [SMALL_STATE(1848)] = 89121, + [SMALL_STATE(1849)] = 89173, + [SMALL_STATE(1850)] = 89225, + [SMALL_STATE(1851)] = 89325, + [SMALL_STATE(1852)] = 89377, + [SMALL_STATE(1853)] = 89429, + [SMALL_STATE(1854)] = 89481, + [SMALL_STATE(1855)] = 89533, + [SMALL_STATE(1856)] = 89585, + [SMALL_STATE(1857)] = 89637, + [SMALL_STATE(1858)] = 89689, + [SMALL_STATE(1859)] = 89741, + [SMALL_STATE(1860)] = 89793, + [SMALL_STATE(1861)] = 89849, + [SMALL_STATE(1862)] = 89901, + [SMALL_STATE(1863)] = 89953, + [SMALL_STATE(1864)] = 90005, + [SMALL_STATE(1865)] = 90057, + [SMALL_STATE(1866)] = 90109, + [SMALL_STATE(1867)] = 90161, + [SMALL_STATE(1868)] = 90261, + [SMALL_STATE(1869)] = 90351, + [SMALL_STATE(1870)] = 90451, + [SMALL_STATE(1871)] = 90503, + [SMALL_STATE(1872)] = 90603, + [SMALL_STATE(1873)] = 90655, + [SMALL_STATE(1874)] = 90711, + [SMALL_STATE(1875)] = 90763, + [SMALL_STATE(1876)] = 90815, + [SMALL_STATE(1877)] = 90867, + [SMALL_STATE(1878)] = 90919, + [SMALL_STATE(1879)] = 90971, + [SMALL_STATE(1880)] = 91029, + [SMALL_STATE(1881)] = 91081, + [SMALL_STATE(1882)] = 91133, + [SMALL_STATE(1883)] = 91201, + [SMALL_STATE(1884)] = 91253, + [SMALL_STATE(1885)] = 91353, + [SMALL_STATE(1886)] = 91405, + [SMALL_STATE(1887)] = 91461, + [SMALL_STATE(1888)] = 91517, + [SMALL_STATE(1889)] = 91569, + [SMALL_STATE(1890)] = 91627, + [SMALL_STATE(1891)] = 91679, + [SMALL_STATE(1892)] = 91731, + [SMALL_STATE(1893)] = 91791, + [SMALL_STATE(1894)] = 91851, + [SMALL_STATE(1895)] = 91909, + [SMALL_STATE(1896)] = 91965, + [SMALL_STATE(1897)] = 92017, + [SMALL_STATE(1898)] = 92075, + [SMALL_STATE(1899)] = 92131, + [SMALL_STATE(1900)] = 92187, + [SMALL_STATE(1901)] = 92243, + [SMALL_STATE(1902)] = 92301, + [SMALL_STATE(1903)] = 92359, + [SMALL_STATE(1904)] = 92417, + [SMALL_STATE(1905)] = 92473, + [SMALL_STATE(1906)] = 92573, + [SMALL_STATE(1907)] = 92673, + [SMALL_STATE(1908)] = 92737, + [SMALL_STATE(1909)] = 92795, + [SMALL_STATE(1910)] = 92851, + [SMALL_STATE(1911)] = 92909, + [SMALL_STATE(1912)] = 92967, + [SMALL_STATE(1913)] = 93023, + [SMALL_STATE(1914)] = 93123, + [SMALL_STATE(1915)] = 93181, + [SMALL_STATE(1916)] = 93239, + [SMALL_STATE(1917)] = 93297, + [SMALL_STATE(1918)] = 93349, + [SMALL_STATE(1919)] = 93407, + [SMALL_STATE(1920)] = 93459, + [SMALL_STATE(1921)] = 93511, + [SMALL_STATE(1922)] = 93563, + [SMALL_STATE(1923)] = 93621, + [SMALL_STATE(1924)] = 93673, + [SMALL_STATE(1925)] = 93725, + [SMALL_STATE(1926)] = 93825, + [SMALL_STATE(1927)] = 93925, + [SMALL_STATE(1928)] = 94025, + [SMALL_STATE(1929)] = 94077, + [SMALL_STATE(1930)] = 94133, + [SMALL_STATE(1931)] = 94194, + [SMALL_STATE(1932)] = 94255, + [SMALL_STATE(1933)] = 94352, + [SMALL_STATE(1934)] = 94449, + [SMALL_STATE(1935)] = 94546, + [SMALL_STATE(1936)] = 94643, + [SMALL_STATE(1937)] = 94740, + [SMALL_STATE(1938)] = 94837, + [SMALL_STATE(1939)] = 94934, + [SMALL_STATE(1940)] = 94995, + [SMALL_STATE(1941)] = 95092, + [SMALL_STATE(1942)] = 95189, + [SMALL_STATE(1943)] = 95286, + [SMALL_STATE(1944)] = 95383, + [SMALL_STATE(1945)] = 95480, + [SMALL_STATE(1946)] = 95531, + [SMALL_STATE(1947)] = 95582, + [SMALL_STATE(1948)] = 95633, + [SMALL_STATE(1949)] = 95730, + [SMALL_STATE(1950)] = 95827, + [SMALL_STATE(1951)] = 95924, + [SMALL_STATE(1952)] = 95975, + [SMALL_STATE(1953)] = 96026, + [SMALL_STATE(1954)] = 96077, + [SMALL_STATE(1955)] = 96128, + [SMALL_STATE(1956)] = 96179, + [SMALL_STATE(1957)] = 96230, + [SMALL_STATE(1958)] = 96281, + [SMALL_STATE(1959)] = 96332, + [SMALL_STATE(1960)] = 96383, + [SMALL_STATE(1961)] = 96434, + [SMALL_STATE(1962)] = 96485, + [SMALL_STATE(1963)] = 96536, + [SMALL_STATE(1964)] = 96633, + [SMALL_STATE(1965)] = 96688, + [SMALL_STATE(1966)] = 96739, + [SMALL_STATE(1967)] = 96794, + [SMALL_STATE(1968)] = 96891, + [SMALL_STATE(1969)] = 96948, + [SMALL_STATE(1970)] = 97045, + [SMALL_STATE(1971)] = 97142, + [SMALL_STATE(1972)] = 97193, + [SMALL_STATE(1973)] = 97250, + [SMALL_STATE(1974)] = 97301, + [SMALL_STATE(1975)] = 97356, + [SMALL_STATE(1976)] = 97453, + [SMALL_STATE(1977)] = 97550, + [SMALL_STATE(1978)] = 97601, + [SMALL_STATE(1979)] = 97698, + [SMALL_STATE(1980)] = 97749, + [SMALL_STATE(1981)] = 97846, + [SMALL_STATE(1982)] = 97943, + [SMALL_STATE(1983)] = 98040, + [SMALL_STATE(1984)] = 98137, + [SMALL_STATE(1985)] = 98234, + [SMALL_STATE(1986)] = 98331, + [SMALL_STATE(1987)] = 98382, + [SMALL_STATE(1988)] = 98479, + [SMALL_STATE(1989)] = 98576, + [SMALL_STATE(1990)] = 98673, + [SMALL_STATE(1991)] = 98770, + [SMALL_STATE(1992)] = 98867, + [SMALL_STATE(1993)] = 98918, + [SMALL_STATE(1994)] = 98969, + [SMALL_STATE(1995)] = 99020, + [SMALL_STATE(1996)] = 99071, + [SMALL_STATE(1997)] = 99122, + [SMALL_STATE(1998)] = 99173, + [SMALL_STATE(1999)] = 99270, + [SMALL_STATE(2000)] = 99367, + [SMALL_STATE(2001)] = 99464, + [SMALL_STATE(2002)] = 99561, + [SMALL_STATE(2003)] = 99612, + [SMALL_STATE(2004)] = 99709, + [SMALL_STATE(2005)] = 99760, + [SMALL_STATE(2006)] = 99811, + [SMALL_STATE(2007)] = 99862, + [SMALL_STATE(2008)] = 99959, + [SMALL_STATE(2009)] = 100056, + [SMALL_STATE(2010)] = 100153, + [SMALL_STATE(2011)] = 100250, + [SMALL_STATE(2012)] = 100347, + [SMALL_STATE(2013)] = 100398, + [SMALL_STATE(2014)] = 100495, + [SMALL_STATE(2015)] = 100592, + [SMALL_STATE(2016)] = 100643, + [SMALL_STATE(2017)] = 100740, + [SMALL_STATE(2018)] = 100799, + [SMALL_STATE(2019)] = 100896, + [SMALL_STATE(2020)] = 100955, + [SMALL_STATE(2021)] = 101006, + [SMALL_STATE(2022)] = 101103, + [SMALL_STATE(2023)] = 101200, + [SMALL_STATE(2024)] = 101297, + [SMALL_STATE(2025)] = 101352, + [SMALL_STATE(2026)] = 101403, + [SMALL_STATE(2027)] = 101458, + [SMALL_STATE(2028)] = 101555, + [SMALL_STATE(2029)] = 101652, + [SMALL_STATE(2030)] = 101749, + [SMALL_STATE(2031)] = 101846, + [SMALL_STATE(2032)] = 101943, + [SMALL_STATE(2033)] = 101994, + [SMALL_STATE(2034)] = 102049, + [SMALL_STATE(2035)] = 102146, + [SMALL_STATE(2036)] = 102243, + [SMALL_STATE(2037)] = 102340, + [SMALL_STATE(2038)] = 102391, + [SMALL_STATE(2039)] = 102488, + [SMALL_STATE(2040)] = 102585, + [SMALL_STATE(2041)] = 102682, + [SMALL_STATE(2042)] = 102779, + [SMALL_STATE(2043)] = 102876, + [SMALL_STATE(2044)] = 102973, + [SMALL_STATE(2045)] = 103070, + [SMALL_STATE(2046)] = 103167, + [SMALL_STATE(2047)] = 103218, + [SMALL_STATE(2048)] = 103315, + [SMALL_STATE(2049)] = 103412, + [SMALL_STATE(2050)] = 103509, + [SMALL_STATE(2051)] = 103606, + [SMALL_STATE(2052)] = 103703, + [SMALL_STATE(2053)] = 103800, + [SMALL_STATE(2054)] = 103897, + [SMALL_STATE(2055)] = 103994, + [SMALL_STATE(2056)] = 104053, + [SMALL_STATE(2057)] = 104150, + [SMALL_STATE(2058)] = 104201, + [SMALL_STATE(2059)] = 104252, + [SMALL_STATE(2060)] = 104349, + [SMALL_STATE(2061)] = 104410, + [SMALL_STATE(2062)] = 104509, + [SMALL_STATE(2063)] = 104606, + [SMALL_STATE(2064)] = 104703, + [SMALL_STATE(2065)] = 104800, + [SMALL_STATE(2066)] = 104851, + [SMALL_STATE(2067)] = 104948, + [SMALL_STATE(2068)] = 105005, + [SMALL_STATE(2069)] = 105062, + [SMALL_STATE(2070)] = 105159, + [SMALL_STATE(2071)] = 105220, + [SMALL_STATE(2072)] = 105271, + [SMALL_STATE(2073)] = 105368, + [SMALL_STATE(2074)] = 105419, + [SMALL_STATE(2075)] = 105476, + [SMALL_STATE(2076)] = 105527, + [SMALL_STATE(2077)] = 105588, + [SMALL_STATE(2078)] = 105639, + [SMALL_STATE(2079)] = 105700, + [SMALL_STATE(2080)] = 105761, + [SMALL_STATE(2081)] = 105812, + [SMALL_STATE(2082)] = 105863, + [SMALL_STATE(2083)] = 105924, + [SMALL_STATE(2084)] = 105985, + [SMALL_STATE(2085)] = 106046, + [SMALL_STATE(2086)] = 106107, + [SMALL_STATE(2087)] = 106158, + [SMALL_STATE(2088)] = 106255, + [SMALL_STATE(2089)] = 106316, + [SMALL_STATE(2090)] = 106413, + [SMALL_STATE(2091)] = 106512, + [SMALL_STATE(2092)] = 106563, + [SMALL_STATE(2093)] = 106660, + [SMALL_STATE(2094)] = 106711, + [SMALL_STATE(2095)] = 106762, + [SMALL_STATE(2096)] = 106813, + [SMALL_STATE(2097)] = 106874, + [SMALL_STATE(2098)] = 106935, + [SMALL_STATE(2099)] = 106996, + [SMALL_STATE(2100)] = 107057, + [SMALL_STATE(2101)] = 107108, + [SMALL_STATE(2102)] = 107169, + [SMALL_STATE(2103)] = 107230, + [SMALL_STATE(2104)] = 107281, + [SMALL_STATE(2105)] = 107342, + [SMALL_STATE(2106)] = 107393, + [SMALL_STATE(2107)] = 107444, + [SMALL_STATE(2108)] = 107495, + [SMALL_STATE(2109)] = 107546, + [SMALL_STATE(2110)] = 107597, + [SMALL_STATE(2111)] = 107658, + [SMALL_STATE(2112)] = 107709, + [SMALL_STATE(2113)] = 107770, + [SMALL_STATE(2114)] = 107831, + [SMALL_STATE(2115)] = 107882, + [SMALL_STATE(2116)] = 107943, + [SMALL_STATE(2117)] = 107994, + [SMALL_STATE(2118)] = 108045, + [SMALL_STATE(2119)] = 108100, + [SMALL_STATE(2120)] = 108197, + [SMALL_STATE(2121)] = 108258, + [SMALL_STATE(2122)] = 108309, + [SMALL_STATE(2123)] = 108364, + [SMALL_STATE(2124)] = 108421, + [SMALL_STATE(2125)] = 108476, + [SMALL_STATE(2126)] = 108531, + [SMALL_STATE(2127)] = 108586, + [SMALL_STATE(2128)] = 108641, + [SMALL_STATE(2129)] = 108702, + [SMALL_STATE(2130)] = 108799, + [SMALL_STATE(2131)] = 108896, + [SMALL_STATE(2132)] = 108993, + [SMALL_STATE(2133)] = 109090, + [SMALL_STATE(2134)] = 109151, + [SMALL_STATE(2135)] = 109248, + [SMALL_STATE(2136)] = 109305, + [SMALL_STATE(2137)] = 109366, + [SMALL_STATE(2138)] = 109463, + [SMALL_STATE(2139)] = 109520, + [SMALL_STATE(2140)] = 109617, + [SMALL_STATE(2141)] = 109678, + [SMALL_STATE(2142)] = 109739, + [SMALL_STATE(2143)] = 109800, + [SMALL_STATE(2144)] = 109861, + [SMALL_STATE(2145)] = 109922, + [SMALL_STATE(2146)] = 110019, + [SMALL_STATE(2147)] = 110080, + [SMALL_STATE(2148)] = 110135, + [SMALL_STATE(2149)] = 110196, + [SMALL_STATE(2150)] = 110257, + [SMALL_STATE(2151)] = 110318, + [SMALL_STATE(2152)] = 110379, + [SMALL_STATE(2153)] = 110436, + [SMALL_STATE(2154)] = 110497, + [SMALL_STATE(2155)] = 110552, + [SMALL_STATE(2156)] = 110607, + [SMALL_STATE(2157)] = 110666, + [SMALL_STATE(2158)] = 110727, + [SMALL_STATE(2159)] = 110778, + [SMALL_STATE(2160)] = 110839, + [SMALL_STATE(2161)] = 110890, + [SMALL_STATE(2162)] = 110945, + [SMALL_STATE(2163)] = 110996, + [SMALL_STATE(2164)] = 111057, + [SMALL_STATE(2165)] = 111118, + [SMALL_STATE(2166)] = 111179, + [SMALL_STATE(2167)] = 111278, + [SMALL_STATE(2168)] = 111339, + [SMALL_STATE(2169)] = 111400, + [SMALL_STATE(2170)] = 111461, + [SMALL_STATE(2171)] = 111522, + [SMALL_STATE(2172)] = 111583, + [SMALL_STATE(2173)] = 111644, + [SMALL_STATE(2174)] = 111695, + [SMALL_STATE(2175)] = 111792, + [SMALL_STATE(2176)] = 111853, + [SMALL_STATE(2177)] = 111914, + [SMALL_STATE(2178)] = 111975, + [SMALL_STATE(2179)] = 112036, + [SMALL_STATE(2180)] = 112097, + [SMALL_STATE(2181)] = 112158, + [SMALL_STATE(2182)] = 112219, + [SMALL_STATE(2183)] = 112270, + [SMALL_STATE(2184)] = 112331, + [SMALL_STATE(2185)] = 112428, + [SMALL_STATE(2186)] = 112489, + [SMALL_STATE(2187)] = 112550, + [SMALL_STATE(2188)] = 112611, + [SMALL_STATE(2189)] = 112708, + [SMALL_STATE(2190)] = 112769, + [SMALL_STATE(2191)] = 112824, + [SMALL_STATE(2192)] = 112885, + [SMALL_STATE(2193)] = 112982, + [SMALL_STATE(2194)] = 113043, + [SMALL_STATE(2195)] = 113104, + [SMALL_STATE(2196)] = 113165, + [SMALL_STATE(2197)] = 113226, + [SMALL_STATE(2198)] = 113323, + [SMALL_STATE(2199)] = 113420, + [SMALL_STATE(2200)] = 113475, + [SMALL_STATE(2201)] = 113536, + [SMALL_STATE(2202)] = 113587, + [SMALL_STATE(2203)] = 113684, + [SMALL_STATE(2204)] = 113739, + [SMALL_STATE(2205)] = 113794, + [SMALL_STATE(2206)] = 113891, + [SMALL_STATE(2207)] = 113952, + [SMALL_STATE(2208)] = 114013, + [SMALL_STATE(2209)] = 114110, + [SMALL_STATE(2210)] = 114207, + [SMALL_STATE(2211)] = 114258, + [SMALL_STATE(2212)] = 114313, + [SMALL_STATE(2213)] = 114374, + [SMALL_STATE(2214)] = 114471, + [SMALL_STATE(2215)] = 114522, + [SMALL_STATE(2216)] = 114573, + [SMALL_STATE(2217)] = 114624, + [SMALL_STATE(2218)] = 114685, + [SMALL_STATE(2219)] = 114736, + [SMALL_STATE(2220)] = 114797, + [SMALL_STATE(2221)] = 114858, + [SMALL_STATE(2222)] = 114919, + [SMALL_STATE(2223)] = 114970, + [SMALL_STATE(2224)] = 115031, + [SMALL_STATE(2225)] = 115082, + [SMALL_STATE(2226)] = 115179, + [SMALL_STATE(2227)] = 115276, + [SMALL_STATE(2228)] = 115327, + [SMALL_STATE(2229)] = 115388, + [SMALL_STATE(2230)] = 115485, + [SMALL_STATE(2231)] = 115582, + [SMALL_STATE(2232)] = 115679, + [SMALL_STATE(2233)] = 115776, + [SMALL_STATE(2234)] = 115873, + [SMALL_STATE(2235)] = 115970, + [SMALL_STATE(2236)] = 116067, + [SMALL_STATE(2237)] = 116128, + [SMALL_STATE(2238)] = 116179, + [SMALL_STATE(2239)] = 116276, + [SMALL_STATE(2240)] = 116373, + [SMALL_STATE(2241)] = 116470, + [SMALL_STATE(2242)] = 116569, + [SMALL_STATE(2243)] = 116666, + [SMALL_STATE(2244)] = 116763, + [SMALL_STATE(2245)] = 116862, + [SMALL_STATE(2246)] = 116959, + [SMALL_STATE(2247)] = 117056, + [SMALL_STATE(2248)] = 117107, + [SMALL_STATE(2249)] = 117204, + [SMALL_STATE(2250)] = 117301, + [SMALL_STATE(2251)] = 117398, + [SMALL_STATE(2252)] = 117497, + [SMALL_STATE(2253)] = 117594, + [SMALL_STATE(2254)] = 117645, + [SMALL_STATE(2255)] = 117700, + [SMALL_STATE(2256)] = 117761, + [SMALL_STATE(2257)] = 117858, + [SMALL_STATE(2258)] = 117909, + [SMALL_STATE(2259)] = 118006, + [SMALL_STATE(2260)] = 118067, + [SMALL_STATE(2261)] = 118118, + [SMALL_STATE(2262)] = 118215, + [SMALL_STATE(2263)] = 118276, + [SMALL_STATE(2264)] = 118327, + [SMALL_STATE(2265)] = 118388, + [SMALL_STATE(2266)] = 118449, + [SMALL_STATE(2267)] = 118546, + [SMALL_STATE(2268)] = 118643, + [SMALL_STATE(2269)] = 118693, + [SMALL_STATE(2270)] = 118743, + [SMALL_STATE(2271)] = 118797, + [SMALL_STATE(2272)] = 118851, + [SMALL_STATE(2273)] = 118909, + [SMALL_STATE(2274)] = 118967, + [SMALL_STATE(2275)] = 119017, + [SMALL_STATE(2276)] = 119067, + [SMALL_STATE(2277)] = 119117, + [SMALL_STATE(2278)] = 119167, + [SMALL_STATE(2279)] = 119221, + [SMALL_STATE(2280)] = 119277, + [SMALL_STATE(2281)] = 119327, + [SMALL_STATE(2282)] = 119381, + [SMALL_STATE(2283)] = 119437, + [SMALL_STATE(2284)] = 119493, + [SMALL_STATE(2285)] = 119547, + [SMALL_STATE(2286)] = 119603, + [SMALL_STATE(2287)] = 119657, + [SMALL_STATE(2288)] = 119707, + [SMALL_STATE(2289)] = 119763, + [SMALL_STATE(2290)] = 119813, + [SMALL_STATE(2291)] = 119869, + [SMALL_STATE(2292)] = 119925, + [SMALL_STATE(2293)] = 119975, + [SMALL_STATE(2294)] = 120031, + [SMALL_STATE(2295)] = 120081, + [SMALL_STATE(2296)] = 120131, + [SMALL_STATE(2297)] = 120185, + [SMALL_STATE(2298)] = 120241, + [SMALL_STATE(2299)] = 120295, + [SMALL_STATE(2300)] = 120345, + [SMALL_STATE(2301)] = 120399, + [SMALL_STATE(2302)] = 120449, + [SMALL_STATE(2303)] = 120505, + [SMALL_STATE(2304)] = 120559, + [SMALL_STATE(2305)] = 120609, + [SMALL_STATE(2306)] = 120659, + [SMALL_STATE(2307)] = 120709, + [SMALL_STATE(2308)] = 120759, + [SMALL_STATE(2309)] = 120813, + [SMALL_STATE(2310)] = 120867, + [SMALL_STATE(2311)] = 120917, + [SMALL_STATE(2312)] = 120971, + [SMALL_STATE(2313)] = 121025, + [SMALL_STATE(2314)] = 121075, + [SMALL_STATE(2315)] = 121129, + [SMALL_STATE(2316)] = 121179, + [SMALL_STATE(2317)] = 121233, + [SMALL_STATE(2318)] = 121283, + [SMALL_STATE(2319)] = 121333, + [SMALL_STATE(2320)] = 121383, + [SMALL_STATE(2321)] = 121433, + [SMALL_STATE(2322)] = 121483, + [SMALL_STATE(2323)] = 121533, + [SMALL_STATE(2324)] = 121589, + [SMALL_STATE(2325)] = 121645, + [SMALL_STATE(2326)] = 121701, + [SMALL_STATE(2327)] = 121751, + [SMALL_STATE(2328)] = 121807, + [SMALL_STATE(2329)] = 121863, + [SMALL_STATE(2330)] = 121919, + [SMALL_STATE(2331)] = 121975, + [SMALL_STATE(2332)] = 122031, + [SMALL_STATE(2333)] = 122085, + [SMALL_STATE(2334)] = 122135, + [SMALL_STATE(2335)] = 122185, + [SMALL_STATE(2336)] = 122235, + [SMALL_STATE(2337)] = 122291, + [SMALL_STATE(2338)] = 122347, + [SMALL_STATE(2339)] = 122397, + [SMALL_STATE(2340)] = 122447, + [SMALL_STATE(2341)] = 122503, + [SMALL_STATE(2342)] = 122553, + [SMALL_STATE(2343)] = 122609, + [SMALL_STATE(2344)] = 122659, + [SMALL_STATE(2345)] = 122709, + [SMALL_STATE(2346)] = 122763, + [SMALL_STATE(2347)] = 122812, + [SMALL_STATE(2348)] = 122865, + [SMALL_STATE(2349)] = 122914, + [SMALL_STATE(2350)] = 123009, + [SMALL_STATE(2351)] = 123064, + [SMALL_STATE(2352)] = 123113, + [SMALL_STATE(2353)] = 123166, + [SMALL_STATE(2354)] = 123261, + [SMALL_STATE(2355)] = 123310, + [SMALL_STATE(2356)] = 123359, + [SMALL_STATE(2357)] = 123412, + [SMALL_STATE(2358)] = 123465, + [SMALL_STATE(2359)] = 123560, + [SMALL_STATE(2360)] = 123613, + [SMALL_STATE(2361)] = 123708, + [SMALL_STATE(2362)] = 123803, + [SMALL_STATE(2363)] = 123852, + [SMALL_STATE(2364)] = 123901, + [SMALL_STATE(2365)] = 123996, + [SMALL_STATE(2366)] = 124051, + [SMALL_STATE(2367)] = 124104, + [SMALL_STATE(2368)] = 124159, + [SMALL_STATE(2369)] = 124208, + [SMALL_STATE(2370)] = 124261, + [SMALL_STATE(2371)] = 124314, + [SMALL_STATE(2372)] = 124367, + [SMALL_STATE(2373)] = 124462, + [SMALL_STATE(2374)] = 124515, + [SMALL_STATE(2375)] = 124568, + [SMALL_STATE(2376)] = 124617, + [SMALL_STATE(2377)] = 124712, + [SMALL_STATE(2378)] = 124807, + [SMALL_STATE(2379)] = 124902, + [SMALL_STATE(2380)] = 124997, + [SMALL_STATE(2381)] = 125046, + [SMALL_STATE(2382)] = 125095, + [SMALL_STATE(2383)] = 125148, + [SMALL_STATE(2384)] = 125197, + [SMALL_STATE(2385)] = 125246, + [SMALL_STATE(2386)] = 125301, + [SMALL_STATE(2387)] = 125356, + [SMALL_STATE(2388)] = 125411, + [SMALL_STATE(2389)] = 125460, + [SMALL_STATE(2390)] = 125515, + [SMALL_STATE(2391)] = 125564, + [SMALL_STATE(2392)] = 125619, + [SMALL_STATE(2393)] = 125668, + [SMALL_STATE(2394)] = 125717, + [SMALL_STATE(2395)] = 125770, + [SMALL_STATE(2396)] = 125823, + [SMALL_STATE(2397)] = 125876, + [SMALL_STATE(2398)] = 125931, + [SMALL_STATE(2399)] = 125980, + [SMALL_STATE(2400)] = 126029, + [SMALL_STATE(2401)] = 126078, + [SMALL_STATE(2402)] = 126127, + [SMALL_STATE(2403)] = 126176, + [SMALL_STATE(2404)] = 126231, + [SMALL_STATE(2405)] = 126286, + [SMALL_STATE(2406)] = 126339, + [SMALL_STATE(2407)] = 126392, + [SMALL_STATE(2408)] = 126447, + [SMALL_STATE(2409)] = 126500, + [SMALL_STATE(2410)] = 126553, + [SMALL_STATE(2411)] = 126648, + [SMALL_STATE(2412)] = 126743, + [SMALL_STATE(2413)] = 126792, + [SMALL_STATE(2414)] = 126845, + [SMALL_STATE(2415)] = 126940, + [SMALL_STATE(2416)] = 126993, + [SMALL_STATE(2417)] = 127088, + [SMALL_STATE(2418)] = 127141, + [SMALL_STATE(2419)] = 127190, + [SMALL_STATE(2420)] = 127243, + [SMALL_STATE(2421)] = 127292, + [SMALL_STATE(2422)] = 127341, + [SMALL_STATE(2423)] = 127396, + [SMALL_STATE(2424)] = 127445, + [SMALL_STATE(2425)] = 127500, + [SMALL_STATE(2426)] = 127553, + [SMALL_STATE(2427)] = 127608, + [SMALL_STATE(2428)] = 127661, + [SMALL_STATE(2429)] = 127756, + [SMALL_STATE(2430)] = 127811, + [SMALL_STATE(2431)] = 127860, + [SMALL_STATE(2432)] = 127915, + [SMALL_STATE(2433)] = 127968, + [SMALL_STATE(2434)] = 128021, + [SMALL_STATE(2435)] = 128074, + [SMALL_STATE(2436)] = 128127, + [SMALL_STATE(2437)] = 128180, + [SMALL_STATE(2438)] = 128233, + [SMALL_STATE(2439)] = 128286, + [SMALL_STATE(2440)] = 128335, + [SMALL_STATE(2441)] = 128388, + [SMALL_STATE(2442)] = 128443, + [SMALL_STATE(2443)] = 128492, + [SMALL_STATE(2444)] = 128540, + [SMALL_STATE(2445)] = 128588, + [SMALL_STATE(2446)] = 128644, + [SMALL_STATE(2447)] = 128692, + [SMALL_STATE(2448)] = 128740, + [SMALL_STATE(2449)] = 128788, + [SMALL_STATE(2450)] = 128836, + [SMALL_STATE(2451)] = 128884, + [SMALL_STATE(2452)] = 128936, + [SMALL_STATE(2453)] = 128984, + [SMALL_STATE(2454)] = 129036, + [SMALL_STATE(2455)] = 129084, + [SMALL_STATE(2456)] = 129140, + [SMALL_STATE(2457)] = 129192, + [SMALL_STATE(2458)] = 129244, + [SMALL_STATE(2459)] = 129296, + [SMALL_STATE(2460)] = 129350, + [SMALL_STATE(2461)] = 129402, + [SMALL_STATE(2462)] = 129458, + [SMALL_STATE(2463)] = 129506, + [SMALL_STATE(2464)] = 129562, + [SMALL_STATE(2465)] = 129614, + [SMALL_STATE(2466)] = 129662, + [SMALL_STATE(2467)] = 129716, + [SMALL_STATE(2468)] = 129764, + [SMALL_STATE(2469)] = 129812, + [SMALL_STATE(2470)] = 129860, + [SMALL_STATE(2471)] = 129914, + [SMALL_STATE(2472)] = 129968, + [SMALL_STATE(2473)] = 130020, + [SMALL_STATE(2474)] = 130074, + [SMALL_STATE(2475)] = 130126, + [SMALL_STATE(2476)] = 130180, + [SMALL_STATE(2477)] = 130232, + [SMALL_STATE(2478)] = 130280, + [SMALL_STATE(2479)] = 130328, + [SMALL_STATE(2480)] = 130376, + [SMALL_STATE(2481)] = 130430, + [SMALL_STATE(2482)] = 130478, + [SMALL_STATE(2483)] = 130526, + [SMALL_STATE(2484)] = 130578, + [SMALL_STATE(2485)] = 130630, + [SMALL_STATE(2486)] = 130678, + [SMALL_STATE(2487)] = 130730, + [SMALL_STATE(2488)] = 130782, + [SMALL_STATE(2489)] = 130836, + [SMALL_STATE(2490)] = 130888, + [SMALL_STATE(2491)] = 130940, + [SMALL_STATE(2492)] = 130994, + [SMALL_STATE(2493)] = 131042, + [SMALL_STATE(2494)] = 131094, + [SMALL_STATE(2495)] = 131148, + [SMALL_STATE(2496)] = 131202, + [SMALL_STATE(2497)] = 131250, + [SMALL_STATE(2498)] = 131306, + [SMALL_STATE(2499)] = 131354, + [SMALL_STATE(2500)] = 131402, + [SMALL_STATE(2501)] = 131454, + [SMALL_STATE(2502)] = 131510, + [SMALL_STATE(2503)] = 131558, + [SMALL_STATE(2504)] = 131610, + [SMALL_STATE(2505)] = 131658, + [SMALL_STATE(2506)] = 131706, + [SMALL_STATE(2507)] = 131760, + [SMALL_STATE(2508)] = 131808, + [SMALL_STATE(2509)] = 131856, + [SMALL_STATE(2510)] = 131910, + [SMALL_STATE(2511)] = 131958, + [SMALL_STATE(2512)] = 132010, + [SMALL_STATE(2513)] = 132058, + [SMALL_STATE(2514)] = 132106, + [SMALL_STATE(2515)] = 132154, + [SMALL_STATE(2516)] = 132202, + [SMALL_STATE(2517)] = 132250, + [SMALL_STATE(2518)] = 132298, + [SMALL_STATE(2519)] = 132346, + [SMALL_STATE(2520)] = 132394, + [SMALL_STATE(2521)] = 132442, + [SMALL_STATE(2522)] = 132494, + [SMALL_STATE(2523)] = 132542, + [SMALL_STATE(2524)] = 132590, + [SMALL_STATE(2525)] = 132638, + [SMALL_STATE(2526)] = 132686, + [SMALL_STATE(2527)] = 132734, + [SMALL_STATE(2528)] = 132782, + [SMALL_STATE(2529)] = 132830, + [SMALL_STATE(2530)] = 132878, + [SMALL_STATE(2531)] = 132926, + [SMALL_STATE(2532)] = 132974, + [SMALL_STATE(2533)] = 133026, + [SMALL_STATE(2534)] = 133080, + [SMALL_STATE(2535)] = 133128, + [SMALL_STATE(2536)] = 133176, + [SMALL_STATE(2537)] = 133224, + [SMALL_STATE(2538)] = 133276, + [SMALL_STATE(2539)] = 133328, + [SMALL_STATE(2540)] = 133380, + [SMALL_STATE(2541)] = 133434, + [SMALL_STATE(2542)] = 133486, + [SMALL_STATE(2543)] = 133534, + [SMALL_STATE(2544)] = 133588, + [SMALL_STATE(2545)] = 133636, + [SMALL_STATE(2546)] = 133684, + [SMALL_STATE(2547)] = 133740, + [SMALL_STATE(2548)] = 133796, + [SMALL_STATE(2549)] = 133848, + [SMALL_STATE(2550)] = 133904, + [SMALL_STATE(2551)] = 133958, + [SMALL_STATE(2552)] = 134012, + [SMALL_STATE(2553)] = 134068, + [SMALL_STATE(2554)] = 134122, + [SMALL_STATE(2555)] = 134170, + [SMALL_STATE(2556)] = 134224, + [SMALL_STATE(2557)] = 134272, + [SMALL_STATE(2558)] = 134324, + [SMALL_STATE(2559)] = 134372, + [SMALL_STATE(2560)] = 134422, + [SMALL_STATE(2561)] = 134470, + [SMALL_STATE(2562)] = 134526, + [SMALL_STATE(2563)] = 134574, + [SMALL_STATE(2564)] = 134630, + [SMALL_STATE(2565)] = 134684, + [SMALL_STATE(2566)] = 134732, + [SMALL_STATE(2567)] = 134780, + [SMALL_STATE(2568)] = 134828, + [SMALL_STATE(2569)] = 134880, + [SMALL_STATE(2570)] = 134932, + [SMALL_STATE(2571)] = 134980, + [SMALL_STATE(2572)] = 135028, + [SMALL_STATE(2573)] = 135082, + [SMALL_STATE(2574)] = 135134, + [SMALL_STATE(2575)] = 135182, + [SMALL_STATE(2576)] = 135236, + [SMALL_STATE(2577)] = 135284, + [SMALL_STATE(2578)] = 135332, + [SMALL_STATE(2579)] = 135386, + [SMALL_STATE(2580)] = 135434, + [SMALL_STATE(2581)] = 135482, + [SMALL_STATE(2582)] = 135530, + [SMALL_STATE(2583)] = 135584, + [SMALL_STATE(2584)] = 135631, + [SMALL_STATE(2585)] = 135678, + [SMALL_STATE(2586)] = 135725, + [SMALL_STATE(2587)] = 135772, + [SMALL_STATE(2588)] = 135819, + [SMALL_STATE(2589)] = 135870, + [SMALL_STATE(2590)] = 135919, + [SMALL_STATE(2591)] = 135966, + [SMALL_STATE(2592)] = 136013, + [SMALL_STATE(2593)] = 136060, + [SMALL_STATE(2594)] = 136107, + [SMALL_STATE(2595)] = 136154, + [SMALL_STATE(2596)] = 136205, + [SMALL_STATE(2597)] = 136252, + [SMALL_STATE(2598)] = 136299, + [SMALL_STATE(2599)] = 136346, + [SMALL_STATE(2600)] = 136393, + [SMALL_STATE(2601)] = 136440, + [SMALL_STATE(2602)] = 136489, + [SMALL_STATE(2603)] = 136540, + [SMALL_STATE(2604)] = 136587, + [SMALL_STATE(2605)] = 136634, + [SMALL_STATE(2606)] = 136681, + [SMALL_STATE(2607)] = 136728, + [SMALL_STATE(2608)] = 136775, + [SMALL_STATE(2609)] = 136822, + [SMALL_STATE(2610)] = 136869, + [SMALL_STATE(2611)] = 136916, + [SMALL_STATE(2612)] = 136963, + [SMALL_STATE(2613)] = 137014, + [SMALL_STATE(2614)] = 137065, + [SMALL_STATE(2615)] = 137112, + [SMALL_STATE(2616)] = 137159, + [SMALL_STATE(2617)] = 137206, + [SMALL_STATE(2618)] = 137253, + [SMALL_STATE(2619)] = 137306, + [SMALL_STATE(2620)] = 137359, + [SMALL_STATE(2621)] = 137410, + [SMALL_STATE(2622)] = 137459, + [SMALL_STATE(2623)] = 137506, + [SMALL_STATE(2624)] = 137553, + [SMALL_STATE(2625)] = 137600, + [SMALL_STATE(2626)] = 137647, + [SMALL_STATE(2627)] = 137694, + [SMALL_STATE(2628)] = 137741, + [SMALL_STATE(2629)] = 137788, + [SMALL_STATE(2630)] = 137835, + [SMALL_STATE(2631)] = 137882, + [SMALL_STATE(2632)] = 137929, + [SMALL_STATE(2633)] = 137980, + [SMALL_STATE(2634)] = 138027, + [SMALL_STATE(2635)] = 138074, + [SMALL_STATE(2636)] = 138121, + [SMALL_STATE(2637)] = 138168, + [SMALL_STATE(2638)] = 138215, + [SMALL_STATE(2639)] = 138262, + [SMALL_STATE(2640)] = 138309, + [SMALL_STATE(2641)] = 138356, + [SMALL_STATE(2642)] = 138407, + [SMALL_STATE(2643)] = 138454, + [SMALL_STATE(2644)] = 138501, + [SMALL_STATE(2645)] = 138548, + [SMALL_STATE(2646)] = 138595, + [SMALL_STATE(2647)] = 138642, + [SMALL_STATE(2648)] = 138689, + [SMALL_STATE(2649)] = 138736, + [SMALL_STATE(2650)] = 138783, + [SMALL_STATE(2651)] = 138830, + [SMALL_STATE(2652)] = 138877, + [SMALL_STATE(2653)] = 138924, + [SMALL_STATE(2654)] = 138971, + [SMALL_STATE(2655)] = 139018, + [SMALL_STATE(2656)] = 139065, + [SMALL_STATE(2657)] = 139112, + [SMALL_STATE(2658)] = 139159, + [SMALL_STATE(2659)] = 139206, + [SMALL_STATE(2660)] = 139253, + [SMALL_STATE(2661)] = 139300, + [SMALL_STATE(2662)] = 139347, + [SMALL_STATE(2663)] = 139394, + [SMALL_STATE(2664)] = 139441, + [SMALL_STATE(2665)] = 139488, + [SMALL_STATE(2666)] = 139535, + [SMALL_STATE(2667)] = 139582, + [SMALL_STATE(2668)] = 139629, + [SMALL_STATE(2669)] = 139676, + [SMALL_STATE(2670)] = 139723, + [SMALL_STATE(2671)] = 139770, + [SMALL_STATE(2672)] = 139821, + [SMALL_STATE(2673)] = 139868, + [SMALL_STATE(2674)] = 139915, + [SMALL_STATE(2675)] = 139962, + [SMALL_STATE(2676)] = 140009, + [SMALL_STATE(2677)] = 140056, + [SMALL_STATE(2678)] = 140103, + [SMALL_STATE(2679)] = 140154, + [SMALL_STATE(2680)] = 140201, + [SMALL_STATE(2681)] = 140248, + [SMALL_STATE(2682)] = 140295, + [SMALL_STATE(2683)] = 140342, + [SMALL_STATE(2684)] = 140389, + [SMALL_STATE(2685)] = 140436, + [SMALL_STATE(2686)] = 140483, + [SMALL_STATE(2687)] = 140530, + [SMALL_STATE(2688)] = 140577, + [SMALL_STATE(2689)] = 140628, + [SMALL_STATE(2690)] = 140679, + [SMALL_STATE(2691)] = 140730, + [SMALL_STATE(2692)] = 140785, + [SMALL_STATE(2693)] = 140836, + [SMALL_STATE(2694)] = 140891, + [SMALL_STATE(2695)] = 140940, + [SMALL_STATE(2696)] = 140991, + [SMALL_STATE(2697)] = 141040, + [SMALL_STATE(2698)] = 141087, + [SMALL_STATE(2699)] = 141134, + [SMALL_STATE(2700)] = 141185, + [SMALL_STATE(2701)] = 141232, + [SMALL_STATE(2702)] = 141279, + [SMALL_STATE(2703)] = 141328, + [SMALL_STATE(2704)] = 141379, + [SMALL_STATE(2705)] = 141428, + [SMALL_STATE(2706)] = 141485, + [SMALL_STATE(2707)] = 141542, + [SMALL_STATE(2708)] = 141589, + [SMALL_STATE(2709)] = 141636, + [SMALL_STATE(2710)] = 141683, + [SMALL_STATE(2711)] = 141730, + [SMALL_STATE(2712)] = 141777, + [SMALL_STATE(2713)] = 141824, + [SMALL_STATE(2714)] = 141871, + [SMALL_STATE(2715)] = 141922, + [SMALL_STATE(2716)] = 141973, + [SMALL_STATE(2717)] = 142020, + [SMALL_STATE(2718)] = 142071, + [SMALL_STATE(2719)] = 142122, + [SMALL_STATE(2720)] = 142169, + [SMALL_STATE(2721)] = 142222, + [SMALL_STATE(2722)] = 142269, + [SMALL_STATE(2723)] = 142316, + [SMALL_STATE(2724)] = 142369, + [SMALL_STATE(2725)] = 142416, + [SMALL_STATE(2726)] = 142463, + [SMALL_STATE(2727)] = 142514, + [SMALL_STATE(2728)] = 142565, + [SMALL_STATE(2729)] = 142612, + [SMALL_STATE(2730)] = 142659, + [SMALL_STATE(2731)] = 142706, + [SMALL_STATE(2732)] = 142753, + [SMALL_STATE(2733)] = 142800, + [SMALL_STATE(2734)] = 142847, + [SMALL_STATE(2735)] = 142894, + [SMALL_STATE(2736)] = 142941, + [SMALL_STATE(2737)] = 142988, + [SMALL_STATE(2738)] = 143034, + [SMALL_STATE(2739)] = 143090, + [SMALL_STATE(2740)] = 143172, + [SMALL_STATE(2741)] = 143254, + [SMALL_STATE(2742)] = 143336, + [SMALL_STATE(2743)] = 143418, + [SMALL_STATE(2744)] = 143500, + [SMALL_STATE(2745)] = 143582, + [SMALL_STATE(2746)] = 143664, + [SMALL_STATE(2747)] = 143746, + [SMALL_STATE(2748)] = 143828, + [SMALL_STATE(2749)] = 143910, + [SMALL_STATE(2750)] = 143992, + [SMALL_STATE(2751)] = 144074, + [SMALL_STATE(2752)] = 144156, + [SMALL_STATE(2753)] = 144238, + [SMALL_STATE(2754)] = 144320, + [SMALL_STATE(2755)] = 144402, + [SMALL_STATE(2756)] = 144484, + [SMALL_STATE(2757)] = 144566, + [SMALL_STATE(2758)] = 144648, + [SMALL_STATE(2759)] = 144730, + [SMALL_STATE(2760)] = 144812, + [SMALL_STATE(2761)] = 144894, + [SMALL_STATE(2762)] = 144976, + [SMALL_STATE(2763)] = 145058, + [SMALL_STATE(2764)] = 145140, + [SMALL_STATE(2765)] = 145222, + [SMALL_STATE(2766)] = 145304, + [SMALL_STATE(2767)] = 145386, + [SMALL_STATE(2768)] = 145468, + [SMALL_STATE(2769)] = 145550, + [SMALL_STATE(2770)] = 145632, + [SMALL_STATE(2771)] = 145714, + [SMALL_STATE(2772)] = 145796, + [SMALL_STATE(2773)] = 145878, + [SMALL_STATE(2774)] = 145960, + [SMALL_STATE(2775)] = 146042, + [SMALL_STATE(2776)] = 146124, + [SMALL_STATE(2777)] = 146174, + [SMALL_STATE(2778)] = 146256, + [SMALL_STATE(2779)] = 146338, + [SMALL_STATE(2780)] = 146420, + [SMALL_STATE(2781)] = 146474, + [SMALL_STATE(2782)] = 146556, + [SMALL_STATE(2783)] = 146638, + [SMALL_STATE(2784)] = 146720, + [SMALL_STATE(2785)] = 146802, + [SMALL_STATE(2786)] = 146884, + [SMALL_STATE(2787)] = 146966, + [SMALL_STATE(2788)] = 147048, + [SMALL_STATE(2789)] = 147130, + [SMALL_STATE(2790)] = 147212, + [SMALL_STATE(2791)] = 147294, + [SMALL_STATE(2792)] = 147376, + [SMALL_STATE(2793)] = 147458, + [SMALL_STATE(2794)] = 147540, + [SMALL_STATE(2795)] = 147622, + [SMALL_STATE(2796)] = 147704, + [SMALL_STATE(2797)] = 147750, + [SMALL_STATE(2798)] = 147832, + [SMALL_STATE(2799)] = 147878, + [SMALL_STATE(2800)] = 147960, + [SMALL_STATE(2801)] = 148042, + [SMALL_STATE(2802)] = 148088, + [SMALL_STATE(2803)] = 148158, + [SMALL_STATE(2804)] = 148204, + [SMALL_STATE(2805)] = 148286, + [SMALL_STATE(2806)] = 148332, + [SMALL_STATE(2807)] = 148382, + [SMALL_STATE(2808)] = 148428, + [SMALL_STATE(2809)] = 148478, + [SMALL_STATE(2810)] = 148524, + [SMALL_STATE(2811)] = 148574, + [SMALL_STATE(2812)] = 148656, + [SMALL_STATE(2813)] = 148706, + [SMALL_STATE(2814)] = 148758, + [SMALL_STATE(2815)] = 148812, + [SMALL_STATE(2816)] = 148862, + [SMALL_STATE(2817)] = 148920, + [SMALL_STATE(2818)] = 148966, + [SMALL_STATE(2819)] = 149012, + [SMALL_STATE(2820)] = 149058, + [SMALL_STATE(2821)] = 149140, + [SMALL_STATE(2822)] = 149186, + [SMALL_STATE(2823)] = 149232, + [SMALL_STATE(2824)] = 149278, + [SMALL_STATE(2825)] = 149324, + [SMALL_STATE(2826)] = 149370, + [SMALL_STATE(2827)] = 149416, + [SMALL_STATE(2828)] = 149478, + [SMALL_STATE(2829)] = 149542, + [SMALL_STATE(2830)] = 149608, + [SMALL_STATE(2831)] = 149676, + [SMALL_STATE(2832)] = 149748, + [SMALL_STATE(2833)] = 149826, + [SMALL_STATE(2834)] = 149876, + [SMALL_STATE(2835)] = 149926, + [SMALL_STATE(2836)] = 150002, + [SMALL_STATE(2837)] = 150084, + [SMALL_STATE(2838)] = 150140, + [SMALL_STATE(2839)] = 150188, + [SMALL_STATE(2840)] = 150234, + [SMALL_STATE(2841)] = 150290, + [SMALL_STATE(2842)] = 150336, + [SMALL_STATE(2843)] = 150382, + [SMALL_STATE(2844)] = 150430, + [SMALL_STATE(2845)] = 150512, + [SMALL_STATE(2846)] = 150584, + [SMALL_STATE(2847)] = 150630, + [SMALL_STATE(2848)] = 150676, + [SMALL_STATE(2849)] = 150732, + [SMALL_STATE(2850)] = 150778, + [SMALL_STATE(2851)] = 150824, + [SMALL_STATE(2852)] = 150874, + [SMALL_STATE(2853)] = 150920, + [SMALL_STATE(2854)] = 150966, + [SMALL_STATE(2855)] = 151012, + [SMALL_STATE(2856)] = 151058, + [SMALL_STATE(2857)] = 151104, + [SMALL_STATE(2858)] = 151150, + [SMALL_STATE(2859)] = 151232, + [SMALL_STATE(2860)] = 151278, + [SMALL_STATE(2861)] = 151324, + [SMALL_STATE(2862)] = 151370, + [SMALL_STATE(2863)] = 151418, + [SMALL_STATE(2864)] = 151464, + [SMALL_STATE(2865)] = 151510, + [SMALL_STATE(2866)] = 151558, + [SMALL_STATE(2867)] = 151604, + [SMALL_STATE(2868)] = 151654, + [SMALL_STATE(2869)] = 151728, + [SMALL_STATE(2870)] = 151774, + [SMALL_STATE(2871)] = 151820, + [SMALL_STATE(2872)] = 151866, + [SMALL_STATE(2873)] = 151912, + [SMALL_STATE(2874)] = 151958, + [SMALL_STATE(2875)] = 152008, + [SMALL_STATE(2876)] = 152054, + [SMALL_STATE(2877)] = 152100, + [SMALL_STATE(2878)] = 152146, + [SMALL_STATE(2879)] = 152192, + [SMALL_STATE(2880)] = 152238, + [SMALL_STATE(2881)] = 152320, + [SMALL_STATE(2882)] = 152366, + [SMALL_STATE(2883)] = 152412, + [SMALL_STATE(2884)] = 152458, + [SMALL_STATE(2885)] = 152504, + [SMALL_STATE(2886)] = 152550, + [SMALL_STATE(2887)] = 152604, + [SMALL_STATE(2888)] = 152660, + [SMALL_STATE(2889)] = 152716, + [SMALL_STATE(2890)] = 152762, + [SMALL_STATE(2891)] = 152836, + [SMALL_STATE(2892)] = 152882, + [SMALL_STATE(2893)] = 152928, + [SMALL_STATE(2894)] = 152974, + [SMALL_STATE(2895)] = 153050, + [SMALL_STATE(2896)] = 153106, + [SMALL_STATE(2897)] = 153162, + [SMALL_STATE(2898)] = 153208, + [SMALL_STATE(2899)] = 153278, + [SMALL_STATE(2900)] = 153346, + [SMALL_STATE(2901)] = 153392, + [SMALL_STATE(2902)] = 153438, + [SMALL_STATE(2903)] = 153494, + [SMALL_STATE(2904)] = 153550, + [SMALL_STATE(2905)] = 153596, + [SMALL_STATE(2906)] = 153642, + [SMALL_STATE(2907)] = 153688, + [SMALL_STATE(2908)] = 153734, + [SMALL_STATE(2909)] = 153780, + [SMALL_STATE(2910)] = 153826, + [SMALL_STATE(2911)] = 153872, + [SMALL_STATE(2912)] = 153918, + [SMALL_STATE(2913)] = 153968, + [SMALL_STATE(2914)] = 154014, + [SMALL_STATE(2915)] = 154064, + [SMALL_STATE(2916)] = 154130, + [SMALL_STATE(2917)] = 154194, + [SMALL_STATE(2918)] = 154256, + [SMALL_STATE(2919)] = 154302, + [SMALL_STATE(2920)] = 154348, + [SMALL_STATE(2921)] = 154394, + [SMALL_STATE(2922)] = 154454, + [SMALL_STATE(2923)] = 154510, + [SMALL_STATE(2924)] = 154564, + [SMALL_STATE(2925)] = 154620, + [SMALL_STATE(2926)] = 154668, + [SMALL_STATE(2927)] = 154714, + [SMALL_STATE(2928)] = 154760, + [SMALL_STATE(2929)] = 154806, + [SMALL_STATE(2930)] = 154852, + [SMALL_STATE(2931)] = 154898, + [SMALL_STATE(2932)] = 154944, + [SMALL_STATE(2933)] = 155026, + [SMALL_STATE(2934)] = 155084, + [SMALL_STATE(2935)] = 155130, + [SMALL_STATE(2936)] = 155176, + [SMALL_STATE(2937)] = 155228, + [SMALL_STATE(2938)] = 155278, + [SMALL_STATE(2939)] = 155326, + [SMALL_STATE(2940)] = 155376, + [SMALL_STATE(2941)] = 155422, + [SMALL_STATE(2942)] = 155472, + [SMALL_STATE(2943)] = 155551, + [SMALL_STATE(2944)] = 155614, + [SMALL_STATE(2945)] = 155703, + [SMALL_STATE(2946)] = 155750, + [SMALL_STATE(2947)] = 155795, + [SMALL_STATE(2948)] = 155864, + [SMALL_STATE(2949)] = 155929, + [SMALL_STATE(2950)] = 155976, + [SMALL_STATE(2951)] = 156021, + [SMALL_STATE(2952)] = 156094, + [SMALL_STATE(2953)] = 156157, + [SMALL_STATE(2954)] = 156202, + [SMALL_STATE(2955)] = 156247, + [SMALL_STATE(2956)] = 156320, + [SMALL_STATE(2957)] = 156381, + [SMALL_STATE(2958)] = 156430, + [SMALL_STATE(2959)] = 156479, + [SMALL_STATE(2960)] = 156530, + [SMALL_STATE(2961)] = 156583, + [SMALL_STATE(2962)] = 156640, + [SMALL_STATE(2963)] = 156695, + [SMALL_STATE(2964)] = 156756, + [SMALL_STATE(2965)] = 156819, + [SMALL_STATE(2966)] = 156878, + [SMALL_STATE(2967)] = 156943, + [SMALL_STATE(2968)] = 156992, + [SMALL_STATE(2969)] = 157041, + [SMALL_STATE(2970)] = 157092, + [SMALL_STATE(2971)] = 157145, + [SMALL_STATE(2972)] = 157202, + [SMALL_STATE(2973)] = 157263, + [SMALL_STATE(2974)] = 157326, + [SMALL_STATE(2975)] = 157391, + [SMALL_STATE(2976)] = 157458, + [SMALL_STATE(2977)] = 157527, + [SMALL_STATE(2978)] = 157598, + [SMALL_STATE(2979)] = 157675, + [SMALL_STATE(2980)] = 157750, + [SMALL_STATE(2981)] = 157795, + [SMALL_STATE(2982)] = 157862, + [SMALL_STATE(2983)] = 157951, + [SMALL_STATE(2984)] = 157998, + [SMALL_STATE(2985)] = 158045, + [SMALL_STATE(2986)] = 158114, + [SMALL_STATE(2987)] = 158185, + [SMALL_STATE(2988)] = 158236, + [SMALL_STATE(2989)] = 158313, + [SMALL_STATE(2990)] = 158388, + [SMALL_STATE(2991)] = 158433, + [SMALL_STATE(2992)] = 158488, + [SMALL_STATE(2993)] = 158541, + [SMALL_STATE(2994)] = 158592, + [SMALL_STATE(2995)] = 158647, + [SMALL_STATE(2996)] = 158722, + [SMALL_STATE(2997)] = 158799, + [SMALL_STATE(2998)] = 158844, + [SMALL_STATE(2999)] = 158889, + [SMALL_STATE(3000)] = 158938, + [SMALL_STATE(3001)] = 159007, + [SMALL_STATE(3002)] = 159074, + [SMALL_STATE(3003)] = 159139, + [SMALL_STATE(3004)] = 159202, + [SMALL_STATE(3005)] = 159263, + [SMALL_STATE(3006)] = 159312, + [SMALL_STATE(3007)] = 159367, + [SMALL_STATE(3008)] = 159424, + [SMALL_STATE(3009)] = 159477, + [SMALL_STATE(3010)] = 159524, + [SMALL_STATE(3011)] = 159575, + [SMALL_STATE(3012)] = 159630, + [SMALL_STATE(3013)] = 159687, + [SMALL_STATE(3014)] = 159736, + [SMALL_STATE(3015)] = 159785, + [SMALL_STATE(3016)] = 159840, + [SMALL_STATE(3017)] = 159895, + [SMALL_STATE(3018)] = 159972, + [SMALL_STATE(3019)] = 160027, + [SMALL_STATE(3020)] = 160084, + [SMALL_STATE(3021)] = 160129, + [SMALL_STATE(3022)] = 160174, + [SMALL_STATE(3023)] = 160253, + [SMALL_STATE(3024)] = 160302, + [SMALL_STATE(3025)] = 160347, + [SMALL_STATE(3026)] = 160392, + [SMALL_STATE(3027)] = 160437, + [SMALL_STATE(3028)] = 160492, + [SMALL_STATE(3029)] = 160539, + [SMALL_STATE(3030)] = 160586, + [SMALL_STATE(3031)] = 160635, + [SMALL_STATE(3032)] = 160682, + [SMALL_STATE(3033)] = 160771, + [SMALL_STATE(3034)] = 160850, + [SMALL_STATE(3035)] = 160921, + [SMALL_STATE(3036)] = 160968, + [SMALL_STATE(3037)] = 161035, + [SMALL_STATE(3038)] = 161114, + [SMALL_STATE(3039)] = 161203, + [SMALL_STATE(3040)] = 161256, + [SMALL_STATE(3041)] = 161335, + [SMALL_STATE(3042)] = 161392, + [SMALL_STATE(3043)] = 161471, + [SMALL_STATE(3044)] = 161526, + [SMALL_STATE(3045)] = 161581, + [SMALL_STATE(3046)] = 161626, + [SMALL_STATE(3047)] = 161683, + [SMALL_STATE(3048)] = 161738, + [SMALL_STATE(3049)] = 161793, + [SMALL_STATE(3050)] = 161838, + [SMALL_STATE(3051)] = 161911, + [SMALL_STATE(3052)] = 161972, + [SMALL_STATE(3053)] = 162051, + [SMALL_STATE(3054)] = 162096, + [SMALL_STATE(3055)] = 162151, + [SMALL_STATE(3056)] = 162196, + [SMALL_STATE(3057)] = 162241, + [SMALL_STATE(3058)] = 162330, + [SMALL_STATE(3059)] = 162375, + [SMALL_STATE(3060)] = 162440, + [SMALL_STATE(3061)] = 162513, + [SMALL_STATE(3062)] = 162580, + [SMALL_STATE(3063)] = 162649, + [SMALL_STATE(3064)] = 162720, + [SMALL_STATE(3065)] = 162797, + [SMALL_STATE(3066)] = 162846, + [SMALL_STATE(3067)] = 162935, + [SMALL_STATE(3068)] = 163010, + [SMALL_STATE(3069)] = 163065, + [SMALL_STATE(3070)] = 163112, + [SMALL_STATE(3071)] = 163201, + [SMALL_STATE(3072)] = 163246, + [SMALL_STATE(3073)] = 163293, + [SMALL_STATE(3074)] = 163372, + [SMALL_STATE(3075)] = 163417, + [SMALL_STATE(3076)] = 163464, + [SMALL_STATE(3077)] = 163509, + [SMALL_STATE(3078)] = 163558, + [SMALL_STATE(3079)] = 163607, + [SMALL_STATE(3080)] = 163658, + [SMALL_STATE(3081)] = 163711, + [SMALL_STATE(3082)] = 163768, + [SMALL_STATE(3083)] = 163829, + [SMALL_STATE(3084)] = 163892, + [SMALL_STATE(3085)] = 163957, + [SMALL_STATE(3086)] = 164036, + [SMALL_STATE(3087)] = 164103, + [SMALL_STATE(3088)] = 164182, + [SMALL_STATE(3089)] = 164251, + [SMALL_STATE(3090)] = 164308, + [SMALL_STATE(3091)] = 164379, + [SMALL_STATE(3092)] = 164458, + [SMALL_STATE(3093)] = 164509, + [SMALL_STATE(3094)] = 164560, + [SMALL_STATE(3095)] = 164637, + [SMALL_STATE(3096)] = 164712, + [SMALL_STATE(3097)] = 164767, + [SMALL_STATE(3098)] = 164822, + [SMALL_STATE(3099)] = 164879, + [SMALL_STATE(3100)] = 164926, + [SMALL_STATE(3101)] = 164981, + [SMALL_STATE(3102)] = 165036, + [SMALL_STATE(3103)] = 165091, + [SMALL_STATE(3104)] = 165138, + [SMALL_STATE(3105)] = 165217, + [SMALL_STATE(3106)] = 165306, + [SMALL_STATE(3107)] = 165395, + [SMALL_STATE(3108)] = 165450, + [SMALL_STATE(3109)] = 165505, + [SMALL_STATE(3110)] = 165594, + [SMALL_STATE(3111)] = 165645, + [SMALL_STATE(3112)] = 165724, + [SMALL_STATE(3113)] = 165781, + [SMALL_STATE(3114)] = 165826, + [SMALL_STATE(3115)] = 165875, + [SMALL_STATE(3116)] = 165926, + [SMALL_STATE(3117)] = 165971, + [SMALL_STATE(3118)] = 166022, + [SMALL_STATE(3119)] = 166067, + [SMALL_STATE(3120)] = 166138, + [SMALL_STATE(3121)] = 166189, + [SMALL_STATE(3122)] = 166234, + [SMALL_STATE(3123)] = 166323, + [SMALL_STATE(3124)] = 166402, + [SMALL_STATE(3125)] = 166481, + [SMALL_STATE(3126)] = 166560, + [SMALL_STATE(3127)] = 166639, + [SMALL_STATE(3128)] = 166702, + [SMALL_STATE(3129)] = 166781, + [SMALL_STATE(3130)] = 166860, + [SMALL_STATE(3131)] = 166907, + [SMALL_STATE(3132)] = 166986, + [SMALL_STATE(3133)] = 167041, + [SMALL_STATE(3134)] = 167130, + [SMALL_STATE(3135)] = 167185, + [SMALL_STATE(3136)] = 167274, + [SMALL_STATE(3137)] = 167363, + [SMALL_STATE(3138)] = 167452, + [SMALL_STATE(3139)] = 167497, + [SMALL_STATE(3140)] = 167576, + [SMALL_STATE(3141)] = 167655, + [SMALL_STATE(3142)] = 167734, + [SMALL_STATE(3143)] = 167813, + [SMALL_STATE(3144)] = 167892, + [SMALL_STATE(3145)] = 167971, + [SMALL_STATE(3146)] = 168050, + [SMALL_STATE(3147)] = 168095, + [SMALL_STATE(3148)] = 168174, + [SMALL_STATE(3149)] = 168253, + [SMALL_STATE(3150)] = 168298, + [SMALL_STATE(3151)] = 168377, + [SMALL_STATE(3152)] = 168450, + [SMALL_STATE(3153)] = 168529, + [SMALL_STATE(3154)] = 168608, + [SMALL_STATE(3155)] = 168687, + [SMALL_STATE(3156)] = 168766, + [SMALL_STATE(3157)] = 168845, + [SMALL_STATE(3158)] = 168890, + [SMALL_STATE(3159)] = 168969, + [SMALL_STATE(3160)] = 169014, + [SMALL_STATE(3161)] = 169059, + [SMALL_STATE(3162)] = 169104, + [SMALL_STATE(3163)] = 169159, + [SMALL_STATE(3164)] = 169214, + [SMALL_STATE(3165)] = 169303, + [SMALL_STATE(3166)] = 169379, + [SMALL_STATE(3167)] = 169455, + [SMALL_STATE(3168)] = 169499, + [SMALL_STATE(3169)] = 169543, + [SMALL_STATE(3170)] = 169587, + [SMALL_STATE(3171)] = 169631, + [SMALL_STATE(3172)] = 169675, + [SMALL_STATE(3173)] = 169719, + [SMALL_STATE(3174)] = 169763, + [SMALL_STATE(3175)] = 169807, + [SMALL_STATE(3176)] = 169851, + [SMALL_STATE(3177)] = 169895, + [SMALL_STATE(3178)] = 169939, + [SMALL_STATE(3179)] = 169983, + [SMALL_STATE(3180)] = 170027, + [SMALL_STATE(3181)] = 170071, + [SMALL_STATE(3182)] = 170115, + [SMALL_STATE(3183)] = 170191, + [SMALL_STATE(3184)] = 170245, + [SMALL_STATE(3185)] = 170289, + [SMALL_STATE(3186)] = 170365, + [SMALL_STATE(3187)] = 170419, + [SMALL_STATE(3188)] = 170473, + [SMALL_STATE(3189)] = 170543, + [SMALL_STATE(3190)] = 170587, + [SMALL_STATE(3191)] = 170631, + [SMALL_STATE(3192)] = 170675, + [SMALL_STATE(3193)] = 170751, + [SMALL_STATE(3194)] = 170805, + [SMALL_STATE(3195)] = 170849, + [SMALL_STATE(3196)] = 170925, + [SMALL_STATE(3197)] = 170973, + [SMALL_STATE(3198)] = 171029, + [SMALL_STATE(3199)] = 171077, + [SMALL_STATE(3200)] = 171127, + [SMALL_STATE(3201)] = 171179, + [SMALL_STATE(3202)] = 171233, + [SMALL_STATE(3203)] = 171291, + [SMALL_STATE(3204)] = 171335, + [SMALL_STATE(3205)] = 171411, + [SMALL_STATE(3206)] = 171471, + [SMALL_STATE(3207)] = 171515, + [SMALL_STATE(3208)] = 171577, + [SMALL_STATE(3209)] = 171621, + [SMALL_STATE(3210)] = 171697, + [SMALL_STATE(3211)] = 171741, + [SMALL_STATE(3212)] = 171785, + [SMALL_STATE(3213)] = 171861, + [SMALL_STATE(3214)] = 171905, + [SMALL_STATE(3215)] = 171969, + [SMALL_STATE(3216)] = 172013, + [SMALL_STATE(3217)] = 172077, + [SMALL_STATE(3218)] = 172143, + [SMALL_STATE(3219)] = 172211, + [SMALL_STATE(3220)] = 172255, + [SMALL_STATE(3221)] = 172299, + [SMALL_STATE(3222)] = 172343, + [SMALL_STATE(3223)] = 172387, + [SMALL_STATE(3224)] = 172431, + [SMALL_STATE(3225)] = 172507, + [SMALL_STATE(3226)] = 172551, + [SMALL_STATE(3227)] = 172595, + [SMALL_STATE(3228)] = 172649, + [SMALL_STATE(3229)] = 172693, + [SMALL_STATE(3230)] = 172737, + [SMALL_STATE(3231)] = 172791, + [SMALL_STATE(3232)] = 172835, + [SMALL_STATE(3233)] = 172879, + [SMALL_STATE(3234)] = 172965, + [SMALL_STATE(3235)] = 173009, + [SMALL_STATE(3236)] = 173085, + [SMALL_STATE(3237)] = 173171, + [SMALL_STATE(3238)] = 173225, + [SMALL_STATE(3239)] = 173279, + [SMALL_STATE(3240)] = 173355, + [SMALL_STATE(3241)] = 173409, + [SMALL_STATE(3242)] = 173453, + [SMALL_STATE(3243)] = 173499, + [SMALL_STATE(3244)] = 173553, + [SMALL_STATE(3245)] = 173629, + [SMALL_STATE(3246)] = 173673, + [SMALL_STATE(3247)] = 173721, + [SMALL_STATE(3248)] = 173771, + [SMALL_STATE(3249)] = 173823, + [SMALL_STATE(3250)] = 173877, + [SMALL_STATE(3251)] = 173921, + [SMALL_STATE(3252)] = 173965, + [SMALL_STATE(3253)] = 174041, + [SMALL_STATE(3254)] = 174085, + [SMALL_STATE(3255)] = 174129, + [SMALL_STATE(3256)] = 174173, + [SMALL_STATE(3257)] = 174217, + [SMALL_STATE(3258)] = 174293, + [SMALL_STATE(3259)] = 174351, + [SMALL_STATE(3260)] = 174411, + [SMALL_STATE(3261)] = 174487, + [SMALL_STATE(3262)] = 174549, + [SMALL_STATE(3263)] = 174613, + [SMALL_STATE(3264)] = 174679, + [SMALL_STATE(3265)] = 174747, + [SMALL_STATE(3266)] = 174821, + [SMALL_STATE(3267)] = 174893, + [SMALL_STATE(3268)] = 174937, + [SMALL_STATE(3269)] = 175013, + [SMALL_STATE(3270)] = 175067, + [SMALL_STATE(3271)] = 175121, + [SMALL_STATE(3272)] = 175165, + [SMALL_STATE(3273)] = 175209, + [SMALL_STATE(3274)] = 175285, + [SMALL_STATE(3275)] = 175361, + [SMALL_STATE(3276)] = 175405, + [SMALL_STATE(3277)] = 175451, + [SMALL_STATE(3278)] = 175495, + [SMALL_STATE(3279)] = 175549, + [SMALL_STATE(3280)] = 175593, + [SMALL_STATE(3281)] = 175637, + [SMALL_STATE(3282)] = 175683, + [SMALL_STATE(3283)] = 175727, + [SMALL_STATE(3284)] = 175781, + [SMALL_STATE(3285)] = 175857, + [SMALL_STATE(3286)] = 175901, + [SMALL_STATE(3287)] = 175945, + [SMALL_STATE(3288)] = 175989, + [SMALL_STATE(3289)] = 176033, + [SMALL_STATE(3290)] = 176109, + [SMALL_STATE(3291)] = 176153, + [SMALL_STATE(3292)] = 176197, + [SMALL_STATE(3293)] = 176267, + [SMALL_STATE(3294)] = 176343, + [SMALL_STATE(3295)] = 176387, + [SMALL_STATE(3296)] = 176431, + [SMALL_STATE(3297)] = 176507, + [SMALL_STATE(3298)] = 176551, + [SMALL_STATE(3299)] = 176605, + [SMALL_STATE(3300)] = 176681, + [SMALL_STATE(3301)] = 176725, + [SMALL_STATE(3302)] = 176801, + [SMALL_STATE(3303)] = 176877, + [SMALL_STATE(3304)] = 176953, + [SMALL_STATE(3305)] = 177029, + [SMALL_STATE(3306)] = 177083, + [SMALL_STATE(3307)] = 177127, + [SMALL_STATE(3308)] = 177171, + [SMALL_STATE(3309)] = 177247, + [SMALL_STATE(3310)] = 177323, + [SMALL_STATE(3311)] = 177409, + [SMALL_STATE(3312)] = 177453, + [SMALL_STATE(3313)] = 177497, + [SMALL_STATE(3314)] = 177551, + [SMALL_STATE(3315)] = 177625, + [SMALL_STATE(3316)] = 177701, + [SMALL_STATE(3317)] = 177777, + [SMALL_STATE(3318)] = 177853, + [SMALL_STATE(3319)] = 177929, + [SMALL_STATE(3320)] = 177999, + [SMALL_STATE(3321)] = 178075, + [SMALL_STATE(3322)] = 178151, + [SMALL_STATE(3323)] = 178195, + [SMALL_STATE(3324)] = 178263, + [SMALL_STATE(3325)] = 178339, + [SMALL_STATE(3326)] = 178415, + [SMALL_STATE(3327)] = 178491, + [SMALL_STATE(3328)] = 178557, + [SMALL_STATE(3329)] = 178633, + [SMALL_STATE(3330)] = 178709, + [SMALL_STATE(3331)] = 178773, + [SMALL_STATE(3332)] = 178817, + [SMALL_STATE(3333)] = 178879, + [SMALL_STATE(3334)] = 178939, + [SMALL_STATE(3335)] = 179015, + [SMALL_STATE(3336)] = 179071, + [SMALL_STATE(3337)] = 179147, + [SMALL_STATE(3338)] = 179223, + [SMALL_STATE(3339)] = 179299, + [SMALL_STATE(3340)] = 179375, + [SMALL_STATE(3341)] = 179451, + [SMALL_STATE(3342)] = 179527, + [SMALL_STATE(3343)] = 179603, + [SMALL_STATE(3344)] = 179679, + [SMALL_STATE(3345)] = 179755, + [SMALL_STATE(3346)] = 179807, + [SMALL_STATE(3347)] = 179883, + [SMALL_STATE(3348)] = 179933, + [SMALL_STATE(3349)] = 180009, + [SMALL_STATE(3350)] = 180085, + [SMALL_STATE(3351)] = 180161, + [SMALL_STATE(3352)] = 180209, + [SMALL_STATE(3353)] = 180253, + [SMALL_STATE(3354)] = 180297, + [SMALL_STATE(3355)] = 180341, + [SMALL_STATE(3356)] = 180417, + [SMALL_STATE(3357)] = 180465, + [SMALL_STATE(3358)] = 180541, + [SMALL_STATE(3359)] = 180613, + [SMALL_STATE(3360)] = 180657, + [SMALL_STATE(3361)] = 180701, + [SMALL_STATE(3362)] = 180745, + [SMALL_STATE(3363)] = 180821, + [SMALL_STATE(3364)] = 180897, + [SMALL_STATE(3365)] = 180973, + [SMALL_STATE(3366)] = 181049, + [SMALL_STATE(3367)] = 181125, + [SMALL_STATE(3368)] = 181169, + [SMALL_STATE(3369)] = 181245, + [SMALL_STATE(3370)] = 181321, + [SMALL_STATE(3371)] = 181397, + [SMALL_STATE(3372)] = 181473, + [SMALL_STATE(3373)] = 181549, + [SMALL_STATE(3374)] = 181625, + [SMALL_STATE(3375)] = 181701, + [SMALL_STATE(3376)] = 181745, + [SMALL_STATE(3377)] = 181789, + [SMALL_STATE(3378)] = 181875, + [SMALL_STATE(3379)] = 181961, + [SMALL_STATE(3380)] = 182031, + [SMALL_STATE(3381)] = 182075, + [SMALL_STATE(3382)] = 182123, + [SMALL_STATE(3383)] = 182209, + [SMALL_STATE(3384)] = 182295, + [SMALL_STATE(3385)] = 182343, + [SMALL_STATE(3386)] = 182429, + [SMALL_STATE(3387)] = 182515, + [SMALL_STATE(3388)] = 182565, + [SMALL_STATE(3389)] = 182651, + [SMALL_STATE(3390)] = 182737, + [SMALL_STATE(3391)] = 182789, + [SMALL_STATE(3392)] = 182833, + [SMALL_STATE(3393)] = 182887, + [SMALL_STATE(3394)] = 182931, + [SMALL_STATE(3395)] = 182989, + [SMALL_STATE(3396)] = 183049, + [SMALL_STATE(3397)] = 183093, + [SMALL_STATE(3398)] = 183169, + [SMALL_STATE(3399)] = 183213, + [SMALL_STATE(3400)] = 183275, + [SMALL_STATE(3401)] = 183319, + [SMALL_STATE(3402)] = 183395, + [SMALL_STATE(3403)] = 183459, + [SMALL_STATE(3404)] = 183523, + [SMALL_STATE(3405)] = 183589, + [SMALL_STATE(3406)] = 183657, + [SMALL_STATE(3407)] = 183701, + [SMALL_STATE(3408)] = 183787, + [SMALL_STATE(3409)] = 183863, + [SMALL_STATE(3410)] = 183909, + [SMALL_STATE(3411)] = 183957, + [SMALL_STATE(3412)] = 184043, + [SMALL_STATE(3413)] = 184093, + [SMALL_STATE(3414)] = 184145, + [SMALL_STATE(3415)] = 184199, + [SMALL_STATE(3416)] = 184243, + [SMALL_STATE(3417)] = 184329, + [SMALL_STATE(3418)] = 184383, + [SMALL_STATE(3419)] = 184427, + [SMALL_STATE(3420)] = 184513, + [SMALL_STATE(3421)] = 184599, + [SMALL_STATE(3422)] = 184653, + [SMALL_STATE(3423)] = 184739, + [SMALL_STATE(3424)] = 184825, + [SMALL_STATE(3425)] = 184911, + [SMALL_STATE(3426)] = 184969, + [SMALL_STATE(3427)] = 185045, + [SMALL_STATE(3428)] = 185089, + [SMALL_STATE(3429)] = 185149, + [SMALL_STATE(3430)] = 185211, + [SMALL_STATE(3431)] = 185275, + [SMALL_STATE(3432)] = 185341, + [SMALL_STATE(3433)] = 185409, + [SMALL_STATE(3434)] = 185483, + [SMALL_STATE(3435)] = 185555, + [SMALL_STATE(3436)] = 185631, + [SMALL_STATE(3437)] = 185675, + [SMALL_STATE(3438)] = 185761, + [SMALL_STATE(3439)] = 185847, + [SMALL_STATE(3440)] = 185891, + [SMALL_STATE(3441)] = 185977, + [SMALL_STATE(3442)] = 186047, + [SMALL_STATE(3443)] = 186091, + [SMALL_STATE(3444)] = 186135, + [SMALL_STATE(3445)] = 186179, + [SMALL_STATE(3446)] = 186223, + [SMALL_STATE(3447)] = 186277, + [SMALL_STATE(3448)] = 186323, + [SMALL_STATE(3449)] = 186367, + [SMALL_STATE(3450)] = 186421, + [SMALL_STATE(3451)] = 186465, + [SMALL_STATE(3452)] = 186551, + [SMALL_STATE(3453)] = 186637, + [SMALL_STATE(3454)] = 186681, + [SMALL_STATE(3455)] = 186727, + [SMALL_STATE(3456)] = 186771, + [SMALL_STATE(3457)] = 186818, + [SMALL_STATE(3458)] = 186871, + [SMALL_STATE(3459)] = 186950, + [SMALL_STATE(3460)] = 186999, + [SMALL_STATE(3461)] = 187078, + [SMALL_STATE(3462)] = 187127, + [SMALL_STATE(3463)] = 187214, + [SMALL_STATE(3464)] = 187267, + [SMALL_STATE(3465)] = 187320, + [SMALL_STATE(3466)] = 187367, + [SMALL_STATE(3467)] = 187414, + [SMALL_STATE(3468)] = 187461, + [SMALL_STATE(3469)] = 187508, + [SMALL_STATE(3470)] = 187555, + [SMALL_STATE(3471)] = 187642, + [SMALL_STATE(3472)] = 187689, + [SMALL_STATE(3473)] = 187736, + [SMALL_STATE(3474)] = 187783, + [SMALL_STATE(3475)] = 187836, + [SMALL_STATE(3476)] = 187915, + [SMALL_STATE(3477)] = 187962, + [SMALL_STATE(3478)] = 188045, + [SMALL_STATE(3479)] = 188124, + [SMALL_STATE(3480)] = 188171, + [SMALL_STATE(3481)] = 188218, + [SMALL_STATE(3482)] = 188265, + [SMALL_STATE(3483)] = 188318, + [SMALL_STATE(3484)] = 188365, + [SMALL_STATE(3485)] = 188444, + [SMALL_STATE(3486)] = 188497, + [SMALL_STATE(3487)] = 188584, + [SMALL_STATE(3488)] = 188666, + [SMALL_STATE(3489)] = 188708, + [SMALL_STATE(3490)] = 188790, + [SMALL_STATE(3491)] = 188832, + [SMALL_STATE(3492)] = 188908, + [SMALL_STATE(3493)] = 188950, + [SMALL_STATE(3494)] = 189032, + [SMALL_STATE(3495)] = 189074, + [SMALL_STATE(3496)] = 189156, + [SMALL_STATE(3497)] = 189238, + [SMALL_STATE(3498)] = 189320, + [SMALL_STATE(3499)] = 189362, + [SMALL_STATE(3500)] = 189444, + [SMALL_STATE(3501)] = 189526, + [SMALL_STATE(3502)] = 189568, + [SMALL_STATE(3503)] = 189650, + [SMALL_STATE(3504)] = 189732, + [SMALL_STATE(3505)] = 189774, + [SMALL_STATE(3506)] = 189816, + [SMALL_STATE(3507)] = 189858, + [SMALL_STATE(3508)] = 189940, + [SMALL_STATE(3509)] = 189982, + [SMALL_STATE(3510)] = 190064, + [SMALL_STATE(3511)] = 190106, + [SMALL_STATE(3512)] = 190148, + [SMALL_STATE(3513)] = 190190, + [SMALL_STATE(3514)] = 190232, + [SMALL_STATE(3515)] = 190314, + [SMALL_STATE(3516)] = 190356, + [SMALL_STATE(3517)] = 190398, + [SMALL_STATE(3518)] = 190480, + [SMALL_STATE(3519)] = 190562, + [SMALL_STATE(3520)] = 190644, + [SMALL_STATE(3521)] = 190726, + [SMALL_STATE(3522)] = 190808, + [SMALL_STATE(3523)] = 190850, + [SMALL_STATE(3524)] = 190932, + [SMALL_STATE(3525)] = 191014, + [SMALL_STATE(3526)] = 191056, + [SMALL_STATE(3527)] = 191138, + [SMALL_STATE(3528)] = 191220, + [SMALL_STATE(3529)] = 191262, + [SMALL_STATE(3530)] = 191304, + [SMALL_STATE(3531)] = 191386, + [SMALL_STATE(3532)] = 191459, + [SMALL_STATE(3533)] = 191532, + [SMALL_STATE(3534)] = 191605, + [SMALL_STATE(3535)] = 191678, + [SMALL_STATE(3536)] = 191729, + [SMALL_STATE(3537)] = 191774, + [SMALL_STATE(3538)] = 191825, + [SMALL_STATE(3539)] = 191876, + [SMALL_STATE(3540)] = 191921, + [SMALL_STATE(3541)] = 191972, + [SMALL_STATE(3542)] = 192017, + [SMALL_STATE(3543)] = 192062, + [SMALL_STATE(3544)] = 192107, + [SMALL_STATE(3545)] = 192152, + [SMALL_STATE(3546)] = 192197, + [SMALL_STATE(3547)] = 192273, + [SMALL_STATE(3548)] = 192313, + [SMALL_STATE(3549)] = 192389, + [SMALL_STATE(3550)] = 192465, + [SMALL_STATE(3551)] = 192541, + [SMALL_STATE(3552)] = 192617, + [SMALL_STATE(3553)] = 192657, + [SMALL_STATE(3554)] = 192733, + [SMALL_STATE(3555)] = 192809, + [SMALL_STATE(3556)] = 192885, + [SMALL_STATE(3557)] = 192925, + [SMALL_STATE(3558)] = 193001, + [SMALL_STATE(3559)] = 193077, + [SMALL_STATE(3560)] = 193127, + [SMALL_STATE(3561)] = 193177, + [SMALL_STATE(3562)] = 193253, + [SMALL_STATE(3563)] = 193303, + [SMALL_STATE(3564)] = 193379, + [SMALL_STATE(3565)] = 193455, + [SMALL_STATE(3566)] = 193531, + [SMALL_STATE(3567)] = 193607, + [SMALL_STATE(3568)] = 193683, + [SMALL_STATE(3569)] = 193759, + [SMALL_STATE(3570)] = 193799, + [SMALL_STATE(3571)] = 193875, + [SMALL_STATE(3572)] = 193951, + [SMALL_STATE(3573)] = 194001, + [SMALL_STATE(3574)] = 194041, + [SMALL_STATE(3575)] = 194117, + [SMALL_STATE(3576)] = 194193, + [SMALL_STATE(3577)] = 194269, + [SMALL_STATE(3578)] = 194345, + [SMALL_STATE(3579)] = 194385, + [SMALL_STATE(3580)] = 194435, + [SMALL_STATE(3581)] = 194485, + [SMALL_STATE(3582)] = 194525, + [SMALL_STATE(3583)] = 194575, + [SMALL_STATE(3584)] = 194651, + [SMALL_STATE(3585)] = 194701, + [SMALL_STATE(3586)] = 194777, + [SMALL_STATE(3587)] = 194853, + [SMALL_STATE(3588)] = 194929, + [SMALL_STATE(3589)] = 195005, + [SMALL_STATE(3590)] = 195081, + [SMALL_STATE(3591)] = 195157, + [SMALL_STATE(3592)] = 195233, + [SMALL_STATE(3593)] = 195309, + [SMALL_STATE(3594)] = 195385, + [SMALL_STATE(3595)] = 195461, + [SMALL_STATE(3596)] = 195537, + [SMALL_STATE(3597)] = 195613, + [SMALL_STATE(3598)] = 195653, + [SMALL_STATE(3599)] = 195703, + [SMALL_STATE(3600)] = 195779, + [SMALL_STATE(3601)] = 195829, + [SMALL_STATE(3602)] = 195869, + [SMALL_STATE(3603)] = 195945, + [SMALL_STATE(3604)] = 196021, + [SMALL_STATE(3605)] = 196097, + [SMALL_STATE(3606)] = 196173, + [SMALL_STATE(3607)] = 196249, + [SMALL_STATE(3608)] = 196299, + [SMALL_STATE(3609)] = 196375, + [SMALL_STATE(3610)] = 196451, + [SMALL_STATE(3611)] = 196527, + [SMALL_STATE(3612)] = 196603, + [SMALL_STATE(3613)] = 196653, + [SMALL_STATE(3614)] = 196729, + [SMALL_STATE(3615)] = 196802, + [SMALL_STATE(3616)] = 196873, + [SMALL_STATE(3617)] = 196944, + [SMALL_STATE(3618)] = 197017, + [SMALL_STATE(3619)] = 197090, + [SMALL_STATE(3620)] = 197139, + [SMALL_STATE(3621)] = 197214, + [SMALL_STATE(3622)] = 197287, + [SMALL_STATE(3623)] = 197360, + [SMALL_STATE(3624)] = 197433, + [SMALL_STATE(3625)] = 197506, + [SMALL_STATE(3626)] = 197579, + [SMALL_STATE(3627)] = 197652, + [SMALL_STATE(3628)] = 197725, + [SMALL_STATE(3629)] = 197796, + [SMALL_STATE(3630)] = 197869, + [SMALL_STATE(3631)] = 197942, + [SMALL_STATE(3632)] = 198015, + [SMALL_STATE(3633)] = 198088, + [SMALL_STATE(3634)] = 198161, + [SMALL_STATE(3635)] = 198234, + [SMALL_STATE(3636)] = 198307, + [SMALL_STATE(3637)] = 198356, + [SMALL_STATE(3638)] = 198429, + [SMALL_STATE(3639)] = 198502, + [SMALL_STATE(3640)] = 198575, + [SMALL_STATE(3641)] = 198648, + [SMALL_STATE(3642)] = 198721, + [SMALL_STATE(3643)] = 198794, + [SMALL_STATE(3644)] = 198865, + [SMALL_STATE(3645)] = 198936, + [SMALL_STATE(3646)] = 199009, + [SMALL_STATE(3647)] = 199082, + [SMALL_STATE(3648)] = 199155, + [SMALL_STATE(3649)] = 199228, + [SMALL_STATE(3650)] = 199301, + [SMALL_STATE(3651)] = 199374, + [SMALL_STATE(3652)] = 199447, + [SMALL_STATE(3653)] = 199520, + [SMALL_STATE(3654)] = 199593, + [SMALL_STATE(3655)] = 199666, + [SMALL_STATE(3656)] = 199739, + [SMALL_STATE(3657)] = 199810, + [SMALL_STATE(3658)] = 199881, + [SMALL_STATE(3659)] = 199952, + [SMALL_STATE(3660)] = 200025, + [SMALL_STATE(3661)] = 200100, + [SMALL_STATE(3662)] = 200173, + [SMALL_STATE(3663)] = 200246, + [SMALL_STATE(3664)] = 200317, + [SMALL_STATE(3665)] = 200366, + [SMALL_STATE(3666)] = 200439, + [SMALL_STATE(3667)] = 200488, + [SMALL_STATE(3668)] = 200561, + [SMALL_STATE(3669)] = 200632, + [SMALL_STATE(3670)] = 200705, + [SMALL_STATE(3671)] = 200778, + [SMALL_STATE(3672)] = 200849, + [SMALL_STATE(3673)] = 200924, + [SMALL_STATE(3674)] = 200997, + [SMALL_STATE(3675)] = 201070, + [SMALL_STATE(3676)] = 201143, + [SMALL_STATE(3677)] = 201216, + [SMALL_STATE(3678)] = 201289, + [SMALL_STATE(3679)] = 201362, + [SMALL_STATE(3680)] = 201435, + [SMALL_STATE(3681)] = 201508, + [SMALL_STATE(3682)] = 201581, + [SMALL_STATE(3683)] = 201656, + [SMALL_STATE(3684)] = 201727, + [SMALL_STATE(3685)] = 201800, + [SMALL_STATE(3686)] = 201871, + [SMALL_STATE(3687)] = 201946, + [SMALL_STATE(3688)] = 202019, + [SMALL_STATE(3689)] = 202092, + [SMALL_STATE(3690)] = 202165, + [SMALL_STATE(3691)] = 202238, + [SMALL_STATE(3692)] = 202311, + [SMALL_STATE(3693)] = 202384, + [SMALL_STATE(3694)] = 202457, + [SMALL_STATE(3695)] = 202530, + [SMALL_STATE(3696)] = 202605, + [SMALL_STATE(3697)] = 202678, + [SMALL_STATE(3698)] = 202753, + [SMALL_STATE(3699)] = 202821, + [SMALL_STATE(3700)] = 202895, + [SMALL_STATE(3701)] = 202963, + [SMALL_STATE(3702)] = 203031, + [SMALL_STATE(3703)] = 203099, + [SMALL_STATE(3704)] = 203171, + [SMALL_STATE(3705)] = 203239, + [SMALL_STATE(3706)] = 203313, + [SMALL_STATE(3707)] = 203385, + [SMALL_STATE(3708)] = 203453, + [SMALL_STATE(3709)] = 203527, + [SMALL_STATE(3710)] = 203601, + [SMALL_STATE(3711)] = 203675, + [SMALL_STATE(3712)] = 203743, + [SMALL_STATE(3713)] = 203811, + [SMALL_STATE(3714)] = 203885, + [SMALL_STATE(3715)] = 203959, + [SMALL_STATE(3716)] = 204031, + [SMALL_STATE(3717)] = 204103, + [SMALL_STATE(3718)] = 204171, + [SMALL_STATE(3719)] = 204243, + [SMALL_STATE(3720)] = 204311, + [SMALL_STATE(3721)] = 204383, + [SMALL_STATE(3722)] = 204455, + [SMALL_STATE(3723)] = 204529, + [SMALL_STATE(3724)] = 204597, + [SMALL_STATE(3725)] = 204671, + [SMALL_STATE(3726)] = 204743, + [SMALL_STATE(3727)] = 204817, + [SMALL_STATE(3728)] = 204885, + [SMALL_STATE(3729)] = 204959, + [SMALL_STATE(3730)] = 205033, + [SMALL_STATE(3731)] = 205107, + [SMALL_STATE(3732)] = 205181, + [SMALL_STATE(3733)] = 205249, + [SMALL_STATE(3734)] = 205317, + [SMALL_STATE(3735)] = 205389, + [SMALL_STATE(3736)] = 205457, + [SMALL_STATE(3737)] = 205529, + [SMALL_STATE(3738)] = 205597, + [SMALL_STATE(3739)] = 205665, + [SMALL_STATE(3740)] = 205737, + [SMALL_STATE(3741)] = 205809, + [SMALL_STATE(3742)] = 205883, + [SMALL_STATE(3743)] = 205957, + [SMALL_STATE(3744)] = 206031, + [SMALL_STATE(3745)] = 206105, + [SMALL_STATE(3746)] = 206173, + [SMALL_STATE(3747)] = 206241, + [SMALL_STATE(3748)] = 206309, + [SMALL_STATE(3749)] = 206383, + [SMALL_STATE(3750)] = 206457, + [SMALL_STATE(3751)] = 206525, + [SMALL_STATE(3752)] = 206599, + [SMALL_STATE(3753)] = 206667, + [SMALL_STATE(3754)] = 206741, + [SMALL_STATE(3755)] = 206815, + [SMALL_STATE(3756)] = 206889, + [SMALL_STATE(3757)] = 206957, + [SMALL_STATE(3758)] = 207025, + [SMALL_STATE(3759)] = 207093, + [SMALL_STATE(3760)] = 207167, + [SMALL_STATE(3761)] = 207235, + [SMALL_STATE(3762)] = 207307, + [SMALL_STATE(3763)] = 207379, + [SMALL_STATE(3764)] = 207451, + [SMALL_STATE(3765)] = 207525, + [SMALL_STATE(3766)] = 207597, + [SMALL_STATE(3767)] = 207665, + [SMALL_STATE(3768)] = 207733, + [SMALL_STATE(3769)] = 207801, + [SMALL_STATE(3770)] = 207873, + [SMALL_STATE(3771)] = 207941, + [SMALL_STATE(3772)] = 208009, + [SMALL_STATE(3773)] = 208081, + [SMALL_STATE(3774)] = 208149, + [SMALL_STATE(3775)] = 208217, + [SMALL_STATE(3776)] = 208289, + [SMALL_STATE(3777)] = 208357, + [SMALL_STATE(3778)] = 208429, + [SMALL_STATE(3779)] = 208497, + [SMALL_STATE(3780)] = 208569, + [SMALL_STATE(3781)] = 208641, + [SMALL_STATE(3782)] = 208709, + [SMALL_STATE(3783)] = 208781, + [SMALL_STATE(3784)] = 208855, + [SMALL_STATE(3785)] = 208929, + [SMALL_STATE(3786)] = 208997, + [SMALL_STATE(3787)] = 209071, + [SMALL_STATE(3788)] = 209143, + [SMALL_STATE(3789)] = 209211, + [SMALL_STATE(3790)] = 209285, + [SMALL_STATE(3791)] = 209353, + [SMALL_STATE(3792)] = 209421, + [SMALL_STATE(3793)] = 209489, + [SMALL_STATE(3794)] = 209563, + [SMALL_STATE(3795)] = 209631, + [SMALL_STATE(3796)] = 209699, + [SMALL_STATE(3797)] = 209767, + [SMALL_STATE(3798)] = 209841, + [SMALL_STATE(3799)] = 209909, + [SMALL_STATE(3800)] = 209981, + [SMALL_STATE(3801)] = 210055, + [SMALL_STATE(3802)] = 210127, + [SMALL_STATE(3803)] = 210195, + [SMALL_STATE(3804)] = 210263, + [SMALL_STATE(3805)] = 210337, + [SMALL_STATE(3806)] = 210409, + [SMALL_STATE(3807)] = 210477, + [SMALL_STATE(3808)] = 210549, + [SMALL_STATE(3809)] = 210621, + [SMALL_STATE(3810)] = 210695, + [SMALL_STATE(3811)] = 210763, + [SMALL_STATE(3812)] = 210831, + [SMALL_STATE(3813)] = 210905, + [SMALL_STATE(3814)] = 210973, + [SMALL_STATE(3815)] = 211041, + [SMALL_STATE(3816)] = 211109, + [SMALL_STATE(3817)] = 211183, + [SMALL_STATE(3818)] = 211257, + [SMALL_STATE(3819)] = 211331, + [SMALL_STATE(3820)] = 211399, + [SMALL_STATE(3821)] = 211473, + [SMALL_STATE(3822)] = 211545, + [SMALL_STATE(3823)] = 211617, + [SMALL_STATE(3824)] = 211685, + [SMALL_STATE(3825)] = 211759, + [SMALL_STATE(3826)] = 211833, + [SMALL_STATE(3827)] = 211901, + [SMALL_STATE(3828)] = 211973, + [SMALL_STATE(3829)] = 212045, + [SMALL_STATE(3830)] = 212113, + [SMALL_STATE(3831)] = 212187, + [SMALL_STATE(3832)] = 212261, + [SMALL_STATE(3833)] = 212333, + [SMALL_STATE(3834)] = 212405, + [SMALL_STATE(3835)] = 212473, + [SMALL_STATE(3836)] = 212547, + [SMALL_STATE(3837)] = 212619, + [SMALL_STATE(3838)] = 212687, + [SMALL_STATE(3839)] = 212759, + [SMALL_STATE(3840)] = 212827, + [SMALL_STATE(3841)] = 212899, + [SMALL_STATE(3842)] = 212967, + [SMALL_STATE(3843)] = 213041, + [SMALL_STATE(3844)] = 213109, + [SMALL_STATE(3845)] = 213177, + [SMALL_STATE(3846)] = 213245, + [SMALL_STATE(3847)] = 213313, + [SMALL_STATE(3848)] = 213381, + [SMALL_STATE(3849)] = 213449, + [SMALL_STATE(3850)] = 213523, + [SMALL_STATE(3851)] = 213597, + [SMALL_STATE(3852)] = 213665, + [SMALL_STATE(3853)] = 213733, + [SMALL_STATE(3854)] = 213801, + [SMALL_STATE(3855)] = 213869, + [SMALL_STATE(3856)] = 213943, + [SMALL_STATE(3857)] = 214011, + [SMALL_STATE(3858)] = 214085, + [SMALL_STATE(3859)] = 214153, + [SMALL_STATE(3860)] = 214225, + [SMALL_STATE(3861)] = 214293, + [SMALL_STATE(3862)] = 214361, + [SMALL_STATE(3863)] = 214435, + [SMALL_STATE(3864)] = 214509, + [SMALL_STATE(3865)] = 214577, + [SMALL_STATE(3866)] = 214645, + [SMALL_STATE(3867)] = 214713, + [SMALL_STATE(3868)] = 214781, + [SMALL_STATE(3869)] = 214849, + [SMALL_STATE(3870)] = 214917, + [SMALL_STATE(3871)] = 214985, + [SMALL_STATE(3872)] = 215053, + [SMALL_STATE(3873)] = 215121, + [SMALL_STATE(3874)] = 215189, + [SMALL_STATE(3875)] = 215263, + [SMALL_STATE(3876)] = 215337, + [SMALL_STATE(3877)] = 215411, + [SMALL_STATE(3878)] = 215479, + [SMALL_STATE(3879)] = 215547, + [SMALL_STATE(3880)] = 215621, + [SMALL_STATE(3881)] = 215689, + [SMALL_STATE(3882)] = 215757, + [SMALL_STATE(3883)] = 215825, + [SMALL_STATE(3884)] = 215893, + [SMALL_STATE(3885)] = 215961, + [SMALL_STATE(3886)] = 216029, + [SMALL_STATE(3887)] = 216097, + [SMALL_STATE(3888)] = 216165, + [SMALL_STATE(3889)] = 216239, + [SMALL_STATE(3890)] = 216307, + [SMALL_STATE(3891)] = 216375, + [SMALL_STATE(3892)] = 216443, + [SMALL_STATE(3893)] = 216517, + [SMALL_STATE(3894)] = 216591, + [SMALL_STATE(3895)] = 216659, + [SMALL_STATE(3896)] = 216727, + [SMALL_STATE(3897)] = 216795, + [SMALL_STATE(3898)] = 216863, + [SMALL_STATE(3899)] = 216935, + [SMALL_STATE(3900)] = 217003, + [SMALL_STATE(3901)] = 217071, + [SMALL_STATE(3902)] = 217139, + [SMALL_STATE(3903)] = 217211, + [SMALL_STATE(3904)] = 217279, + [SMALL_STATE(3905)] = 217347, + [SMALL_STATE(3906)] = 217415, + [SMALL_STATE(3907)] = 217483, + [SMALL_STATE(3908)] = 217555, + [SMALL_STATE(3909)] = 217623, + [SMALL_STATE(3910)] = 217691, + [SMALL_STATE(3911)] = 217759, + [SMALL_STATE(3912)] = 217827, + [SMALL_STATE(3913)] = 217895, + [SMALL_STATE(3914)] = 217963, + [SMALL_STATE(3915)] = 218031, + [SMALL_STATE(3916)] = 218105, + [SMALL_STATE(3917)] = 218179, + [SMALL_STATE(3918)] = 218247, + [SMALL_STATE(3919)] = 218315, + [SMALL_STATE(3920)] = 218389, + [SMALL_STATE(3921)] = 218463, + [SMALL_STATE(3922)] = 218531, + [SMALL_STATE(3923)] = 218599, + [SMALL_STATE(3924)] = 218667, + [SMALL_STATE(3925)] = 218735, + [SMALL_STATE(3926)] = 218803, + [SMALL_STATE(3927)] = 218871, + [SMALL_STATE(3928)] = 218939, + [SMALL_STATE(3929)] = 219007, + [SMALL_STATE(3930)] = 219075, + [SMALL_STATE(3931)] = 219143, + [SMALL_STATE(3932)] = 219211, + [SMALL_STATE(3933)] = 219285, + [SMALL_STATE(3934)] = 219359, + [SMALL_STATE(3935)] = 219433, + [SMALL_STATE(3936)] = 219501, + [SMALL_STATE(3937)] = 219569, + [SMALL_STATE(3938)] = 219637, + [SMALL_STATE(3939)] = 219705, + [SMALL_STATE(3940)] = 219773, + [SMALL_STATE(3941)] = 219841, + [SMALL_STATE(3942)] = 219909, + [SMALL_STATE(3943)] = 219977, + [SMALL_STATE(3944)] = 220045, + [SMALL_STATE(3945)] = 220119, + [SMALL_STATE(3946)] = 220193, + [SMALL_STATE(3947)] = 220261, + [SMALL_STATE(3948)] = 220329, + [SMALL_STATE(3949)] = 220397, + [SMALL_STATE(3950)] = 220465, + [SMALL_STATE(3951)] = 220533, + [SMALL_STATE(3952)] = 220601, + [SMALL_STATE(3953)] = 220669, + [SMALL_STATE(3954)] = 220737, + [SMALL_STATE(3955)] = 220805, + [SMALL_STATE(3956)] = 220873, + [SMALL_STATE(3957)] = 220941, + [SMALL_STATE(3958)] = 221009, + [SMALL_STATE(3959)] = 221077, + [SMALL_STATE(3960)] = 221145, + [SMALL_STATE(3961)] = 221219, + [SMALL_STATE(3962)] = 221287, + [SMALL_STATE(3963)] = 221355, + [SMALL_STATE(3964)] = 221427, + [SMALL_STATE(3965)] = 221495, + [SMALL_STATE(3966)] = 221567, + [SMALL_STATE(3967)] = 221641, + [SMALL_STATE(3968)] = 221715, + [SMALL_STATE(3969)] = 221783, + [SMALL_STATE(3970)] = 221851, + [SMALL_STATE(3971)] = 221925, + [SMALL_STATE(3972)] = 221993, + [SMALL_STATE(3973)] = 222061, + [SMALL_STATE(3974)] = 222135, + [SMALL_STATE(3975)] = 222209, + [SMALL_STATE(3976)] = 222277, + [SMALL_STATE(3977)] = 222345, + [SMALL_STATE(3978)] = 222419, + [SMALL_STATE(3979)] = 222493, + [SMALL_STATE(3980)] = 222561, + [SMALL_STATE(3981)] = 222629, + [SMALL_STATE(3982)] = 222703, + [SMALL_STATE(3983)] = 222777, + [SMALL_STATE(3984)] = 222851, + [SMALL_STATE(3985)] = 222919, + [SMALL_STATE(3986)] = 222993, + [SMALL_STATE(3987)] = 223067, + [SMALL_STATE(3988)] = 223141, + [SMALL_STATE(3989)] = 223209, + [SMALL_STATE(3990)] = 223277, + [SMALL_STATE(3991)] = 223345, + [SMALL_STATE(3992)] = 223413, + [SMALL_STATE(3993)] = 223481, + [SMALL_STATE(3994)] = 223549, + [SMALL_STATE(3995)] = 223623, + [SMALL_STATE(3996)] = 223697, + [SMALL_STATE(3997)] = 223765, + [SMALL_STATE(3998)] = 223839, + [SMALL_STATE(3999)] = 223907, + [SMALL_STATE(4000)] = 223975, + [SMALL_STATE(4001)] = 224049, + [SMALL_STATE(4002)] = 224123, + [SMALL_STATE(4003)] = 224191, + [SMALL_STATE(4004)] = 224259, + [SMALL_STATE(4005)] = 224327, + [SMALL_STATE(4006)] = 224401, + [SMALL_STATE(4007)] = 224475, + [SMALL_STATE(4008)] = 224543, + [SMALL_STATE(4009)] = 224617, + [SMALL_STATE(4010)] = 224685, + [SMALL_STATE(4011)] = 224753, + [SMALL_STATE(4012)] = 224821, + [SMALL_STATE(4013)] = 224895, + [SMALL_STATE(4014)] = 224963, + [SMALL_STATE(4015)] = 225031, + [SMALL_STATE(4016)] = 225099, + [SMALL_STATE(4017)] = 225167, + [SMALL_STATE(4018)] = 225235, + [SMALL_STATE(4019)] = 225307, + [SMALL_STATE(4020)] = 225375, + [SMALL_STATE(4021)] = 225443, + [SMALL_STATE(4022)] = 225517, + [SMALL_STATE(4023)] = 225585, + [SMALL_STATE(4024)] = 225653, + [SMALL_STATE(4025)] = 225725, + [SMALL_STATE(4026)] = 225799, + [SMALL_STATE(4027)] = 225867, + [SMALL_STATE(4028)] = 225935, + [SMALL_STATE(4029)] = 226003, + [SMALL_STATE(4030)] = 226071, + [SMALL_STATE(4031)] = 226143, + [SMALL_STATE(4032)] = 226215, + [SMALL_STATE(4033)] = 226289, + [SMALL_STATE(4034)] = 226363, + [SMALL_STATE(4035)] = 226431, + [SMALL_STATE(4036)] = 226505, + [SMALL_STATE(4037)] = 226577, + [SMALL_STATE(4038)] = 226651, + [SMALL_STATE(4039)] = 226719, + [SMALL_STATE(4040)] = 226791, + [SMALL_STATE(4041)] = 226865, + [SMALL_STATE(4042)] = 226939, + [SMALL_STATE(4043)] = 227007, + [SMALL_STATE(4044)] = 227081, + [SMALL_STATE(4045)] = 227155, + [SMALL_STATE(4046)] = 227227, + [SMALL_STATE(4047)] = 227295, + [SMALL_STATE(4048)] = 227369, + [SMALL_STATE(4049)] = 227443, + [SMALL_STATE(4050)] = 227517, + [SMALL_STATE(4051)] = 227589, + [SMALL_STATE(4052)] = 227663, + [SMALL_STATE(4053)] = 227735, + [SMALL_STATE(4054)] = 227807, + [SMALL_STATE(4055)] = 227881, + [SMALL_STATE(4056)] = 227949, + [SMALL_STATE(4057)] = 228023, + [SMALL_STATE(4058)] = 228097, + [SMALL_STATE(4059)] = 228171, + [SMALL_STATE(4060)] = 228239, + [SMALL_STATE(4061)] = 228313, + [SMALL_STATE(4062)] = 228387, + [SMALL_STATE(4063)] = 228461, + [SMALL_STATE(4064)] = 228535, + [SMALL_STATE(4065)] = 228609, + [SMALL_STATE(4066)] = 228677, + [SMALL_STATE(4067)] = 228751, + [SMALL_STATE(4068)] = 228825, + [SMALL_STATE(4069)] = 228899, + [SMALL_STATE(4070)] = 228973, + [SMALL_STATE(4071)] = 229047, + [SMALL_STATE(4072)] = 229115, + [SMALL_STATE(4073)] = 229189, + [SMALL_STATE(4074)] = 229263, + [SMALL_STATE(4075)] = 229337, + [SMALL_STATE(4076)] = 229405, + [SMALL_STATE(4077)] = 229479, + [SMALL_STATE(4078)] = 229547, + [SMALL_STATE(4079)] = 229619, + [SMALL_STATE(4080)] = 229693, + [SMALL_STATE(4081)] = 229761, + [SMALL_STATE(4082)] = 229829, + [SMALL_STATE(4083)] = 229903, + [SMALL_STATE(4084)] = 229977, + [SMALL_STATE(4085)] = 230051, + [SMALL_STATE(4086)] = 230125, + [SMALL_STATE(4087)] = 230193, + [SMALL_STATE(4088)] = 230261, + [SMALL_STATE(4089)] = 230329, + [SMALL_STATE(4090)] = 230397, + [SMALL_STATE(4091)] = 230471, + [SMALL_STATE(4092)] = 230545, + [SMALL_STATE(4093)] = 230613, + [SMALL_STATE(4094)] = 230687, + [SMALL_STATE(4095)] = 230755, + [SMALL_STATE(4096)] = 230823, + [SMALL_STATE(4097)] = 230897, + [SMALL_STATE(4098)] = 230965, + [SMALL_STATE(4099)] = 231039, + [SMALL_STATE(4100)] = 231107, + [SMALL_STATE(4101)] = 231175, + [SMALL_STATE(4102)] = 231249, + [SMALL_STATE(4103)] = 231323, + [SMALL_STATE(4104)] = 231397, + [SMALL_STATE(4105)] = 231465, + [SMALL_STATE(4106)] = 231533, + [SMALL_STATE(4107)] = 231601, + [SMALL_STATE(4108)] = 231673, + [SMALL_STATE(4109)] = 231747, + [SMALL_STATE(4110)] = 231819, + [SMALL_STATE(4111)] = 231893, + [SMALL_STATE(4112)] = 231965, + [SMALL_STATE(4113)] = 232039, + [SMALL_STATE(4114)] = 232107, + [SMALL_STATE(4115)] = 232181, + [SMALL_STATE(4116)] = 232253, + [SMALL_STATE(4117)] = 232321, + [SMALL_STATE(4118)] = 232389, + [SMALL_STATE(4119)] = 232461, + [SMALL_STATE(4120)] = 232533, + [SMALL_STATE(4121)] = 232607, + [SMALL_STATE(4122)] = 232681, + [SMALL_STATE(4123)] = 232753, + [SMALL_STATE(4124)] = 232827, + [SMALL_STATE(4125)] = 232901, + [SMALL_STATE(4126)] = 232973, + [SMALL_STATE(4127)] = 233045, + [SMALL_STATE(4128)] = 233113, + [SMALL_STATE(4129)] = 233181, + [SMALL_STATE(4130)] = 233249, + [SMALL_STATE(4131)] = 233323, + [SMALL_STATE(4132)] = 233397, + [SMALL_STATE(4133)] = 233471, + [SMALL_STATE(4134)] = 233539, + [SMALL_STATE(4135)] = 233613, + [SMALL_STATE(4136)] = 233687, + [SMALL_STATE(4137)] = 233761, + [SMALL_STATE(4138)] = 233835, + [SMALL_STATE(4139)] = 233907, + [SMALL_STATE(4140)] = 233975, + [SMALL_STATE(4141)] = 234043, + [SMALL_STATE(4142)] = 234111, + [SMALL_STATE(4143)] = 234185, + [SMALL_STATE(4144)] = 234259, + [SMALL_STATE(4145)] = 234333, + [SMALL_STATE(4146)] = 234407, + [SMALL_STATE(4147)] = 234481, + [SMALL_STATE(4148)] = 234555, + [SMALL_STATE(4149)] = 234629, + [SMALL_STATE(4150)] = 234703, + [SMALL_STATE(4151)] = 234777, + [SMALL_STATE(4152)] = 234851, + [SMALL_STATE(4153)] = 234923, + [SMALL_STATE(4154)] = 234991, + [SMALL_STATE(4155)] = 235065, + [SMALL_STATE(4156)] = 235139, + [SMALL_STATE(4157)] = 235207, + [SMALL_STATE(4158)] = 235275, + [SMALL_STATE(4159)] = 235343, + [SMALL_STATE(4160)] = 235411, + [SMALL_STATE(4161)] = 235479, + [SMALL_STATE(4162)] = 235547, + [SMALL_STATE(4163)] = 235615, + [SMALL_STATE(4164)] = 235683, + [SMALL_STATE(4165)] = 235757, + [SMALL_STATE(4166)] = 235829, + [SMALL_STATE(4167)] = 235903, + [SMALL_STATE(4168)] = 235975, + [SMALL_STATE(4169)] = 236043, + [SMALL_STATE(4170)] = 236117, + [SMALL_STATE(4171)] = 236189, + [SMALL_STATE(4172)] = 236257, + [SMALL_STATE(4173)] = 236325, + [SMALL_STATE(4174)] = 236393, + [SMALL_STATE(4175)] = 236465, + [SMALL_STATE(4176)] = 236539, + [SMALL_STATE(4177)] = 236613, + [SMALL_STATE(4178)] = 236681, + [SMALL_STATE(4179)] = 236749, + [SMALL_STATE(4180)] = 236817, + [SMALL_STATE(4181)] = 236885, + [SMALL_STATE(4182)] = 236953, + [SMALL_STATE(4183)] = 237025, + [SMALL_STATE(4184)] = 237099, + [SMALL_STATE(4185)] = 237173, + [SMALL_STATE(4186)] = 237247, + [SMALL_STATE(4187)] = 237319, + [SMALL_STATE(4188)] = 237387, + [SMALL_STATE(4189)] = 237459, + [SMALL_STATE(4190)] = 237531, + [SMALL_STATE(4191)] = 237605, + [SMALL_STATE(4192)] = 237673, + [SMALL_STATE(4193)] = 237747, + [SMALL_STATE(4194)] = 237821, + [SMALL_STATE(4195)] = 237895, + [SMALL_STATE(4196)] = 237969, + [SMALL_STATE(4197)] = 238043, + [SMALL_STATE(4198)] = 238111, + [SMALL_STATE(4199)] = 238179, + [SMALL_STATE(4200)] = 238247, + [SMALL_STATE(4201)] = 238321, + [SMALL_STATE(4202)] = 238395, + [SMALL_STATE(4203)] = 238469, + [SMALL_STATE(4204)] = 238537, + [SMALL_STATE(4205)] = 238611, + [SMALL_STATE(4206)] = 238685, + [SMALL_STATE(4207)] = 238759, + [SMALL_STATE(4208)] = 238833, + [SMALL_STATE(4209)] = 238907, + [SMALL_STATE(4210)] = 238981, + [SMALL_STATE(4211)] = 239055, + [SMALL_STATE(4212)] = 239129, + [SMALL_STATE(4213)] = 239203, + [SMALL_STATE(4214)] = 239271, + [SMALL_STATE(4215)] = 239339, + [SMALL_STATE(4216)] = 239413, + [SMALL_STATE(4217)] = 239460, + [SMALL_STATE(4218)] = 239535, + [SMALL_STATE(4219)] = 239578, + [SMALL_STATE(4220)] = 239653, + [SMALL_STATE(4221)] = 239728, + [SMALL_STATE(4222)] = 239793, + [SMALL_STATE(4223)] = 239836, + [SMALL_STATE(4224)] = 239893, + [SMALL_STATE(4225)] = 239938, + [SMALL_STATE(4226)] = 239995, + [SMALL_STATE(4227)] = 240070, + [SMALL_STATE(4228)] = 240113, + [SMALL_STATE(4229)] = 240160, + [SMALL_STATE(4230)] = 240202, + [SMALL_STATE(4231)] = 240244, + [SMALL_STATE(4232)] = 240286, + [SMALL_STATE(4233)] = 240328, + [SMALL_STATE(4234)] = 240370, + [SMALL_STATE(4235)] = 240412, + [SMALL_STATE(4236)] = 240458, + [SMALL_STATE(4237)] = 240530, + [SMALL_STATE(4238)] = 240572, + [SMALL_STATE(4239)] = 240614, + [SMALL_STATE(4240)] = 240670, + [SMALL_STATE(4241)] = 240712, + [SMALL_STATE(4242)] = 240784, + [SMALL_STATE(4243)] = 240826, + [SMALL_STATE(4244)] = 240898, + [SMALL_STATE(4245)] = 240940, + [SMALL_STATE(4246)] = 240982, + [SMALL_STATE(4247)] = 241024, + [SMALL_STATE(4248)] = 241066, + [SMALL_STATE(4249)] = 241108, + [SMALL_STATE(4250)] = 241164, + [SMALL_STATE(4251)] = 241210, + [SMALL_STATE(4252)] = 241252, + [SMALL_STATE(4253)] = 241294, + [SMALL_STATE(4254)] = 241336, + [SMALL_STATE(4255)] = 241380, + [SMALL_STATE(4256)] = 241422, + [SMALL_STATE(4257)] = 241464, + [SMALL_STATE(4258)] = 241506, + [SMALL_STATE(4259)] = 241548, + [SMALL_STATE(4260)] = 241590, + [SMALL_STATE(4261)] = 241632, + [SMALL_STATE(4262)] = 241671, + [SMALL_STATE(4263)] = 241710, + [SMALL_STATE(4264)] = 241745, + [SMALL_STATE(4265)] = 241780, + [SMALL_STATE(4266)] = 241815, + [SMALL_STATE(4267)] = 241856, + [SMALL_STATE(4268)] = 241891, + [SMALL_STATE(4269)] = 241932, + [SMALL_STATE(4270)] = 241973, + [SMALL_STATE(4271)] = 242014, + [SMALL_STATE(4272)] = 242055, + [SMALL_STATE(4273)] = 242096, + [SMALL_STATE(4274)] = 242141, + [SMALL_STATE(4275)] = 242182, + [SMALL_STATE(4276)] = 242217, + [SMALL_STATE(4277)] = 242258, + [SMALL_STATE(4278)] = 242297, + [SMALL_STATE(4279)] = 242342, + [SMALL_STATE(4280)] = 242387, + [SMALL_STATE(4281)] = 242422, + [SMALL_STATE(4282)] = 242465, + [SMALL_STATE(4283)] = 242506, + [SMALL_STATE(4284)] = 242551, + [SMALL_STATE(4285)] = 242592, + [SMALL_STATE(4286)] = 242627, + [SMALL_STATE(4287)] = 242668, + [SMALL_STATE(4288)] = 242707, + [SMALL_STATE(4289)] = 242742, + [SMALL_STATE(4290)] = 242785, + [SMALL_STATE(4291)] = 242824, + [SMALL_STATE(4292)] = 242861, + [SMALL_STATE(4293)] = 242902, + [SMALL_STATE(4294)] = 242939, + [SMALL_STATE(4295)] = 242978, + [SMALL_STATE(4296)] = 243013, + [SMALL_STATE(4297)] = 243054, + [SMALL_STATE(4298)] = 243095, + [SMALL_STATE(4299)] = 243130, + [SMALL_STATE(4300)] = 243171, + [SMALL_STATE(4301)] = 243206, + [SMALL_STATE(4302)] = 243241, + [SMALL_STATE(4303)] = 243276, + [SMALL_STATE(4304)] = 243311, + [SMALL_STATE(4305)] = 243352, + [SMALL_STATE(4306)] = 243391, + [SMALL_STATE(4307)] = 243426, + [SMALL_STATE(4308)] = 243461, + [SMALL_STATE(4309)] = 243496, + [SMALL_STATE(4310)] = 243537, + [SMALL_STATE(4311)] = 243578, + [SMALL_STATE(4312)] = 243613, + [SMALL_STATE(4313)] = 243668, + [SMALL_STATE(4314)] = 243703, + [SMALL_STATE(4315)] = 243758, + [SMALL_STATE(4316)] = 243799, + [SMALL_STATE(4317)] = 243834, + [SMALL_STATE(4318)] = 243869, + [SMALL_STATE(4319)] = 243904, + [SMALL_STATE(4320)] = 243945, + [SMALL_STATE(4321)] = 243980, + [SMALL_STATE(4322)] = 244035, + [SMALL_STATE(4323)] = 244070, + [SMALL_STATE(4324)] = 244105, + [SMALL_STATE(4325)] = 244144, + [SMALL_STATE(4326)] = 244179, + [SMALL_STATE(4327)] = 244214, + [SMALL_STATE(4328)] = 244249, + [SMALL_STATE(4329)] = 244284, + [SMALL_STATE(4330)] = 244319, + [SMALL_STATE(4331)] = 244354, + [SMALL_STATE(4332)] = 244395, + [SMALL_STATE(4333)] = 244430, + [SMALL_STATE(4334)] = 244465, + [SMALL_STATE(4335)] = 244500, + [SMALL_STATE(4336)] = 244535, + [SMALL_STATE(4337)] = 244570, + [SMALL_STATE(4338)] = 244605, + [SMALL_STATE(4339)] = 244640, + [SMALL_STATE(4340)] = 244677, + [SMALL_STATE(4341)] = 244712, + [SMALL_STATE(4342)] = 244763, + [SMALL_STATE(4343)] = 244802, + [SMALL_STATE(4344)] = 244837, + [SMALL_STATE(4345)] = 244874, + [SMALL_STATE(4346)] = 244915, + [SMALL_STATE(4347)] = 244960, + [SMALL_STATE(4348)] = 244999, + [SMALL_STATE(4349)] = 245034, + [SMALL_STATE(4350)] = 245085, + [SMALL_STATE(4351)] = 245126, + [SMALL_STATE(4352)] = 245165, + [SMALL_STATE(4353)] = 245206, + [SMALL_STATE(4354)] = 245247, + [SMALL_STATE(4355)] = 245282, + [SMALL_STATE(4356)] = 245317, + [SMALL_STATE(4357)] = 245352, + [SMALL_STATE(4358)] = 245387, + [SMALL_STATE(4359)] = 245428, + [SMALL_STATE(4360)] = 245469, + [SMALL_STATE(4361)] = 245504, + [SMALL_STATE(4362)] = 245545, + [SMALL_STATE(4363)] = 245586, + [SMALL_STATE(4364)] = 245623, + [SMALL_STATE(4365)] = 245664, + [SMALL_STATE(4366)] = 245699, + [SMALL_STATE(4367)] = 245734, + [SMALL_STATE(4368)] = 245769, + [SMALL_STATE(4369)] = 245808, + [SMALL_STATE(4370)] = 245843, + [SMALL_STATE(4371)] = 245884, + [SMALL_STATE(4372)] = 245929, + [SMALL_STATE(4373)] = 245964, + [SMALL_STATE(4374)] = 245999, + [SMALL_STATE(4375)] = 246034, + [SMALL_STATE(4376)] = 246075, + [SMALL_STATE(4377)] = 246118, + [SMALL_STATE(4378)] = 246153, + [SMALL_STATE(4379)] = 246188, + [SMALL_STATE(4380)] = 246223, + [SMALL_STATE(4381)] = 246264, + [SMALL_STATE(4382)] = 246305, + [SMALL_STATE(4383)] = 246344, + [SMALL_STATE(4384)] = 246383, + [SMALL_STATE(4385)] = 246418, + [SMALL_STATE(4386)] = 246453, + [SMALL_STATE(4387)] = 246488, + [SMALL_STATE(4388)] = 246533, + [SMALL_STATE(4389)] = 246568, + [SMALL_STATE(4390)] = 246603, + [SMALL_STATE(4391)] = 246644, + [SMALL_STATE(4392)] = 246679, + [SMALL_STATE(4393)] = 246714, + [SMALL_STATE(4394)] = 246749, + [SMALL_STATE(4395)] = 246788, + [SMALL_STATE(4396)] = 246823, + [SMALL_STATE(4397)] = 246878, + [SMALL_STATE(4398)] = 246933, + [SMALL_STATE(4399)] = 246968, + [SMALL_STATE(4400)] = 247003, + [SMALL_STATE(4401)] = 247058, + [SMALL_STATE(4402)] = 247099, + [SMALL_STATE(4403)] = 247134, + [SMALL_STATE(4404)] = 247169, + [SMALL_STATE(4405)] = 247204, + [SMALL_STATE(4406)] = 247239, + [SMALL_STATE(4407)] = 247280, + [SMALL_STATE(4408)] = 247315, + [SMALL_STATE(4409)] = 247350, + [SMALL_STATE(4410)] = 247385, + [SMALL_STATE(4411)] = 247426, + [SMALL_STATE(4412)] = 247461, + [SMALL_STATE(4413)] = 247496, + [SMALL_STATE(4414)] = 247537, + [SMALL_STATE(4415)] = 247578, + [SMALL_STATE(4416)] = 247630, + [SMALL_STATE(4417)] = 247680, + [SMALL_STATE(4418)] = 247714, + [SMALL_STATE(4419)] = 247754, + [SMALL_STATE(4420)] = 247788, + [SMALL_STATE(4421)] = 247832, + [SMALL_STATE(4422)] = 247870, + [SMALL_STATE(4423)] = 247910, + [SMALL_STATE(4424)] = 247944, + [SMALL_STATE(4425)] = 247978, + [SMALL_STATE(4426)] = 248012, + [SMALL_STATE(4427)] = 248046, + [SMALL_STATE(4428)] = 248080, + [SMALL_STATE(4429)] = 248116, + [SMALL_STATE(4430)] = 248150, + [SMALL_STATE(4431)] = 248190, + [SMALL_STATE(4432)] = 248228, + [SMALL_STATE(4433)] = 248262, + [SMALL_STATE(4434)] = 248312, + [SMALL_STATE(4435)] = 248346, + [SMALL_STATE(4436)] = 248380, + [SMALL_STATE(4437)] = 248414, + [SMALL_STATE(4438)] = 248448, + [SMALL_STATE(4439)] = 248482, + [SMALL_STATE(4440)] = 248522, + [SMALL_STATE(4441)] = 248562, + [SMALL_STATE(4442)] = 248596, + [SMALL_STATE(4443)] = 248630, + [SMALL_STATE(4444)] = 248664, + [SMALL_STATE(4445)] = 248698, + [SMALL_STATE(4446)] = 248732, + [SMALL_STATE(4447)] = 248766, + [SMALL_STATE(4448)] = 248800, + [SMALL_STATE(4449)] = 248834, + [SMALL_STATE(4450)] = 248868, + [SMALL_STATE(4451)] = 248908, + [SMALL_STATE(4452)] = 248942, + [SMALL_STATE(4453)] = 248982, + [SMALL_STATE(4454)] = 249022, + [SMALL_STATE(4455)] = 249056, + [SMALL_STATE(4456)] = 249100, + [SMALL_STATE(4457)] = 249134, + [SMALL_STATE(4458)] = 249168, + [SMALL_STATE(4459)] = 249208, + [SMALL_STATE(4460)] = 249248, + [SMALL_STATE(4461)] = 249288, + [SMALL_STATE(4462)] = 249322, + [SMALL_STATE(4463)] = 249360, + [SMALL_STATE(4464)] = 249400, + [SMALL_STATE(4465)] = 249434, + [SMALL_STATE(4466)] = 249478, + [SMALL_STATE(4467)] = 249518, + [SMALL_STATE(4468)] = 249558, + [SMALL_STATE(4469)] = 249598, + [SMALL_STATE(4470)] = 249632, + [SMALL_STATE(4471)] = 249666, + [SMALL_STATE(4472)] = 249706, + [SMALL_STATE(4473)] = 249746, + [SMALL_STATE(4474)] = 249780, + [SMALL_STATE(4475)] = 249814, + [SMALL_STATE(4476)] = 249848, + [SMALL_STATE(4477)] = 249888, + [SMALL_STATE(4478)] = 249928, + [SMALL_STATE(4479)] = 249962, + [SMALL_STATE(4480)] = 250002, + [SMALL_STATE(4481)] = 250046, + [SMALL_STATE(4482)] = 250086, + [SMALL_STATE(4483)] = 250120, + [SMALL_STATE(4484)] = 250158, + [SMALL_STATE(4485)] = 250198, + [SMALL_STATE(4486)] = 250236, + [SMALL_STATE(4487)] = 250276, + [SMALL_STATE(4488)] = 250316, + [SMALL_STATE(4489)] = 250356, + [SMALL_STATE(4490)] = 250408, + [SMALL_STATE(4491)] = 250442, + [SMALL_STATE(4492)] = 250482, + [SMALL_STATE(4493)] = 250520, + [SMALL_STATE(4494)] = 250554, + [SMALL_STATE(4495)] = 250588, + [SMALL_STATE(4496)] = 250628, + [SMALL_STATE(4497)] = 250662, + [SMALL_STATE(4498)] = 250696, + [SMALL_STATE(4499)] = 250734, + [SMALL_STATE(4500)] = 250768, + [SMALL_STATE(4501)] = 250806, + [SMALL_STATE(4502)] = 250840, + [SMALL_STATE(4503)] = 250874, + [SMALL_STATE(4504)] = 250908, + [SMALL_STATE(4505)] = 250948, + [SMALL_STATE(4506)] = 250988, + [SMALL_STATE(4507)] = 251028, + [SMALL_STATE(4508)] = 251066, + [SMALL_STATE(4509)] = 251100, + [SMALL_STATE(4510)] = 251134, + [SMALL_STATE(4511)] = 251174, + [SMALL_STATE(4512)] = 251214, + [SMALL_STATE(4513)] = 251248, + [SMALL_STATE(4514)] = 251288, + [SMALL_STATE(4515)] = 251328, + [SMALL_STATE(4516)] = 251362, + [SMALL_STATE(4517)] = 251396, + [SMALL_STATE(4518)] = 251440, + [SMALL_STATE(4519)] = 251480, + [SMALL_STATE(4520)] = 251520, + [SMALL_STATE(4521)] = 251560, + [SMALL_STATE(4522)] = 251598, + [SMALL_STATE(4523)] = 251638, + [SMALL_STATE(4524)] = 251678, + [SMALL_STATE(4525)] = 251718, + [SMALL_STATE(4526)] = 251758, + [SMALL_STATE(4527)] = 251792, + [SMALL_STATE(4528)] = 251830, + [SMALL_STATE(4529)] = 251868, + [SMALL_STATE(4530)] = 251908, + [SMALL_STATE(4531)] = 251952, + [SMALL_STATE(4532)] = 251992, + [SMALL_STATE(4533)] = 252026, + [SMALL_STATE(4534)] = 252064, + [SMALL_STATE(4535)] = 252104, + [SMALL_STATE(4536)] = 252144, + [SMALL_STATE(4537)] = 252178, + [SMALL_STATE(4538)] = 252212, + [SMALL_STATE(4539)] = 252250, + [SMALL_STATE(4540)] = 252284, + [SMALL_STATE(4541)] = 252318, + [SMALL_STATE(4542)] = 252352, + [SMALL_STATE(4543)] = 252386, + [SMALL_STATE(4544)] = 252420, + [SMALL_STATE(4545)] = 252454, + [SMALL_STATE(4546)] = 252488, + [SMALL_STATE(4547)] = 252526, + [SMALL_STATE(4548)] = 252570, + [SMALL_STATE(4549)] = 252604, + [SMALL_STATE(4550)] = 252648, + [SMALL_STATE(4551)] = 252688, + [SMALL_STATE(4552)] = 252740, + [SMALL_STATE(4553)] = 252774, + [SMALL_STATE(4554)] = 252808, + [SMALL_STATE(4555)] = 252846, + [SMALL_STATE(4556)] = 252886, + [SMALL_STATE(4557)] = 252920, + [SMALL_STATE(4558)] = 252954, + [SMALL_STATE(4559)] = 252994, + [SMALL_STATE(4560)] = 253034, + [SMALL_STATE(4561)] = 253068, + [SMALL_STATE(4562)] = 253102, + [SMALL_STATE(4563)] = 253142, + [SMALL_STATE(4564)] = 253176, + [SMALL_STATE(4565)] = 253210, + [SMALL_STATE(4566)] = 253250, + [SMALL_STATE(4567)] = 253284, + [SMALL_STATE(4568)] = 253336, + [SMALL_STATE(4569)] = 253376, + [SMALL_STATE(4570)] = 253410, + [SMALL_STATE(4571)] = 253452, + [SMALL_STATE(4572)] = 253496, + [SMALL_STATE(4573)] = 253530, + [SMALL_STATE(4574)] = 253574, + [SMALL_STATE(4575)] = 253614, + [SMALL_STATE(4576)] = 253648, + [SMALL_STATE(4577)] = 253682, + [SMALL_STATE(4578)] = 253716, + [SMALL_STATE(4579)] = 253756, + [SMALL_STATE(4580)] = 253796, + [SMALL_STATE(4581)] = 253840, + [SMALL_STATE(4582)] = 253880, + [SMALL_STATE(4583)] = 253920, + [SMALL_STATE(4584)] = 253960, + [SMALL_STATE(4585)] = 254000, + [SMALL_STATE(4586)] = 254040, + [SMALL_STATE(4587)] = 254080, + [SMALL_STATE(4588)] = 254114, + [SMALL_STATE(4589)] = 254148, + [SMALL_STATE(4590)] = 254188, + [SMALL_STATE(4591)] = 254222, + [SMALL_STATE(4592)] = 254262, + [SMALL_STATE(4593)] = 254302, + [SMALL_STATE(4594)] = 254342, + [SMALL_STATE(4595)] = 254382, + [SMALL_STATE(4596)] = 254416, + [SMALL_STATE(4597)] = 254454, + [SMALL_STATE(4598)] = 254492, + [SMALL_STATE(4599)] = 254526, + [SMALL_STATE(4600)] = 254566, + [SMALL_STATE(4601)] = 254600, + [SMALL_STATE(4602)] = 254640, + [SMALL_STATE(4603)] = 254680, + [SMALL_STATE(4604)] = 254720, + [SMALL_STATE(4605)] = 254760, + [SMALL_STATE(4606)] = 254794, + [SMALL_STATE(4607)] = 254828, + [SMALL_STATE(4608)] = 254861, + [SMALL_STATE(4609)] = 254896, + [SMALL_STATE(4610)] = 254929, + [SMALL_STATE(4611)] = 254962, + [SMALL_STATE(4612)] = 255001, + [SMALL_STATE(4613)] = 255034, + [SMALL_STATE(4614)] = 255067, + [SMALL_STATE(4615)] = 255106, + [SMALL_STATE(4616)] = 255139, + [SMALL_STATE(4617)] = 255176, + [SMALL_STATE(4618)] = 255209, + [SMALL_STATE(4619)] = 255242, + [SMALL_STATE(4620)] = 255281, + [SMALL_STATE(4621)] = 255328, + [SMALL_STATE(4622)] = 255367, + [SMALL_STATE(4623)] = 255406, + [SMALL_STATE(4624)] = 255439, + [SMALL_STATE(4625)] = 255498, + [SMALL_STATE(4626)] = 255541, + [SMALL_STATE(4627)] = 255580, + [SMALL_STATE(4628)] = 255619, + [SMALL_STATE(4629)] = 255652, + [SMALL_STATE(4630)] = 255711, + [SMALL_STATE(4631)] = 255750, + [SMALL_STATE(4632)] = 255783, + [SMALL_STATE(4633)] = 255816, + [SMALL_STATE(4634)] = 255855, + [SMALL_STATE(4635)] = 255894, + [SMALL_STATE(4636)] = 255933, + [SMALL_STATE(4637)] = 255966, + [SMALL_STATE(4638)] = 255999, + [SMALL_STATE(4639)] = 256032, + [SMALL_STATE(4640)] = 256065, + [SMALL_STATE(4641)] = 256104, + [SMALL_STATE(4642)] = 256163, + [SMALL_STATE(4643)] = 256196, + [SMALL_STATE(4644)] = 256229, + [SMALL_STATE(4645)] = 256272, + [SMALL_STATE(4646)] = 256309, + [SMALL_STATE(4647)] = 256374, + [SMALL_STATE(4648)] = 256407, + [SMALL_STATE(4649)] = 256440, + [SMALL_STATE(4650)] = 256499, + [SMALL_STATE(4651)] = 256542, + [SMALL_STATE(4652)] = 256607, + [SMALL_STATE(4653)] = 256666, + [SMALL_STATE(4654)] = 256699, + [SMALL_STATE(4655)] = 256758, + [SMALL_STATE(4656)] = 256791, + [SMALL_STATE(4657)] = 256824, + [SMALL_STATE(4658)] = 256883, + [SMALL_STATE(4659)] = 256942, + [SMALL_STATE(4660)] = 256985, + [SMALL_STATE(4661)] = 257044, + [SMALL_STATE(4662)] = 257103, + [SMALL_STATE(4663)] = 257152, + [SMALL_STATE(4664)] = 257201, + [SMALL_STATE(4665)] = 257238, + [SMALL_STATE(4666)] = 257281, + [SMALL_STATE(4667)] = 257314, + [SMALL_STATE(4668)] = 257357, + [SMALL_STATE(4669)] = 257416, + [SMALL_STATE(4670)] = 257455, + [SMALL_STATE(4671)] = 257488, + [SMALL_STATE(4672)] = 257547, + [SMALL_STATE(4673)] = 257606, + [SMALL_STATE(4674)] = 257645, + [SMALL_STATE(4675)] = 257684, + [SMALL_STATE(4676)] = 257743, + [SMALL_STATE(4677)] = 257802, + [SMALL_STATE(4678)] = 257861, + [SMALL_STATE(4679)] = 257920, + [SMALL_STATE(4680)] = 257979, + [SMALL_STATE(4681)] = 258038, + [SMALL_STATE(4682)] = 258097, + [SMALL_STATE(4683)] = 258156, + [SMALL_STATE(4684)] = 258195, + [SMALL_STATE(4685)] = 258234, + [SMALL_STATE(4686)] = 258277, + [SMALL_STATE(4687)] = 258336, + [SMALL_STATE(4688)] = 258375, + [SMALL_STATE(4689)] = 258408, + [SMALL_STATE(4690)] = 258447, + [SMALL_STATE(4691)] = 258506, + [SMALL_STATE(4692)] = 258565, + [SMALL_STATE(4693)] = 258604, + [SMALL_STATE(4694)] = 258663, + [SMALL_STATE(4695)] = 258722, + [SMALL_STATE(4696)] = 258759, + [SMALL_STATE(4697)] = 258818, + [SMALL_STATE(4698)] = 258861, + [SMALL_STATE(4699)] = 258900, + [SMALL_STATE(4700)] = 258939, + [SMALL_STATE(4701)] = 259004, + [SMALL_STATE(4702)] = 259037, + [SMALL_STATE(4703)] = 259070, + [SMALL_STATE(4704)] = 259129, + [SMALL_STATE(4705)] = 259166, + [SMALL_STATE(4706)] = 259205, + [SMALL_STATE(4707)] = 259238, + [SMALL_STATE(4708)] = 259297, + [SMALL_STATE(4709)] = 259330, + [SMALL_STATE(4710)] = 259363, + [SMALL_STATE(4711)] = 259406, + [SMALL_STATE(4712)] = 259445, + [SMALL_STATE(4713)] = 259478, + [SMALL_STATE(4714)] = 259537, + [SMALL_STATE(4715)] = 259596, + [SMALL_STATE(4716)] = 259655, + [SMALL_STATE(4717)] = 259690, + [SMALL_STATE(4718)] = 259727, + [SMALL_STATE(4719)] = 259786, + [SMALL_STATE(4720)] = 259829, + [SMALL_STATE(4721)] = 259888, + [SMALL_STATE(4722)] = 259953, + [SMALL_STATE(4723)] = 259990, + [SMALL_STATE(4724)] = 260033, + [SMALL_STATE(4725)] = 260068, + [SMALL_STATE(4726)] = 260111, + [SMALL_STATE(4727)] = 260144, + [SMALL_STATE(4728)] = 260177, + [SMALL_STATE(4729)] = 260236, + [SMALL_STATE(4730)] = 260295, + [SMALL_STATE(4731)] = 260354, + [SMALL_STATE(4732)] = 260413, + [SMALL_STATE(4733)] = 260472, + [SMALL_STATE(4734)] = 260511, + [SMALL_STATE(4735)] = 260554, + [SMALL_STATE(4736)] = 260587, + [SMALL_STATE(4737)] = 260620, + [SMALL_STATE(4738)] = 260679, + [SMALL_STATE(4739)] = 260738, + [SMALL_STATE(4740)] = 260771, + [SMALL_STATE(4741)] = 260830, + [SMALL_STATE(4742)] = 260895, + [SMALL_STATE(4743)] = 260960, + [SMALL_STATE(4744)] = 261025, + [SMALL_STATE(4745)] = 261084, + [SMALL_STATE(4746)] = 261121, + [SMALL_STATE(4747)] = 261164, + [SMALL_STATE(4748)] = 261207, + [SMALL_STATE(4749)] = 261246, + [SMALL_STATE(4750)] = 261305, + [SMALL_STATE(4751)] = 261344, + [SMALL_STATE(4752)] = 261403, + [SMALL_STATE(4753)] = 261462, + [SMALL_STATE(4754)] = 261495, + [SMALL_STATE(4755)] = 261534, + [SMALL_STATE(4756)] = 261567, + [SMALL_STATE(4757)] = 261626, + [SMALL_STATE(4758)] = 261691, + [SMALL_STATE(4759)] = 261734, + [SMALL_STATE(4760)] = 261767, + [SMALL_STATE(4761)] = 261806, + [SMALL_STATE(4762)] = 261865, + [SMALL_STATE(4763)] = 261898, + [SMALL_STATE(4764)] = 261957, + [SMALL_STATE(4765)] = 262016, + [SMALL_STATE(4766)] = 262075, + [SMALL_STATE(4767)] = 262108, + [SMALL_STATE(4768)] = 262145, + [SMALL_STATE(4769)] = 262204, + [SMALL_STATE(4770)] = 262237, + [SMALL_STATE(4771)] = 262270, + [SMALL_STATE(4772)] = 262309, + [SMALL_STATE(4773)] = 262342, + [SMALL_STATE(4774)] = 262401, + [SMALL_STATE(4775)] = 262440, + [SMALL_STATE(4776)] = 262479, + [SMALL_STATE(4777)] = 262518, + [SMALL_STATE(4778)] = 262557, + [SMALL_STATE(4779)] = 262606, + [SMALL_STATE(4780)] = 262665, + [SMALL_STATE(4781)] = 262698, + [SMALL_STATE(4782)] = 262737, + [SMALL_STATE(4783)] = 262770, + [SMALL_STATE(4784)] = 262809, + [SMALL_STATE(4785)] = 262848, + [SMALL_STATE(4786)] = 262881, + [SMALL_STATE(4787)] = 262914, + [SMALL_STATE(4788)] = 262953, + [SMALL_STATE(4789)] = 262986, + [SMALL_STATE(4790)] = 263019, + [SMALL_STATE(4791)] = 263052, + [SMALL_STATE(4792)] = 263111, + [SMALL_STATE(4793)] = 263158, + [SMALL_STATE(4794)] = 263207, + [SMALL_STATE(4795)] = 263244, + [SMALL_STATE(4796)] = 263283, + [SMALL_STATE(4797)] = 263316, + [SMALL_STATE(4798)] = 263365, + [SMALL_STATE(4799)] = 263424, + [SMALL_STATE(4800)] = 263483, + [SMALL_STATE(4801)] = 263542, + [SMALL_STATE(4802)] = 263575, + [SMALL_STATE(4803)] = 263614, + [SMALL_STATE(4804)] = 263679, + [SMALL_STATE(4805)] = 263712, + [SMALL_STATE(4806)] = 263745, + [SMALL_STATE(4807)] = 263784, + [SMALL_STATE(4808)] = 263817, + [SMALL_STATE(4809)] = 263850, + [SMALL_STATE(4810)] = 263909, + [SMALL_STATE(4811)] = 263942, + [SMALL_STATE(4812)] = 263975, + [SMALL_STATE(4813)] = 264008, + [SMALL_STATE(4814)] = 264067, + [SMALL_STATE(4815)] = 264126, + [SMALL_STATE(4816)] = 264185, + [SMALL_STATE(4817)] = 264224, + [SMALL_STATE(4818)] = 264283, + [SMALL_STATE(4819)] = 264316, + [SMALL_STATE(4820)] = 264375, + [SMALL_STATE(4821)] = 264408, + [SMALL_STATE(4822)] = 264441, + [SMALL_STATE(4823)] = 264480, + [SMALL_STATE(4824)] = 264539, + [SMALL_STATE(4825)] = 264576, + [SMALL_STATE(4826)] = 264609, + [SMALL_STATE(4827)] = 264668, + [SMALL_STATE(4828)] = 264701, + [SMALL_STATE(4829)] = 264740, + [SMALL_STATE(4830)] = 264783, + [SMALL_STATE(4831)] = 264842, + [SMALL_STATE(4832)] = 264875, + [SMALL_STATE(4833)] = 264934, + [SMALL_STATE(4834)] = 264967, + [SMALL_STATE(4835)] = 265006, + [SMALL_STATE(4836)] = 265045, + [SMALL_STATE(4837)] = 265104, + [SMALL_STATE(4838)] = 265137, + [SMALL_STATE(4839)] = 265176, + [SMALL_STATE(4840)] = 265235, + [SMALL_STATE(4841)] = 265268, + [SMALL_STATE(4842)] = 265327, + [SMALL_STATE(4843)] = 265360, + [SMALL_STATE(4844)] = 265419, + [SMALL_STATE(4845)] = 265452, + [SMALL_STATE(4846)] = 265511, + [SMALL_STATE(4847)] = 265544, + [SMALL_STATE(4848)] = 265577, + [SMALL_STATE(4849)] = 265636, + [SMALL_STATE(4850)] = 265669, + [SMALL_STATE(4851)] = 265728, + [SMALL_STATE(4852)] = 265787, + [SMALL_STATE(4853)] = 265820, + [SMALL_STATE(4854)] = 265853, + [SMALL_STATE(4855)] = 265912, + [SMALL_STATE(4856)] = 265949, + [SMALL_STATE(4857)] = 265982, + [SMALL_STATE(4858)] = 266041, + [SMALL_STATE(4859)] = 266074, + [SMALL_STATE(4860)] = 266107, + [SMALL_STATE(4861)] = 266156, + [SMALL_STATE(4862)] = 266189, + [SMALL_STATE(4863)] = 266222, + [SMALL_STATE(4864)] = 266281, + [SMALL_STATE(4865)] = 266313, + [SMALL_STATE(4866)] = 266345, + [SMALL_STATE(4867)] = 266377, + [SMALL_STATE(4868)] = 266409, + [SMALL_STATE(4869)] = 266441, + [SMALL_STATE(4870)] = 266473, + [SMALL_STATE(4871)] = 266505, + [SMALL_STATE(4872)] = 266537, + [SMALL_STATE(4873)] = 266569, + [SMALL_STATE(4874)] = 266601, + [SMALL_STATE(4875)] = 266633, + [SMALL_STATE(4876)] = 266665, + [SMALL_STATE(4877)] = 266697, + [SMALL_STATE(4878)] = 266729, + [SMALL_STATE(4879)] = 266761, + [SMALL_STATE(4880)] = 266793, + [SMALL_STATE(4881)] = 266825, + [SMALL_STATE(4882)] = 266857, + [SMALL_STATE(4883)] = 266889, + [SMALL_STATE(4884)] = 266921, + [SMALL_STATE(4885)] = 266953, + [SMALL_STATE(4886)] = 266985, + [SMALL_STATE(4887)] = 267017, + [SMALL_STATE(4888)] = 267049, + [SMALL_STATE(4889)] = 267081, + [SMALL_STATE(4890)] = 267113, + [SMALL_STATE(4891)] = 267145, + [SMALL_STATE(4892)] = 267207, + [SMALL_STATE(4893)] = 267239, + [SMALL_STATE(4894)] = 267271, + [SMALL_STATE(4895)] = 267303, + [SMALL_STATE(4896)] = 267335, + [SMALL_STATE(4897)] = 267373, + [SMALL_STATE(4898)] = 267411, + [SMALL_STATE(4899)] = 267443, + [SMALL_STATE(4900)] = 267475, + [SMALL_STATE(4901)] = 267507, + [SMALL_STATE(4902)] = 267545, + [SMALL_STATE(4903)] = 267577, + [SMALL_STATE(4904)] = 267609, + [SMALL_STATE(4905)] = 267645, + [SMALL_STATE(4906)] = 267677, + [SMALL_STATE(4907)] = 267715, + [SMALL_STATE(4908)] = 267747, + [SMALL_STATE(4909)] = 267779, + [SMALL_STATE(4910)] = 267811, + [SMALL_STATE(4911)] = 267857, + [SMALL_STATE(4912)] = 267889, + [SMALL_STATE(4913)] = 267921, + [SMALL_STATE(4914)] = 267953, + [SMALL_STATE(4915)] = 267985, + [SMALL_STATE(4916)] = 268017, + [SMALL_STATE(4917)] = 268049, + [SMALL_STATE(4918)] = 268081, + [SMALL_STATE(4919)] = 268143, + [SMALL_STATE(4920)] = 268181, + [SMALL_STATE(4921)] = 268213, + [SMALL_STATE(4922)] = 268251, + [SMALL_STATE(4923)] = 268283, + [SMALL_STATE(4924)] = 268315, + [SMALL_STATE(4925)] = 268377, + [SMALL_STATE(4926)] = 268409, + [SMALL_STATE(4927)] = 268441, + [SMALL_STATE(4928)] = 268473, + [SMALL_STATE(4929)] = 268519, + [SMALL_STATE(4930)] = 268551, + [SMALL_STATE(4931)] = 268583, + [SMALL_STATE(4932)] = 268615, + [SMALL_STATE(4933)] = 268647, + [SMALL_STATE(4934)] = 268679, + [SMALL_STATE(4935)] = 268741, + [SMALL_STATE(4936)] = 268773, + [SMALL_STATE(4937)] = 268805, + [SMALL_STATE(4938)] = 268837, + [SMALL_STATE(4939)] = 268869, + [SMALL_STATE(4940)] = 268915, + [SMALL_STATE(4941)] = 268947, + [SMALL_STATE(4942)] = 268985, + [SMALL_STATE(4943)] = 269021, + [SMALL_STATE(4944)] = 269053, + [SMALL_STATE(4945)] = 269085, + [SMALL_STATE(4946)] = 269117, + [SMALL_STATE(4947)] = 269149, + [SMALL_STATE(4948)] = 269181, + [SMALL_STATE(4949)] = 269213, + [SMALL_STATE(4950)] = 269245, + [SMALL_STATE(4951)] = 269277, + [SMALL_STATE(4952)] = 269323, + [SMALL_STATE(4953)] = 269355, + [SMALL_STATE(4954)] = 269387, + [SMALL_STATE(4955)] = 269419, + [SMALL_STATE(4956)] = 269451, + [SMALL_STATE(4957)] = 269483, + [SMALL_STATE(4958)] = 269515, + [SMALL_STATE(4959)] = 269547, + [SMALL_STATE(4960)] = 269579, + [SMALL_STATE(4961)] = 269611, + [SMALL_STATE(4962)] = 269643, + [SMALL_STATE(4963)] = 269675, + [SMALL_STATE(4964)] = 269707, + [SMALL_STATE(4965)] = 269739, + [SMALL_STATE(4966)] = 269771, + [SMALL_STATE(4967)] = 269803, + [SMALL_STATE(4968)] = 269865, + [SMALL_STATE(4969)] = 269897, + [SMALL_STATE(4970)] = 269929, + [SMALL_STATE(4971)] = 269961, + [SMALL_STATE(4972)] = 269997, + [SMALL_STATE(4973)] = 270059, + [SMALL_STATE(4974)] = 270091, + [SMALL_STATE(4975)] = 270153, + [SMALL_STATE(4976)] = 270189, + [SMALL_STATE(4977)] = 270221, + [SMALL_STATE(4978)] = 270253, + [SMALL_STATE(4979)] = 270285, + [SMALL_STATE(4980)] = 270317, + [SMALL_STATE(4981)] = 270349, + [SMALL_STATE(4982)] = 270381, + [SMALL_STATE(4983)] = 270413, + [SMALL_STATE(4984)] = 270445, + [SMALL_STATE(4985)] = 270477, + [SMALL_STATE(4986)] = 270509, + [SMALL_STATE(4987)] = 270551, + [SMALL_STATE(4988)] = 270583, + [SMALL_STATE(4989)] = 270615, + [SMALL_STATE(4990)] = 270647, + [SMALL_STATE(4991)] = 270679, + [SMALL_STATE(4992)] = 270711, + [SMALL_STATE(4993)] = 270749, + [SMALL_STATE(4994)] = 270795, + [SMALL_STATE(4995)] = 270827, + [SMALL_STATE(4996)] = 270869, + [SMALL_STATE(4997)] = 270905, + [SMALL_STATE(4998)] = 270939, + [SMALL_STATE(4999)] = 270981, + [SMALL_STATE(5000)] = 271043, + [SMALL_STATE(5001)] = 271085, + [SMALL_STATE(5002)] = 271127, + [SMALL_STATE(5003)] = 271159, + [SMALL_STATE(5004)] = 271191, + [SMALL_STATE(5005)] = 271223, + [SMALL_STATE(5006)] = 271255, + [SMALL_STATE(5007)] = 271287, + [SMALL_STATE(5008)] = 271333, + [SMALL_STATE(5009)] = 271365, + [SMALL_STATE(5010)] = 271397, + [SMALL_STATE(5011)] = 271429, + [SMALL_STATE(5012)] = 271461, + [SMALL_STATE(5013)] = 271493, + [SMALL_STATE(5014)] = 271525, + [SMALL_STATE(5015)] = 271557, + [SMALL_STATE(5016)] = 271619, + [SMALL_STATE(5017)] = 271651, + [SMALL_STATE(5018)] = 271683, + [SMALL_STATE(5019)] = 271715, + [SMALL_STATE(5020)] = 271747, + [SMALL_STATE(5021)] = 271779, + [SMALL_STATE(5022)] = 271815, + [SMALL_STATE(5023)] = 271847, + [SMALL_STATE(5024)] = 271879, + [SMALL_STATE(5025)] = 271911, + [SMALL_STATE(5026)] = 271943, + [SMALL_STATE(5027)] = 271975, + [SMALL_STATE(5028)] = 272007, + [SMALL_STATE(5029)] = 272039, + [SMALL_STATE(5030)] = 272071, + [SMALL_STATE(5031)] = 272103, + [SMALL_STATE(5032)] = 272141, + [SMALL_STATE(5033)] = 272173, + [SMALL_STATE(5034)] = 272211, + [SMALL_STATE(5035)] = 272248, + [SMALL_STATE(5036)] = 272279, + [SMALL_STATE(5037)] = 272314, + [SMALL_STATE(5038)] = 272345, + [SMALL_STATE(5039)] = 272380, + [SMALL_STATE(5040)] = 272411, + [SMALL_STATE(5041)] = 272456, + [SMALL_STATE(5042)] = 272491, + [SMALL_STATE(5043)] = 272522, + [SMALL_STATE(5044)] = 272553, + [SMALL_STATE(5045)] = 272584, + [SMALL_STATE(5046)] = 272619, + [SMALL_STATE(5047)] = 272650, + [SMALL_STATE(5048)] = 272681, + [SMALL_STATE(5049)] = 272718, + [SMALL_STATE(5050)] = 272749, + [SMALL_STATE(5051)] = 272780, + [SMALL_STATE(5052)] = 272825, + [SMALL_STATE(5053)] = 272856, + [SMALL_STATE(5054)] = 272887, + [SMALL_STATE(5055)] = 272932, + [SMALL_STATE(5056)] = 272969, + [SMALL_STATE(5057)] = 273008, + [SMALL_STATE(5058)] = 273045, + [SMALL_STATE(5059)] = 273082, + [SMALL_STATE(5060)] = 273119, + [SMALL_STATE(5061)] = 273150, + [SMALL_STATE(5062)] = 273181, + [SMALL_STATE(5063)] = 273218, + [SMALL_STATE(5064)] = 273249, + [SMALL_STATE(5065)] = 273284, + [SMALL_STATE(5066)] = 273321, + [SMALL_STATE(5067)] = 273352, + [SMALL_STATE(5068)] = 273383, + [SMALL_STATE(5069)] = 273414, + [SMALL_STATE(5070)] = 273445, + [SMALL_STATE(5071)] = 273490, + [SMALL_STATE(5072)] = 273521, + [SMALL_STATE(5073)] = 273552, + [SMALL_STATE(5074)] = 273583, + [SMALL_STATE(5075)] = 273614, + [SMALL_STATE(5076)] = 273645, + [SMALL_STATE(5077)] = 273676, + [SMALL_STATE(5078)] = 273707, + [SMALL_STATE(5079)] = 273738, + [SMALL_STATE(5080)] = 273783, + [SMALL_STATE(5081)] = 273814, + [SMALL_STATE(5082)] = 273849, + [SMALL_STATE(5083)] = 273884, + [SMALL_STATE(5084)] = 273915, + [SMALL_STATE(5085)] = 273946, + [SMALL_STATE(5086)] = 273977, + [SMALL_STATE(5087)] = 274008, + [SMALL_STATE(5088)] = 274039, + [SMALL_STATE(5089)] = 274070, + [SMALL_STATE(5090)] = 274101, + [SMALL_STATE(5091)] = 274132, + [SMALL_STATE(5092)] = 274163, + [SMALL_STATE(5093)] = 274194, + [SMALL_STATE(5094)] = 274225, + [SMALL_STATE(5095)] = 274256, + [SMALL_STATE(5096)] = 274291, + [SMALL_STATE(5097)] = 274322, + [SMALL_STATE(5098)] = 274357, + [SMALL_STATE(5099)] = 274388, + [SMALL_STATE(5100)] = 274419, + [SMALL_STATE(5101)] = 274450, + [SMALL_STATE(5102)] = 274481, + [SMALL_STATE(5103)] = 274516, + [SMALL_STATE(5104)] = 274547, + [SMALL_STATE(5105)] = 274578, + [SMALL_STATE(5106)] = 274609, + [SMALL_STATE(5107)] = 274640, + [SMALL_STATE(5108)] = 274671, + [SMALL_STATE(5109)] = 274716, + [SMALL_STATE(5110)] = 274753, + [SMALL_STATE(5111)] = 274790, + [SMALL_STATE(5112)] = 274821, + [SMALL_STATE(5113)] = 274852, + [SMALL_STATE(5114)] = 274883, + [SMALL_STATE(5115)] = 274914, + [SMALL_STATE(5116)] = 274949, + [SMALL_STATE(5117)] = 274980, + [SMALL_STATE(5118)] = 275027, + [SMALL_STATE(5119)] = 275074, + [SMALL_STATE(5120)] = 275105, + [SMALL_STATE(5121)] = 275136, + [SMALL_STATE(5122)] = 275168, + [SMALL_STATE(5123)] = 275210, + [SMALL_STATE(5124)] = 275240, + [SMALL_STATE(5125)] = 275274, + [SMALL_STATE(5126)] = 275306, + [SMALL_STATE(5127)] = 275338, + [SMALL_STATE(5128)] = 275372, + [SMALL_STATE(5129)] = 275408, + [SMALL_STATE(5130)] = 275444, + [SMALL_STATE(5131)] = 275480, + [SMALL_STATE(5132)] = 275516, + [SMALL_STATE(5133)] = 275548, + [SMALL_STATE(5134)] = 275584, + [SMALL_STATE(5135)] = 275620, + [SMALL_STATE(5136)] = 275656, + [SMALL_STATE(5137)] = 275692, + [SMALL_STATE(5138)] = 275728, + [SMALL_STATE(5139)] = 275764, + [SMALL_STATE(5140)] = 275796, + [SMALL_STATE(5141)] = 275830, + [SMALL_STATE(5142)] = 275862, + [SMALL_STATE(5143)] = 275918, + [SMALL_STATE(5144)] = 275950, + [SMALL_STATE(5145)] = 275982, + [SMALL_STATE(5146)] = 276014, + [SMALL_STATE(5147)] = 276046, + [SMALL_STATE(5148)] = 276082, + [SMALL_STATE(5149)] = 276118, + [SMALL_STATE(5150)] = 276148, + [SMALL_STATE(5151)] = 276178, + [SMALL_STATE(5152)] = 276208, + [SMALL_STATE(5153)] = 276238, + [SMALL_STATE(5154)] = 276268, + [SMALL_STATE(5155)] = 276298, + [SMALL_STATE(5156)] = 276328, + [SMALL_STATE(5157)] = 276358, + [SMALL_STATE(5158)] = 276388, + [SMALL_STATE(5159)] = 276418, + [SMALL_STATE(5160)] = 276448, + [SMALL_STATE(5161)] = 276478, + [SMALL_STATE(5162)] = 276508, + [SMALL_STATE(5163)] = 276540, + [SMALL_STATE(5164)] = 276582, + [SMALL_STATE(5165)] = 276614, + [SMALL_STATE(5166)] = 276644, + [SMALL_STATE(5167)] = 276676, + [SMALL_STATE(5168)] = 276718, + [SMALL_STATE(5169)] = 276774, + [SMALL_STATE(5170)] = 276806, + [SMALL_STATE(5171)] = 276840, + [SMALL_STATE(5172)] = 276870, + [SMALL_STATE(5173)] = 276902, + [SMALL_STATE(5174)] = 276936, + [SMALL_STATE(5175)] = 276970, + [SMALL_STATE(5176)] = 277006, + [SMALL_STATE(5177)] = 277046, + [SMALL_STATE(5178)] = 277078, + [SMALL_STATE(5179)] = 277112, + [SMALL_STATE(5180)] = 277146, + [SMALL_STATE(5181)] = 277182, + [SMALL_STATE(5182)] = 277222, + [SMALL_STATE(5183)] = 277256, + [SMALL_STATE(5184)] = 277288, + [SMALL_STATE(5185)] = 277328, + [SMALL_STATE(5186)] = 277384, + [SMALL_STATE(5187)] = 277440, + [SMALL_STATE(5188)] = 277496, + [SMALL_STATE(5189)] = 277530, + [SMALL_STATE(5190)] = 277572, + [SMALL_STATE(5191)] = 277628, + [SMALL_STATE(5192)] = 277684, + [SMALL_STATE(5193)] = 277740, + [SMALL_STATE(5194)] = 277772, + [SMALL_STATE(5195)] = 277828, + [SMALL_STATE(5196)] = 277878, + [SMALL_STATE(5197)] = 277934, + [SMALL_STATE(5198)] = 277990, + [SMALL_STATE(5199)] = 278046, + [SMALL_STATE(5200)] = 278076, + [SMALL_STATE(5201)] = 278106, + [SMALL_STATE(5202)] = 278138, + [SMALL_STATE(5203)] = 278194, + [SMALL_STATE(5204)] = 278250, + [SMALL_STATE(5205)] = 278280, + [SMALL_STATE(5206)] = 278322, + [SMALL_STATE(5207)] = 278358, + [SMALL_STATE(5208)] = 278394, + [SMALL_STATE(5209)] = 278430, + [SMALL_STATE(5210)] = 278466, + [SMALL_STATE(5211)] = 278502, + [SMALL_STATE(5212)] = 278570, + [SMALL_STATE(5213)] = 278632, + [SMALL_STATE(5214)] = 278668, + [SMALL_STATE(5215)] = 278724, + [SMALL_STATE(5216)] = 278756, + [SMALL_STATE(5217)] = 278790, + [SMALL_STATE(5218)] = 278846, + [SMALL_STATE(5219)] = 278902, + [SMALL_STATE(5220)] = 278958, + [SMALL_STATE(5221)] = 279014, + [SMALL_STATE(5222)] = 279048, + [SMALL_STATE(5223)] = 279104, + [SMALL_STATE(5224)] = 279160, + [SMALL_STATE(5225)] = 279194, + [SMALL_STATE(5226)] = 279250, + [SMALL_STATE(5227)] = 279306, + [SMALL_STATE(5228)] = 279338, + [SMALL_STATE(5229)] = 279394, + [SMALL_STATE(5230)] = 279450, + [SMALL_STATE(5231)] = 279506, + [SMALL_STATE(5232)] = 279562, + [SMALL_STATE(5233)] = 279624, + [SMALL_STATE(5234)] = 279680, + [SMALL_STATE(5235)] = 279736, + [SMALL_STATE(5236)] = 279792, + [SMALL_STATE(5237)] = 279848, + [SMALL_STATE(5238)] = 279904, + [SMALL_STATE(5239)] = 279960, + [SMALL_STATE(5240)] = 280016, + [SMALL_STATE(5241)] = 280050, + [SMALL_STATE(5242)] = 280106, + [SMALL_STATE(5243)] = 280162, + [SMALL_STATE(5244)] = 280218, + [SMALL_STATE(5245)] = 280274, + [SMALL_STATE(5246)] = 280306, + [SMALL_STATE(5247)] = 280362, + [SMALL_STATE(5248)] = 280394, + [SMALL_STATE(5249)] = 280436, + [SMALL_STATE(5250)] = 280490, + [SMALL_STATE(5251)] = 280522, + [SMALL_STATE(5252)] = 280551, + [SMALL_STATE(5253)] = 280580, + [SMALL_STATE(5254)] = 280613, + [SMALL_STATE(5255)] = 280642, + [SMALL_STATE(5256)] = 280671, + [SMALL_STATE(5257)] = 280704, + [SMALL_STATE(5258)] = 280733, + [SMALL_STATE(5259)] = 280766, + [SMALL_STATE(5260)] = 280795, + [SMALL_STATE(5261)] = 280854, + [SMALL_STATE(5262)] = 280883, + [SMALL_STATE(5263)] = 280912, + [SMALL_STATE(5264)] = 280941, + [SMALL_STATE(5265)] = 280970, + [SMALL_STATE(5266)] = 280999, + [SMALL_STATE(5267)] = 281046, + [SMALL_STATE(5268)] = 281079, + [SMALL_STATE(5269)] = 281108, + [SMALL_STATE(5270)] = 281137, + [SMALL_STATE(5271)] = 281172, + [SMALL_STATE(5272)] = 281207, + [SMALL_STATE(5273)] = 281236, + [SMALL_STATE(5274)] = 281265, + [SMALL_STATE(5275)] = 281298, + [SMALL_STATE(5276)] = 281327, + [SMALL_STATE(5277)] = 281360, + [SMALL_STATE(5278)] = 281389, + [SMALL_STATE(5279)] = 281422, + [SMALL_STATE(5280)] = 281451, + [SMALL_STATE(5281)] = 281480, + [SMALL_STATE(5282)] = 281509, + [SMALL_STATE(5283)] = 281538, + [SMALL_STATE(5284)] = 281567, + [SMALL_STATE(5285)] = 281596, + [SMALL_STATE(5286)] = 281625, + [SMALL_STATE(5287)] = 281660, + [SMALL_STATE(5288)] = 281695, + [SMALL_STATE(5289)] = 281724, + [SMALL_STATE(5290)] = 281771, + [SMALL_STATE(5291)] = 281804, + [SMALL_STATE(5292)] = 281833, + [SMALL_STATE(5293)] = 281866, + [SMALL_STATE(5294)] = 281901, + [SMALL_STATE(5295)] = 281930, + [SMALL_STATE(5296)] = 281959, + [SMALL_STATE(5297)] = 281988, + [SMALL_STATE(5298)] = 282023, + [SMALL_STATE(5299)] = 282052, + [SMALL_STATE(5300)] = 282081, + [SMALL_STATE(5301)] = 282114, + [SMALL_STATE(5302)] = 282147, + [SMALL_STATE(5303)] = 282176, + [SMALL_STATE(5304)] = 282209, + [SMALL_STATE(5305)] = 282238, + [SMALL_STATE(5306)] = 282273, + [SMALL_STATE(5307)] = 282308, + [SMALL_STATE(5308)] = 282337, + [SMALL_STATE(5309)] = 282366, + [SMALL_STATE(5310)] = 282395, + [SMALL_STATE(5311)] = 282424, + [SMALL_STATE(5312)] = 282453, + [SMALL_STATE(5313)] = 282488, + [SMALL_STATE(5314)] = 282517, + [SMALL_STATE(5315)] = 282546, + [SMALL_STATE(5316)] = 282593, + [SMALL_STATE(5317)] = 282622, + [SMALL_STATE(5318)] = 282669, + [SMALL_STATE(5319)] = 282704, + [SMALL_STATE(5320)] = 282733, + [SMALL_STATE(5321)] = 282762, + [SMALL_STATE(5322)] = 282791, + [SMALL_STATE(5323)] = 282826, + [SMALL_STATE(5324)] = 282859, + [SMALL_STATE(5325)] = 282888, + [SMALL_STATE(5326)] = 282917, + [SMALL_STATE(5327)] = 282946, + [SMALL_STATE(5328)] = 282975, + [SMALL_STATE(5329)] = 283010, + [SMALL_STATE(5330)] = 283039, + [SMALL_STATE(5331)] = 283068, + [SMALL_STATE(5332)] = 283101, + [SMALL_STATE(5333)] = 283130, + [SMALL_STATE(5334)] = 283159, + [SMALL_STATE(5335)] = 283188, + [SMALL_STATE(5336)] = 283217, + [SMALL_STATE(5337)] = 283246, + [SMALL_STATE(5338)] = 283275, + [SMALL_STATE(5339)] = 283304, + [SMALL_STATE(5340)] = 283333, + [SMALL_STATE(5341)] = 283362, + [SMALL_STATE(5342)] = 283391, + [SMALL_STATE(5343)] = 283420, + [SMALL_STATE(5344)] = 283449, + [SMALL_STATE(5345)] = 283478, + [SMALL_STATE(5346)] = 283507, + [SMALL_STATE(5347)] = 283536, + [SMALL_STATE(5348)] = 283569, + [SMALL_STATE(5349)] = 283602, + [SMALL_STATE(5350)] = 283635, + [SMALL_STATE(5351)] = 283678, + [SMALL_STATE(5352)] = 283711, + [SMALL_STATE(5353)] = 283744, + [SMALL_STATE(5354)] = 283773, + [SMALL_STATE(5355)] = 283802, + [SMALL_STATE(5356)] = 283831, + [SMALL_STATE(5357)] = 283878, + [SMALL_STATE(5358)] = 283911, + [SMALL_STATE(5359)] = 283958, + [SMALL_STATE(5360)] = 283991, + [SMALL_STATE(5361)] = 284026, + [SMALL_STATE(5362)] = 284073, + [SMALL_STATE(5363)] = 284114, + [SMALL_STATE(5364)] = 284155, + [SMALL_STATE(5365)] = 284184, + [SMALL_STATE(5366)] = 284217, + [SMALL_STATE(5367)] = 284256, + [SMALL_STATE(5368)] = 284295, + [SMALL_STATE(5369)] = 284328, + [SMALL_STATE(5370)] = 284359, + [SMALL_STATE(5371)] = 284398, + [SMALL_STATE(5372)] = 284431, + [SMALL_STATE(5373)] = 284470, + [SMALL_STATE(5374)] = 284503, + [SMALL_STATE(5375)] = 284536, + [SMALL_STATE(5376)] = 284575, + [SMALL_STATE(5377)] = 284608, + [SMALL_STATE(5378)] = 284641, + [SMALL_STATE(5379)] = 284674, + [SMALL_STATE(5380)] = 284707, + [SMALL_STATE(5381)] = 284736, + [SMALL_STATE(5382)] = 284777, + [SMALL_STATE(5383)] = 284820, + [SMALL_STATE(5384)] = 284861, + [SMALL_STATE(5385)] = 284890, + [SMALL_STATE(5386)] = 284925, + [SMALL_STATE(5387)] = 284954, + [SMALL_STATE(5388)] = 284983, + [SMALL_STATE(5389)] = 285016, + [SMALL_STATE(5390)] = 285045, + [SMALL_STATE(5391)] = 285080, + [SMALL_STATE(5392)] = 285109, + [SMALL_STATE(5393)] = 285144, + [SMALL_STATE(5394)] = 285179, + [SMALL_STATE(5395)] = 285226, + [SMALL_STATE(5396)] = 285255, + [SMALL_STATE(5397)] = 285284, + [SMALL_STATE(5398)] = 285313, + [SMALL_STATE(5399)] = 285348, + [SMALL_STATE(5400)] = 285377, + [SMALL_STATE(5401)] = 285406, + [SMALL_STATE(5402)] = 285435, + [SMALL_STATE(5403)] = 285464, + [SMALL_STATE(5404)] = 285493, + [SMALL_STATE(5405)] = 285521, + [SMALL_STATE(5406)] = 285561, + [SMALL_STATE(5407)] = 285605, + [SMALL_STATE(5408)] = 285639, + [SMALL_STATE(5409)] = 285671, + [SMALL_STATE(5410)] = 285699, + [SMALL_STATE(5411)] = 285727, + [SMALL_STATE(5412)] = 285759, + [SMALL_STATE(5413)] = 285791, + [SMALL_STATE(5414)] = 285819, + [SMALL_STATE(5415)] = 285847, + [SMALL_STATE(5416)] = 285879, + [SMALL_STATE(5417)] = 285907, + [SMALL_STATE(5418)] = 285939, + [SMALL_STATE(5419)] = 285971, + [SMALL_STATE(5420)] = 286001, + [SMALL_STATE(5421)] = 286033, + [SMALL_STATE(5422)] = 286067, + [SMALL_STATE(5423)] = 286095, + [SMALL_STATE(5424)] = 286135, + [SMALL_STATE(5425)] = 286167, + [SMALL_STATE(5426)] = 286211, + [SMALL_STATE(5427)] = 286243, + [SMALL_STATE(5428)] = 286275, + [SMALL_STATE(5429)] = 286303, + [SMALL_STATE(5430)] = 286359, + [SMALL_STATE(5431)] = 286387, + [SMALL_STATE(5432)] = 286415, + [SMALL_STATE(5433)] = 286443, + [SMALL_STATE(5434)] = 286471, + [SMALL_STATE(5435)] = 286499, + [SMALL_STATE(5436)] = 286527, + [SMALL_STATE(5437)] = 286569, + [SMALL_STATE(5438)] = 286601, + [SMALL_STATE(5439)] = 286629, + [SMALL_STATE(5440)] = 286657, + [SMALL_STATE(5441)] = 286685, + [SMALL_STATE(5442)] = 286713, + [SMALL_STATE(5443)] = 286741, + [SMALL_STATE(5444)] = 286769, + [SMALL_STATE(5445)] = 286797, + [SMALL_STATE(5446)] = 286825, + [SMALL_STATE(5447)] = 286853, + [SMALL_STATE(5448)] = 286885, + [SMALL_STATE(5449)] = 286913, + [SMALL_STATE(5450)] = 286941, + [SMALL_STATE(5451)] = 286969, + [SMALL_STATE(5452)] = 286997, + [SMALL_STATE(5453)] = 287025, + [SMALL_STATE(5454)] = 287053, + [SMALL_STATE(5455)] = 287081, + [SMALL_STATE(5456)] = 287109, + [SMALL_STATE(5457)] = 287137, + [SMALL_STATE(5458)] = 287165, + [SMALL_STATE(5459)] = 287221, + [SMALL_STATE(5460)] = 287249, + [SMALL_STATE(5461)] = 287311, + [SMALL_STATE(5462)] = 287339, + [SMALL_STATE(5463)] = 287371, + [SMALL_STATE(5464)] = 287399, + [SMALL_STATE(5465)] = 287427, + [SMALL_STATE(5466)] = 287469, + [SMALL_STATE(5467)] = 287501, + [SMALL_STATE(5468)] = 287529, + [SMALL_STATE(5469)] = 287557, + [SMALL_STATE(5470)] = 287589, + [SMALL_STATE(5471)] = 287617, + [SMALL_STATE(5472)] = 287651, + [SMALL_STATE(5473)] = 287679, + [SMALL_STATE(5474)] = 287707, + [SMALL_STATE(5475)] = 287739, + [SMALL_STATE(5476)] = 287779, + [SMALL_STATE(5477)] = 287811, + [SMALL_STATE(5478)] = 287839, + [SMALL_STATE(5479)] = 287867, + [SMALL_STATE(5480)] = 287899, + [SMALL_STATE(5481)] = 287927, + [SMALL_STATE(5482)] = 287955, + [SMALL_STATE(5483)] = 287983, + [SMALL_STATE(5484)] = 288011, + [SMALL_STATE(5485)] = 288039, + [SMALL_STATE(5486)] = 288067, + [SMALL_STATE(5487)] = 288095, + [SMALL_STATE(5488)] = 288123, + [SMALL_STATE(5489)] = 288151, + [SMALL_STATE(5490)] = 288179, + [SMALL_STATE(5491)] = 288207, + [SMALL_STATE(5492)] = 288235, + [SMALL_STATE(5493)] = 288263, + [SMALL_STATE(5494)] = 288291, + [SMALL_STATE(5495)] = 288323, + [SMALL_STATE(5496)] = 288351, + [SMALL_STATE(5497)] = 288383, + [SMALL_STATE(5498)] = 288411, + [SMALL_STATE(5499)] = 288443, + [SMALL_STATE(5500)] = 288474, + [SMALL_STATE(5501)] = 288505, + [SMALL_STATE(5502)] = 288532, + [SMALL_STATE(5503)] = 288559, + [SMALL_STATE(5504)] = 288594, + [SMALL_STATE(5505)] = 288633, + [SMALL_STATE(5506)] = 288672, + [SMALL_STATE(5507)] = 288699, + [SMALL_STATE(5508)] = 288726, + [SMALL_STATE(5509)] = 288753, + [SMALL_STATE(5510)] = 288780, + [SMALL_STATE(5511)] = 288807, + [SMALL_STATE(5512)] = 288834, + [SMALL_STATE(5513)] = 288861, + [SMALL_STATE(5514)] = 288888, + [SMALL_STATE(5515)] = 288923, + [SMALL_STATE(5516)] = 288962, + [SMALL_STATE(5517)] = 289001, + [SMALL_STATE(5518)] = 289040, + [SMALL_STATE(5519)] = 289073, + [SMALL_STATE(5520)] = 289104, + [SMALL_STATE(5521)] = 289135, + [SMALL_STATE(5522)] = 289162, + [SMALL_STATE(5523)] = 289189, + [SMALL_STATE(5524)] = 289216, + [SMALL_STATE(5525)] = 289243, + [SMALL_STATE(5526)] = 289270, + [SMALL_STATE(5527)] = 289297, + [SMALL_STATE(5528)] = 289324, + [SMALL_STATE(5529)] = 289355, + [SMALL_STATE(5530)] = 289382, + [SMALL_STATE(5531)] = 289409, + [SMALL_STATE(5532)] = 289448, + [SMALL_STATE(5533)] = 289479, + [SMALL_STATE(5534)] = 289516, + [SMALL_STATE(5535)] = 289543, + [SMALL_STATE(5536)] = 289580, + [SMALL_STATE(5537)] = 289607, + [SMALL_STATE(5538)] = 289634, + [SMALL_STATE(5539)] = 289673, + [SMALL_STATE(5540)] = 289700, + [SMALL_STATE(5541)] = 289739, + [SMALL_STATE(5542)] = 289766, + [SMALL_STATE(5543)] = 289793, + [SMALL_STATE(5544)] = 289820, + [SMALL_STATE(5545)] = 289851, + [SMALL_STATE(5546)] = 289890, + [SMALL_STATE(5547)] = 289929, + [SMALL_STATE(5548)] = 289955, + [SMALL_STATE(5549)] = 289987, + [SMALL_STATE(5550)] = 290013, + [SMALL_STATE(5551)] = 290051, + [SMALL_STATE(5552)] = 290089, + [SMALL_STATE(5553)] = 290115, + [SMALL_STATE(5554)] = 290147, + [SMALL_STATE(5555)] = 290185, + [SMALL_STATE(5556)] = 290211, + [SMALL_STATE(5557)] = 290237, + [SMALL_STATE(5558)] = 290275, + [SMALL_STATE(5559)] = 290313, + [SMALL_STATE(5560)] = 290351, + [SMALL_STATE(5561)] = 290377, + [SMALL_STATE(5562)] = 290409, + [SMALL_STATE(5563)] = 290441, + [SMALL_STATE(5564)] = 290467, + [SMALL_STATE(5565)] = 290493, + [SMALL_STATE(5566)] = 290519, + [SMALL_STATE(5567)] = 290545, + [SMALL_STATE(5568)] = 290571, + [SMALL_STATE(5569)] = 290597, + [SMALL_STATE(5570)] = 290635, + [SMALL_STATE(5571)] = 290661, + [SMALL_STATE(5572)] = 290687, + [SMALL_STATE(5573)] = 290713, + [SMALL_STATE(5574)] = 290739, + [SMALL_STATE(5575)] = 290765, + [SMALL_STATE(5576)] = 290791, + [SMALL_STATE(5577)] = 290817, + [SMALL_STATE(5578)] = 290849, + [SMALL_STATE(5579)] = 290875, + [SMALL_STATE(5580)] = 290901, + [SMALL_STATE(5581)] = 290933, + [SMALL_STATE(5582)] = 290959, + [SMALL_STATE(5583)] = 290985, + [SMALL_STATE(5584)] = 291017, + [SMALL_STATE(5585)] = 291049, + [SMALL_STATE(5586)] = 291075, + [SMALL_STATE(5587)] = 291101, + [SMALL_STATE(5588)] = 291127, + [SMALL_STATE(5589)] = 291153, + [SMALL_STATE(5590)] = 291179, + [SMALL_STATE(5591)] = 291205, + [SMALL_STATE(5592)] = 291231, + [SMALL_STATE(5593)] = 291257, + [SMALL_STATE(5594)] = 291295, + [SMALL_STATE(5595)] = 291321, + [SMALL_STATE(5596)] = 291347, + [SMALL_STATE(5597)] = 291373, + [SMALL_STATE(5598)] = 291399, + [SMALL_STATE(5599)] = 291425, + [SMALL_STATE(5600)] = 291451, + [SMALL_STATE(5601)] = 291477, + [SMALL_STATE(5602)] = 291503, + [SMALL_STATE(5603)] = 291535, + [SMALL_STATE(5604)] = 291561, + [SMALL_STATE(5605)] = 291587, + [SMALL_STATE(5606)] = 291619, + [SMALL_STATE(5607)] = 291651, + [SMALL_STATE(5608)] = 291677, + [SMALL_STATE(5609)] = 291709, + [SMALL_STATE(5610)] = 291745, + [SMALL_STATE(5611)] = 291771, + [SMALL_STATE(5612)] = 291803, + [SMALL_STATE(5613)] = 291829, + [SMALL_STATE(5614)] = 291855, + [SMALL_STATE(5615)] = 291893, + [SMALL_STATE(5616)] = 291919, + [SMALL_STATE(5617)] = 291951, + [SMALL_STATE(5618)] = 291976, + [SMALL_STATE(5619)] = 292001, + [SMALL_STATE(5620)] = 292026, + [SMALL_STATE(5621)] = 292051, + [SMALL_STATE(5622)] = 292076, + [SMALL_STATE(5623)] = 292101, + [SMALL_STATE(5624)] = 292126, + [SMALL_STATE(5625)] = 292151, + [SMALL_STATE(5626)] = 292176, + [SMALL_STATE(5627)] = 292201, + [SMALL_STATE(5628)] = 292226, + [SMALL_STATE(5629)] = 292251, + [SMALL_STATE(5630)] = 292276, + [SMALL_STATE(5631)] = 292301, + [SMALL_STATE(5632)] = 292326, + [SMALL_STATE(5633)] = 292355, + [SMALL_STATE(5634)] = 292380, + [SMALL_STATE(5635)] = 292405, + [SMALL_STATE(5636)] = 292430, + [SMALL_STATE(5637)] = 292455, + [SMALL_STATE(5638)] = 292480, + [SMALL_STATE(5639)] = 292505, + [SMALL_STATE(5640)] = 292530, + [SMALL_STATE(5641)] = 292555, + [SMALL_STATE(5642)] = 292580, + [SMALL_STATE(5643)] = 292605, + [SMALL_STATE(5644)] = 292634, + [SMALL_STATE(5645)] = 292659, + [SMALL_STATE(5646)] = 292684, + [SMALL_STATE(5647)] = 292709, + [SMALL_STATE(5648)] = 292734, + [SMALL_STATE(5649)] = 292759, + [SMALL_STATE(5650)] = 292784, + [SMALL_STATE(5651)] = 292809, + [SMALL_STATE(5652)] = 292838, + [SMALL_STATE(5653)] = 292863, + [SMALL_STATE(5654)] = 292888, + [SMALL_STATE(5655)] = 292913, + [SMALL_STATE(5656)] = 292938, + [SMALL_STATE(5657)] = 292963, + [SMALL_STATE(5658)] = 292992, + [SMALL_STATE(5659)] = 293017, + [SMALL_STATE(5660)] = 293042, + [SMALL_STATE(5661)] = 293067, + [SMALL_STATE(5662)] = 293092, + [SMALL_STATE(5663)] = 293117, + [SMALL_STATE(5664)] = 293142, + [SMALL_STATE(5665)] = 293167, + [SMALL_STATE(5666)] = 293192, + [SMALL_STATE(5667)] = 293217, + [SMALL_STATE(5668)] = 293242, + [SMALL_STATE(5669)] = 293267, + [SMALL_STATE(5670)] = 293292, + [SMALL_STATE(5671)] = 293317, + [SMALL_STATE(5672)] = 293342, + [SMALL_STATE(5673)] = 293367, + [SMALL_STATE(5674)] = 293392, + [SMALL_STATE(5675)] = 293421, + [SMALL_STATE(5676)] = 293446, + [SMALL_STATE(5677)] = 293471, + [SMALL_STATE(5678)] = 293496, + [SMALL_STATE(5679)] = 293521, + [SMALL_STATE(5680)] = 293546, + [SMALL_STATE(5681)] = 293571, + [SMALL_STATE(5682)] = 293596, + [SMALL_STATE(5683)] = 293621, + [SMALL_STATE(5684)] = 293646, + [SMALL_STATE(5685)] = 293671, + [SMALL_STATE(5686)] = 293696, + [SMALL_STATE(5687)] = 293721, + [SMALL_STATE(5688)] = 293746, + [SMALL_STATE(5689)] = 293771, + [SMALL_STATE(5690)] = 293796, + [SMALL_STATE(5691)] = 293821, + [SMALL_STATE(5692)] = 293846, + [SMALL_STATE(5693)] = 293871, + [SMALL_STATE(5694)] = 293896, + [SMALL_STATE(5695)] = 293921, + [SMALL_STATE(5696)] = 293946, + [SMALL_STATE(5697)] = 293971, + [SMALL_STATE(5698)] = 294009, + [SMALL_STATE(5699)] = 294041, + [SMALL_STATE(5700)] = 294073, + [SMALL_STATE(5701)] = 294109, + [SMALL_STATE(5702)] = 294133, + [SMALL_STATE(5703)] = 294174, + [SMALL_STATE(5704)] = 294215, + [SMALL_STATE(5705)] = 294256, + [SMALL_STATE(5706)] = 294297, + [SMALL_STATE(5707)] = 294338, + [SMALL_STATE(5708)] = 294379, + [SMALL_STATE(5709)] = 294420, + [SMALL_STATE(5710)] = 294461, + [SMALL_STATE(5711)] = 294502, + [SMALL_STATE(5712)] = 294543, + [SMALL_STATE(5713)] = 294584, + [SMALL_STATE(5714)] = 294625, + [SMALL_STATE(5715)] = 294666, + [SMALL_STATE(5716)] = 294707, + [SMALL_STATE(5717)] = 294748, + [SMALL_STATE(5718)] = 294789, + [SMALL_STATE(5719)] = 294830, + [SMALL_STATE(5720)] = 294871, + [SMALL_STATE(5721)] = 294912, + [SMALL_STATE(5722)] = 294953, + [SMALL_STATE(5723)] = 294994, + [SMALL_STATE(5724)] = 295035, + [SMALL_STATE(5725)] = 295076, + [SMALL_STATE(5726)] = 295117, + [SMALL_STATE(5727)] = 295158, + [SMALL_STATE(5728)] = 295199, + [SMALL_STATE(5729)] = 295240, + [SMALL_STATE(5730)] = 295281, + [SMALL_STATE(5731)] = 295322, + [SMALL_STATE(5732)] = 295363, + [SMALL_STATE(5733)] = 295404, + [SMALL_STATE(5734)] = 295445, + [SMALL_STATE(5735)] = 295486, + [SMALL_STATE(5736)] = 295527, + [SMALL_STATE(5737)] = 295568, + [SMALL_STATE(5738)] = 295609, + [SMALL_STATE(5739)] = 295632, + [SMALL_STATE(5740)] = 295673, + [SMALL_STATE(5741)] = 295714, + [SMALL_STATE(5742)] = 295755, + [SMALL_STATE(5743)] = 295796, + [SMALL_STATE(5744)] = 295837, + [SMALL_STATE(5745)] = 295860, + [SMALL_STATE(5746)] = 295901, + [SMALL_STATE(5747)] = 295942, + [SMALL_STATE(5748)] = 295965, + [SMALL_STATE(5749)] = 296006, + [SMALL_STATE(5750)] = 296047, + [SMALL_STATE(5751)] = 296088, + [SMALL_STATE(5752)] = 296129, + [SMALL_STATE(5753)] = 296170, + [SMALL_STATE(5754)] = 296211, + [SMALL_STATE(5755)] = 296252, + [SMALL_STATE(5756)] = 296293, + [SMALL_STATE(5757)] = 296334, + [SMALL_STATE(5758)] = 296375, + [SMALL_STATE(5759)] = 296416, + [SMALL_STATE(5760)] = 296457, + [SMALL_STATE(5761)] = 296498, + [SMALL_STATE(5762)] = 296539, + [SMALL_STATE(5763)] = 296580, + [SMALL_STATE(5764)] = 296621, + [SMALL_STATE(5765)] = 296662, + [SMALL_STATE(5766)] = 296703, + [SMALL_STATE(5767)] = 296744, + [SMALL_STATE(5768)] = 296785, + [SMALL_STATE(5769)] = 296826, + [SMALL_STATE(5770)] = 296867, + [SMALL_STATE(5771)] = 296908, + [SMALL_STATE(5772)] = 296949, + [SMALL_STATE(5773)] = 296990, + [SMALL_STATE(5774)] = 297031, + [SMALL_STATE(5775)] = 297072, + [SMALL_STATE(5776)] = 297113, + [SMALL_STATE(5777)] = 297154, + [SMALL_STATE(5778)] = 297195, + [SMALL_STATE(5779)] = 297236, + [SMALL_STATE(5780)] = 297277, + [SMALL_STATE(5781)] = 297318, + [SMALL_STATE(5782)] = 297359, + [SMALL_STATE(5783)] = 297400, + [SMALL_STATE(5784)] = 297441, + [SMALL_STATE(5785)] = 297482, + [SMALL_STATE(5786)] = 297523, + [SMALL_STATE(5787)] = 297564, + [SMALL_STATE(5788)] = 297605, + [SMALL_STATE(5789)] = 297646, + [SMALL_STATE(5790)] = 297669, + [SMALL_STATE(5791)] = 297710, + [SMALL_STATE(5792)] = 297751, + [SMALL_STATE(5793)] = 297792, + [SMALL_STATE(5794)] = 297833, + [SMALL_STATE(5795)] = 297874, + [SMALL_STATE(5796)] = 297915, + [SMALL_STATE(5797)] = 297956, + [SMALL_STATE(5798)] = 297997, + [SMALL_STATE(5799)] = 298038, + [SMALL_STATE(5800)] = 298079, + [SMALL_STATE(5801)] = 298120, + [SMALL_STATE(5802)] = 298161, + [SMALL_STATE(5803)] = 298202, + [SMALL_STATE(5804)] = 298243, + [SMALL_STATE(5805)] = 298284, + [SMALL_STATE(5806)] = 298325, + [SMALL_STATE(5807)] = 298366, + [SMALL_STATE(5808)] = 298407, + [SMALL_STATE(5809)] = 298448, + [SMALL_STATE(5810)] = 298489, + [SMALL_STATE(5811)] = 298530, + [SMALL_STATE(5812)] = 298571, + [SMALL_STATE(5813)] = 298612, + [SMALL_STATE(5814)] = 298653, + [SMALL_STATE(5815)] = 298694, + [SMALL_STATE(5816)] = 298735, + [SMALL_STATE(5817)] = 298776, + [SMALL_STATE(5818)] = 298817, + [SMALL_STATE(5819)] = 298858, + [SMALL_STATE(5820)] = 298899, + [SMALL_STATE(5821)] = 298940, + [SMALL_STATE(5822)] = 298981, + [SMALL_STATE(5823)] = 299022, + [SMALL_STATE(5824)] = 299063, + [SMALL_STATE(5825)] = 299104, + [SMALL_STATE(5826)] = 299145, + [SMALL_STATE(5827)] = 299186, + [SMALL_STATE(5828)] = 299227, + [SMALL_STATE(5829)] = 299268, + [SMALL_STATE(5830)] = 299309, + [SMALL_STATE(5831)] = 299350, + [SMALL_STATE(5832)] = 299391, + [SMALL_STATE(5833)] = 299432, + [SMALL_STATE(5834)] = 299473, + [SMALL_STATE(5835)] = 299514, + [SMALL_STATE(5836)] = 299555, + [SMALL_STATE(5837)] = 299596, + [SMALL_STATE(5838)] = 299637, + [SMALL_STATE(5839)] = 299678, + [SMALL_STATE(5840)] = 299719, + [SMALL_STATE(5841)] = 299760, + [SMALL_STATE(5842)] = 299801, + [SMALL_STATE(5843)] = 299842, + [SMALL_STATE(5844)] = 299883, + [SMALL_STATE(5845)] = 299924, + [SMALL_STATE(5846)] = 299965, + [SMALL_STATE(5847)] = 300006, + [SMALL_STATE(5848)] = 300047, + [SMALL_STATE(5849)] = 300088, + [SMALL_STATE(5850)] = 300129, + [SMALL_STATE(5851)] = 300170, + [SMALL_STATE(5852)] = 300211, + [SMALL_STATE(5853)] = 300252, + [SMALL_STATE(5854)] = 300293, + [SMALL_STATE(5855)] = 300334, + [SMALL_STATE(5856)] = 300375, + [SMALL_STATE(5857)] = 300416, + [SMALL_STATE(5858)] = 300457, + [SMALL_STATE(5859)] = 300498, + [SMALL_STATE(5860)] = 300539, + [SMALL_STATE(5861)] = 300580, + [SMALL_STATE(5862)] = 300621, + [SMALL_STATE(5863)] = 300662, + [SMALL_STATE(5864)] = 300703, + [SMALL_STATE(5865)] = 300744, + [SMALL_STATE(5866)] = 300772, + [SMALL_STATE(5867)] = 300800, + [SMALL_STATE(5868)] = 300828, + [SMALL_STATE(5869)] = 300856, + [SMALL_STATE(5870)] = 300884, + [SMALL_STATE(5871)] = 300912, + [SMALL_STATE(5872)] = 300940, + [SMALL_STATE(5873)] = 300968, + [SMALL_STATE(5874)] = 300996, + [SMALL_STATE(5875)] = 301024, + [SMALL_STATE(5876)] = 301052, + [SMALL_STATE(5877)] = 301080, + [SMALL_STATE(5878)] = 301108, + [SMALL_STATE(5879)] = 301136, + [SMALL_STATE(5880)] = 301164, + [SMALL_STATE(5881)] = 301192, + [SMALL_STATE(5882)] = 301220, + [SMALL_STATE(5883)] = 301248, + [SMALL_STATE(5884)] = 301276, + [SMALL_STATE(5885)] = 301304, + [SMALL_STATE(5886)] = 301332, + [SMALL_STATE(5887)] = 301360, + [SMALL_STATE(5888)] = 301388, + [SMALL_STATE(5889)] = 301416, + [SMALL_STATE(5890)] = 301444, + [SMALL_STATE(5891)] = 301472, + [SMALL_STATE(5892)] = 301500, + [SMALL_STATE(5893)] = 301528, + [SMALL_STATE(5894)] = 301556, + [SMALL_STATE(5895)] = 301584, + [SMALL_STATE(5896)] = 301612, + [SMALL_STATE(5897)] = 301640, + [SMALL_STATE(5898)] = 301668, + [SMALL_STATE(5899)] = 301696, + [SMALL_STATE(5900)] = 301724, + [SMALL_STATE(5901)] = 301752, + [SMALL_STATE(5902)] = 301780, + [SMALL_STATE(5903)] = 301808, + [SMALL_STATE(5904)] = 301836, + [SMALL_STATE(5905)] = 301864, + [SMALL_STATE(5906)] = 301892, + [SMALL_STATE(5907)] = 301920, + [SMALL_STATE(5908)] = 301948, + [SMALL_STATE(5909)] = 301976, + [SMALL_STATE(5910)] = 302004, + [SMALL_STATE(5911)] = 302032, + [SMALL_STATE(5912)] = 302060, + [SMALL_STATE(5913)] = 302088, + [SMALL_STATE(5914)] = 302116, + [SMALL_STATE(5915)] = 302144, + [SMALL_STATE(5916)] = 302172, + [SMALL_STATE(5917)] = 302200, + [SMALL_STATE(5918)] = 302228, + [SMALL_STATE(5919)] = 302256, + [SMALL_STATE(5920)] = 302284, + [SMALL_STATE(5921)] = 302312, + [SMALL_STATE(5922)] = 302340, + [SMALL_STATE(5923)] = 302368, + [SMALL_STATE(5924)] = 302396, + [SMALL_STATE(5925)] = 302424, + [SMALL_STATE(5926)] = 302452, + [SMALL_STATE(5927)] = 302480, + [SMALL_STATE(5928)] = 302508, + [SMALL_STATE(5929)] = 302536, + [SMALL_STATE(5930)] = 302564, + [SMALL_STATE(5931)] = 302592, + [SMALL_STATE(5932)] = 302620, + [SMALL_STATE(5933)] = 302648, + [SMALL_STATE(5934)] = 302676, + [SMALL_STATE(5935)] = 302704, + [SMALL_STATE(5936)] = 302732, + [SMALL_STATE(5937)] = 302760, + [SMALL_STATE(5938)] = 302788, + [SMALL_STATE(5939)] = 302816, + [SMALL_STATE(5940)] = 302844, + [SMALL_STATE(5941)] = 302872, + [SMALL_STATE(5942)] = 302900, + [SMALL_STATE(5943)] = 302928, + [SMALL_STATE(5944)] = 302956, + [SMALL_STATE(5945)] = 302984, + [SMALL_STATE(5946)] = 303012, + [SMALL_STATE(5947)] = 303040, + [SMALL_STATE(5948)] = 303068, + [SMALL_STATE(5949)] = 303096, + [SMALL_STATE(5950)] = 303124, + [SMALL_STATE(5951)] = 303152, + [SMALL_STATE(5952)] = 303180, + [SMALL_STATE(5953)] = 303208, + [SMALL_STATE(5954)] = 303236, + [SMALL_STATE(5955)] = 303264, + [SMALL_STATE(5956)] = 303292, + [SMALL_STATE(5957)] = 303320, + [SMALL_STATE(5958)] = 303348, + [SMALL_STATE(5959)] = 303376, + [SMALL_STATE(5960)] = 303404, + [SMALL_STATE(5961)] = 303432, + [SMALL_STATE(5962)] = 303460, + [SMALL_STATE(5963)] = 303488, + [SMALL_STATE(5964)] = 303516, + [SMALL_STATE(5965)] = 303544, + [SMALL_STATE(5966)] = 303572, + [SMALL_STATE(5967)] = 303600, + [SMALL_STATE(5968)] = 303628, + [SMALL_STATE(5969)] = 303656, + [SMALL_STATE(5970)] = 303684, + [SMALL_STATE(5971)] = 303712, + [SMALL_STATE(5972)] = 303740, + [SMALL_STATE(5973)] = 303768, + [SMALL_STATE(5974)] = 303796, + [SMALL_STATE(5975)] = 303824, + [SMALL_STATE(5976)] = 303852, + [SMALL_STATE(5977)] = 303880, + [SMALL_STATE(5978)] = 303908, + [SMALL_STATE(5979)] = 303936, + [SMALL_STATE(5980)] = 303964, + [SMALL_STATE(5981)] = 303992, + [SMALL_STATE(5982)] = 304020, + [SMALL_STATE(5983)] = 304048, + [SMALL_STATE(5984)] = 304076, + [SMALL_STATE(5985)] = 304104, + [SMALL_STATE(5986)] = 304132, + [SMALL_STATE(5987)] = 304160, + [SMALL_STATE(5988)] = 304188, + [SMALL_STATE(5989)] = 304216, + [SMALL_STATE(5990)] = 304244, + [SMALL_STATE(5991)] = 304272, + [SMALL_STATE(5992)] = 304300, + [SMALL_STATE(5993)] = 304328, + [SMALL_STATE(5994)] = 304356, + [SMALL_STATE(5995)] = 304384, + [SMALL_STATE(5996)] = 304412, + [SMALL_STATE(5997)] = 304440, + [SMALL_STATE(5998)] = 304468, + [SMALL_STATE(5999)] = 304496, + [SMALL_STATE(6000)] = 304524, + [SMALL_STATE(6001)] = 304552, + [SMALL_STATE(6002)] = 304580, + [SMALL_STATE(6003)] = 304608, + [SMALL_STATE(6004)] = 304636, + [SMALL_STATE(6005)] = 304664, + [SMALL_STATE(6006)] = 304692, + [SMALL_STATE(6007)] = 304720, + [SMALL_STATE(6008)] = 304748, + [SMALL_STATE(6009)] = 304776, + [SMALL_STATE(6010)] = 304804, + [SMALL_STATE(6011)] = 304832, + [SMALL_STATE(6012)] = 304860, + [SMALL_STATE(6013)] = 304888, + [SMALL_STATE(6014)] = 304916, + [SMALL_STATE(6015)] = 304944, + [SMALL_STATE(6016)] = 304972, + [SMALL_STATE(6017)] = 305000, + [SMALL_STATE(6018)] = 305028, + [SMALL_STATE(6019)] = 305056, + [SMALL_STATE(6020)] = 305084, + [SMALL_STATE(6021)] = 305112, + [SMALL_STATE(6022)] = 305140, + [SMALL_STATE(6023)] = 305168, + [SMALL_STATE(6024)] = 305196, + [SMALL_STATE(6025)] = 305224, + [SMALL_STATE(6026)] = 305252, + [SMALL_STATE(6027)] = 305280, + [SMALL_STATE(6028)] = 305308, + [SMALL_STATE(6029)] = 305336, + [SMALL_STATE(6030)] = 305364, + [SMALL_STATE(6031)] = 305392, + [SMALL_STATE(6032)] = 305420, + [SMALL_STATE(6033)] = 305448, + [SMALL_STATE(6034)] = 305476, + [SMALL_STATE(6035)] = 305504, + [SMALL_STATE(6036)] = 305532, + [SMALL_STATE(6037)] = 305560, + [SMALL_STATE(6038)] = 305588, + [SMALL_STATE(6039)] = 305616, + [SMALL_STATE(6040)] = 305644, + [SMALL_STATE(6041)] = 305672, + [SMALL_STATE(6042)] = 305700, + [SMALL_STATE(6043)] = 305728, + [SMALL_STATE(6044)] = 305756, + [SMALL_STATE(6045)] = 305784, + [SMALL_STATE(6046)] = 305812, + [SMALL_STATE(6047)] = 305840, + [SMALL_STATE(6048)] = 305868, + [SMALL_STATE(6049)] = 305896, + [SMALL_STATE(6050)] = 305924, + [SMALL_STATE(6051)] = 305952, + [SMALL_STATE(6052)] = 305980, + [SMALL_STATE(6053)] = 306008, + [SMALL_STATE(6054)] = 306036, + [SMALL_STATE(6055)] = 306064, + [SMALL_STATE(6056)] = 306092, + [SMALL_STATE(6057)] = 306120, + [SMALL_STATE(6058)] = 306148, + [SMALL_STATE(6059)] = 306176, + [SMALL_STATE(6060)] = 306204, + [SMALL_STATE(6061)] = 306232, + [SMALL_STATE(6062)] = 306260, + [SMALL_STATE(6063)] = 306288, + [SMALL_STATE(6064)] = 306316, + [SMALL_STATE(6065)] = 306344, + [SMALL_STATE(6066)] = 306372, + [SMALL_STATE(6067)] = 306400, + [SMALL_STATE(6068)] = 306428, + [SMALL_STATE(6069)] = 306456, + [SMALL_STATE(6070)] = 306484, + [SMALL_STATE(6071)] = 306512, + [SMALL_STATE(6072)] = 306540, + [SMALL_STATE(6073)] = 306568, + [SMALL_STATE(6074)] = 306596, + [SMALL_STATE(6075)] = 306624, + [SMALL_STATE(6076)] = 306652, + [SMALL_STATE(6077)] = 306680, + [SMALL_STATE(6078)] = 306708, + [SMALL_STATE(6079)] = 306736, + [SMALL_STATE(6080)] = 306764, + [SMALL_STATE(6081)] = 306792, + [SMALL_STATE(6082)] = 306820, + [SMALL_STATE(6083)] = 306848, + [SMALL_STATE(6084)] = 306876, + [SMALL_STATE(6085)] = 306904, + [SMALL_STATE(6086)] = 306932, + [SMALL_STATE(6087)] = 306960, + [SMALL_STATE(6088)] = 306988, + [SMALL_STATE(6089)] = 307017, + [SMALL_STATE(6090)] = 307046, + [SMALL_STATE(6091)] = 307075, + [SMALL_STATE(6092)] = 307104, + [SMALL_STATE(6093)] = 307133, + [SMALL_STATE(6094)] = 307162, + [SMALL_STATE(6095)] = 307191, + [SMALL_STATE(6096)] = 307212, + [SMALL_STATE(6097)] = 307233, + [SMALL_STATE(6098)] = 307262, + [SMALL_STATE(6099)] = 307287, + [SMALL_STATE(6100)] = 307309, + [SMALL_STATE(6101)] = 307335, + [SMALL_STATE(6102)] = 307357, + [SMALL_STATE(6103)] = 307379, + [SMALL_STATE(6104)] = 307401, + [SMALL_STATE(6105)] = 307427, + [SMALL_STATE(6106)] = 307453, + [SMALL_STATE(6107)] = 307479, + [SMALL_STATE(6108)] = 307505, + [SMALL_STATE(6109)] = 307527, + [SMALL_STATE(6110)] = 307553, + [SMALL_STATE(6111)] = 307575, + [SMALL_STATE(6112)] = 307597, + [SMALL_STATE(6113)] = 307619, + [SMALL_STATE(6114)] = 307645, + [SMALL_STATE(6115)] = 307667, + [SMALL_STATE(6116)] = 307693, + [SMALL_STATE(6117)] = 307719, + [SMALL_STATE(6118)] = 307742, + [SMALL_STATE(6119)] = 307765, + [SMALL_STATE(6120)] = 307788, + [SMALL_STATE(6121)] = 307811, + [SMALL_STATE(6122)] = 307830, + [SMALL_STATE(6123)] = 307849, + [SMALL_STATE(6124)] = 307868, + [SMALL_STATE(6125)] = 307887, + [SMALL_STATE(6126)] = 307906, + [SMALL_STATE(6127)] = 307929, + [SMALL_STATE(6128)] = 307948, + [SMALL_STATE(6129)] = 307979, + [SMALL_STATE(6130)] = 308002, + [SMALL_STATE(6131)] = 308025, + [SMALL_STATE(6132)] = 308056, + [SMALL_STATE(6133)] = 308079, + [SMALL_STATE(6134)] = 308102, + [SMALL_STATE(6135)] = 308125, + [SMALL_STATE(6136)] = 308148, + [SMALL_STATE(6137)] = 308171, + [SMALL_STATE(6138)] = 308202, + [SMALL_STATE(6139)] = 308221, + [SMALL_STATE(6140)] = 308244, + [SMALL_STATE(6141)] = 308263, + [SMALL_STATE(6142)] = 308282, + [SMALL_STATE(6143)] = 308305, + [SMALL_STATE(6144)] = 308324, + [SMALL_STATE(6145)] = 308347, + [SMALL_STATE(6146)] = 308370, + [SMALL_STATE(6147)] = 308393, + [SMALL_STATE(6148)] = 308412, + [SMALL_STATE(6149)] = 308435, + [SMALL_STATE(6150)] = 308458, + [SMALL_STATE(6151)] = 308481, + [SMALL_STATE(6152)] = 308504, + [SMALL_STATE(6153)] = 308527, + [SMALL_STATE(6154)] = 308550, + [SMALL_STATE(6155)] = 308569, + [SMALL_STATE(6156)] = 308592, + [SMALL_STATE(6157)] = 308615, + [SMALL_STATE(6158)] = 308638, + [SMALL_STATE(6159)] = 308661, + [SMALL_STATE(6160)] = 308689, + [SMALL_STATE(6161)] = 308717, + [SMALL_STATE(6162)] = 308745, + [SMALL_STATE(6163)] = 308773, + [SMALL_STATE(6164)] = 308801, + [SMALL_STATE(6165)] = 308829, + [SMALL_STATE(6166)] = 308857, + [SMALL_STATE(6167)] = 308885, + [SMALL_STATE(6168)] = 308913, + [SMALL_STATE(6169)] = 308941, + [SMALL_STATE(6170)] = 308969, + [SMALL_STATE(6171)] = 308997, + [SMALL_STATE(6172)] = 309025, + [SMALL_STATE(6173)] = 309053, + [SMALL_STATE(6174)] = 309081, + [SMALL_STATE(6175)] = 309109, + [SMALL_STATE(6176)] = 309137, + [SMALL_STATE(6177)] = 309153, + [SMALL_STATE(6178)] = 309181, + [SMALL_STATE(6179)] = 309209, + [SMALL_STATE(6180)] = 309225, + [SMALL_STATE(6181)] = 309253, + [SMALL_STATE(6182)] = 309281, + [SMALL_STATE(6183)] = 309309, + [SMALL_STATE(6184)] = 309325, + [SMALL_STATE(6185)] = 309353, + [SMALL_STATE(6186)] = 309381, + [SMALL_STATE(6187)] = 309409, + [SMALL_STATE(6188)] = 309440, + [SMALL_STATE(6189)] = 309463, + [SMALL_STATE(6190)] = 309487, + [SMALL_STATE(6191)] = 309513, + [SMALL_STATE(6192)] = 309537, + [SMALL_STATE(6193)] = 309561, + [SMALL_STATE(6194)] = 309583, + [SMALL_STATE(6195)] = 309609, + [SMALL_STATE(6196)] = 309633, + [SMALL_STATE(6197)] = 309657, + [SMALL_STATE(6198)] = 309683, + [SMALL_STATE(6199)] = 309707, + [SMALL_STATE(6200)] = 309731, + [SMALL_STATE(6201)] = 309755, + [SMALL_STATE(6202)] = 309777, + [SMALL_STATE(6203)] = 309801, + [SMALL_STATE(6204)] = 309825, + [SMALL_STATE(6205)] = 309847, + [SMALL_STATE(6206)] = 309862, + [SMALL_STATE(6207)] = 309877, + [SMALL_STATE(6208)] = 309892, + [SMALL_STATE(6209)] = 309909, + [SMALL_STATE(6210)] = 309924, + [SMALL_STATE(6211)] = 309939, + [SMALL_STATE(6212)] = 309954, + [SMALL_STATE(6213)] = 309969, + [SMALL_STATE(6214)] = 309990, + [SMALL_STATE(6215)] = 310005, + [SMALL_STATE(6216)] = 310018, + [SMALL_STATE(6217)] = 310031, + [SMALL_STATE(6218)] = 310046, + [SMALL_STATE(6219)] = 310063, + [SMALL_STATE(6220)] = 310084, + [SMALL_STATE(6221)] = 310105, + [SMALL_STATE(6222)] = 310120, + [SMALL_STATE(6223)] = 310135, + [SMALL_STATE(6224)] = 310156, + [SMALL_STATE(6225)] = 310171, + [SMALL_STATE(6226)] = 310186, + [SMALL_STATE(6227)] = 310201, + [SMALL_STATE(6228)] = 310214, + [SMALL_STATE(6229)] = 310227, + [SMALL_STATE(6230)] = 310240, + [SMALL_STATE(6231)] = 310255, + [SMALL_STATE(6232)] = 310270, + [SMALL_STATE(6233)] = 310285, + [SMALL_STATE(6234)] = 310300, + [SMALL_STATE(6235)] = 310313, + [SMALL_STATE(6236)] = 310328, + [SMALL_STATE(6237)] = 310343, + [SMALL_STATE(6238)] = 310358, + [SMALL_STATE(6239)] = 310373, + [SMALL_STATE(6240)] = 310388, + [SMALL_STATE(6241)] = 310407, + [SMALL_STATE(6242)] = 310422, + [SMALL_STATE(6243)] = 310437, + [SMALL_STATE(6244)] = 310452, + [SMALL_STATE(6245)] = 310467, + [SMALL_STATE(6246)] = 310480, + [SMALL_STATE(6247)] = 310493, + [SMALL_STATE(6248)] = 310506, + [SMALL_STATE(6249)] = 310526, + [SMALL_STATE(6250)] = 310546, + [SMALL_STATE(6251)] = 310566, + [SMALL_STATE(6252)] = 310586, + [SMALL_STATE(6253)] = 310606, + [SMALL_STATE(6254)] = 310626, + [SMALL_STATE(6255)] = 310646, + [SMALL_STATE(6256)] = 310666, + [SMALL_STATE(6257)] = 310680, + [SMALL_STATE(6258)] = 310700, + [SMALL_STATE(6259)] = 310714, + [SMALL_STATE(6260)] = 310728, + [SMALL_STATE(6261)] = 310742, + [SMALL_STATE(6262)] = 310756, + [SMALL_STATE(6263)] = 310770, + [SMALL_STATE(6264)] = 310790, + [SMALL_STATE(6265)] = 310804, + [SMALL_STATE(6266)] = 310824, + [SMALL_STATE(6267)] = 310838, + [SMALL_STATE(6268)] = 310852, + [SMALL_STATE(6269)] = 310866, + [SMALL_STATE(6270)] = 310886, + [SMALL_STATE(6271)] = 310906, + [SMALL_STATE(6272)] = 310926, + [SMALL_STATE(6273)] = 310946, + [SMALL_STATE(6274)] = 310966, + [SMALL_STATE(6275)] = 310986, + [SMALL_STATE(6276)] = 311000, + [SMALL_STATE(6277)] = 311020, + [SMALL_STATE(6278)] = 311040, + [SMALL_STATE(6279)] = 311060, + [SMALL_STATE(6280)] = 311074, + [SMALL_STATE(6281)] = 311094, + [SMALL_STATE(6282)] = 311114, + [SMALL_STATE(6283)] = 311134, + [SMALL_STATE(6284)] = 311154, + [SMALL_STATE(6285)] = 311174, + [SMALL_STATE(6286)] = 311194, + [SMALL_STATE(6287)] = 311214, + [SMALL_STATE(6288)] = 311228, + [SMALL_STATE(6289)] = 311248, + [SMALL_STATE(6290)] = 311268, + [SMALL_STATE(6291)] = 311288, + [SMALL_STATE(6292)] = 311308, + [SMALL_STATE(6293)] = 311328, + [SMALL_STATE(6294)] = 311342, + [SMALL_STATE(6295)] = 311362, + [SMALL_STATE(6296)] = 311382, + [SMALL_STATE(6297)] = 311402, + [SMALL_STATE(6298)] = 311422, + [SMALL_STATE(6299)] = 311442, + [SMALL_STATE(6300)] = 311456, + [SMALL_STATE(6301)] = 311476, + [SMALL_STATE(6302)] = 311490, + [SMALL_STATE(6303)] = 311510, + [SMALL_STATE(6304)] = 311530, + [SMALL_STATE(6305)] = 311544, + [SMALL_STATE(6306)] = 311564, + [SMALL_STATE(6307)] = 311578, + [SMALL_STATE(6308)] = 311598, + [SMALL_STATE(6309)] = 311618, + [SMALL_STATE(6310)] = 311638, + [SMALL_STATE(6311)] = 311658, + [SMALL_STATE(6312)] = 311678, + [SMALL_STATE(6313)] = 311698, + [SMALL_STATE(6314)] = 311718, + [SMALL_STATE(6315)] = 311738, + [SMALL_STATE(6316)] = 311758, + [SMALL_STATE(6317)] = 311778, + [SMALL_STATE(6318)] = 311792, + [SMALL_STATE(6319)] = 311812, + [SMALL_STATE(6320)] = 311832, + [SMALL_STATE(6321)] = 311852, + [SMALL_STATE(6322)] = 311872, + [SMALL_STATE(6323)] = 311892, + [SMALL_STATE(6324)] = 311912, + [SMALL_STATE(6325)] = 311932, + [SMALL_STATE(6326)] = 311952, + [SMALL_STATE(6327)] = 311968, + [SMALL_STATE(6328)] = 311988, + [SMALL_STATE(6329)] = 312008, + [SMALL_STATE(6330)] = 312028, + [SMALL_STATE(6331)] = 312048, + [SMALL_STATE(6332)] = 312068, + [SMALL_STATE(6333)] = 312088, + [SMALL_STATE(6334)] = 312108, + [SMALL_STATE(6335)] = 312128, + [SMALL_STATE(6336)] = 312148, + [SMALL_STATE(6337)] = 312168, + [SMALL_STATE(6338)] = 312188, + [SMALL_STATE(6339)] = 312208, + [SMALL_STATE(6340)] = 312228, + [SMALL_STATE(6341)] = 312248, + [SMALL_STATE(6342)] = 312268, + [SMALL_STATE(6343)] = 312288, + [SMALL_STATE(6344)] = 312308, + [SMALL_STATE(6345)] = 312322, + [SMALL_STATE(6346)] = 312342, + [SMALL_STATE(6347)] = 312362, + [SMALL_STATE(6348)] = 312382, + [SMALL_STATE(6349)] = 312402, + [SMALL_STATE(6350)] = 312422, + [SMALL_STATE(6351)] = 312442, + [SMALL_STATE(6352)] = 312462, + [SMALL_STATE(6353)] = 312482, + [SMALL_STATE(6354)] = 312502, + [SMALL_STATE(6355)] = 312522, + [SMALL_STATE(6356)] = 312542, + [SMALL_STATE(6357)] = 312562, + [SMALL_STATE(6358)] = 312582, + [SMALL_STATE(6359)] = 312602, + [SMALL_STATE(6360)] = 312622, + [SMALL_STATE(6361)] = 312642, + [SMALL_STATE(6362)] = 312656, + [SMALL_STATE(6363)] = 312676, + [SMALL_STATE(6364)] = 312696, + [SMALL_STATE(6365)] = 312716, + [SMALL_STATE(6366)] = 312736, + [SMALL_STATE(6367)] = 312756, + [SMALL_STATE(6368)] = 312776, + [SMALL_STATE(6369)] = 312795, + [SMALL_STATE(6370)] = 312814, + [SMALL_STATE(6371)] = 312827, + [SMALL_STATE(6372)] = 312846, + [SMALL_STATE(6373)] = 312863, + [SMALL_STATE(6374)] = 312880, + [SMALL_STATE(6375)] = 312895, + [SMALL_STATE(6376)] = 312912, + [SMALL_STATE(6377)] = 312927, + [SMALL_STATE(6378)] = 312946, + [SMALL_STATE(6379)] = 312965, + [SMALL_STATE(6380)] = 312982, + [SMALL_STATE(6381)] = 312999, + [SMALL_STATE(6382)] = 313014, + [SMALL_STATE(6383)] = 313031, + [SMALL_STATE(6384)] = 313050, + [SMALL_STATE(6385)] = 313067, + [SMALL_STATE(6386)] = 313086, + [SMALL_STATE(6387)] = 313105, + [SMALL_STATE(6388)] = 313124, + [SMALL_STATE(6389)] = 313137, + [SMALL_STATE(6390)] = 313152, + [SMALL_STATE(6391)] = 313167, + [SMALL_STATE(6392)] = 313184, + [SMALL_STATE(6393)] = 313203, + [SMALL_STATE(6394)] = 313218, + [SMALL_STATE(6395)] = 313233, + [SMALL_STATE(6396)] = 313250, + [SMALL_STATE(6397)] = 313269, + [SMALL_STATE(6398)] = 313286, + [SMALL_STATE(6399)] = 313305, + [SMALL_STATE(6400)] = 313322, + [SMALL_STATE(6401)] = 313337, + [SMALL_STATE(6402)] = 313356, + [SMALL_STATE(6403)] = 313371, + [SMALL_STATE(6404)] = 313384, + [SMALL_STATE(6405)] = 313401, + [SMALL_STATE(6406)] = 313420, + [SMALL_STATE(6407)] = 313437, + [SMALL_STATE(6408)] = 313450, + [SMALL_STATE(6409)] = 313465, + [SMALL_STATE(6410)] = 313484, + [SMALL_STATE(6411)] = 313501, + [SMALL_STATE(6412)] = 313518, + [SMALL_STATE(6413)] = 313537, + [SMALL_STATE(6414)] = 313552, + [SMALL_STATE(6415)] = 313569, + [SMALL_STATE(6416)] = 313588, + [SMALL_STATE(6417)] = 313605, + [SMALL_STATE(6418)] = 313624, + [SMALL_STATE(6419)] = 313641, + [SMALL_STATE(6420)] = 313656, + [SMALL_STATE(6421)] = 313671, + [SMALL_STATE(6422)] = 313690, + [SMALL_STATE(6423)] = 313709, + [SMALL_STATE(6424)] = 313726, + [SMALL_STATE(6425)] = 313741, + [SMALL_STATE(6426)] = 313758, + [SMALL_STATE(6427)] = 313777, + [SMALL_STATE(6428)] = 313794, + [SMALL_STATE(6429)] = 313809, + [SMALL_STATE(6430)] = 313826, + [SMALL_STATE(6431)] = 313845, + [SMALL_STATE(6432)] = 313864, + [SMALL_STATE(6433)] = 313883, + [SMALL_STATE(6434)] = 313902, + [SMALL_STATE(6435)] = 313919, + [SMALL_STATE(6436)] = 313930, + [SMALL_STATE(6437)] = 313941, + [SMALL_STATE(6438)] = 313960, + [SMALL_STATE(6439)] = 313971, + [SMALL_STATE(6440)] = 313988, + [SMALL_STATE(6441)] = 314007, + [SMALL_STATE(6442)] = 314026, + [SMALL_STATE(6443)] = 314043, + [SMALL_STATE(6444)] = 314058, + [SMALL_STATE(6445)] = 314077, + [SMALL_STATE(6446)] = 314094, + [SMALL_STATE(6447)] = 314113, + [SMALL_STATE(6448)] = 314130, + [SMALL_STATE(6449)] = 314145, + [SMALL_STATE(6450)] = 314162, + [SMALL_STATE(6451)] = 314179, + [SMALL_STATE(6452)] = 314196, + [SMALL_STATE(6453)] = 314213, + [SMALL_STATE(6454)] = 314230, + [SMALL_STATE(6455)] = 314247, + [SMALL_STATE(6456)] = 314264, + [SMALL_STATE(6457)] = 314283, + [SMALL_STATE(6458)] = 314302, + [SMALL_STATE(6459)] = 314319, + [SMALL_STATE(6460)] = 314338, + [SMALL_STATE(6461)] = 314353, + [SMALL_STATE(6462)] = 314372, + [SMALL_STATE(6463)] = 314391, + [SMALL_STATE(6464)] = 314408, + [SMALL_STATE(6465)] = 314427, + [SMALL_STATE(6466)] = 314442, + [SMALL_STATE(6467)] = 314459, + [SMALL_STATE(6468)] = 314476, + [SMALL_STATE(6469)] = 314495, + [SMALL_STATE(6470)] = 314510, + [SMALL_STATE(6471)] = 314523, + [SMALL_STATE(6472)] = 314538, + [SMALL_STATE(6473)] = 314553, + [SMALL_STATE(6474)] = 314570, + [SMALL_STATE(6475)] = 314585, + [SMALL_STATE(6476)] = 314600, + [SMALL_STATE(6477)] = 314615, + [SMALL_STATE(6478)] = 314630, + [SMALL_STATE(6479)] = 314645, + [SMALL_STATE(6480)] = 314664, + [SMALL_STATE(6481)] = 314674, + [SMALL_STATE(6482)] = 314686, + [SMALL_STATE(6483)] = 314702, + [SMALL_STATE(6484)] = 314712, + [SMALL_STATE(6485)] = 314722, + [SMALL_STATE(6486)] = 314732, + [SMALL_STATE(6487)] = 314742, + [SMALL_STATE(6488)] = 314752, + [SMALL_STATE(6489)] = 314768, + [SMALL_STATE(6490)] = 314778, + [SMALL_STATE(6491)] = 314788, + [SMALL_STATE(6492)] = 314804, + [SMALL_STATE(6493)] = 314820, + [SMALL_STATE(6494)] = 314832, + [SMALL_STATE(6495)] = 314842, + [SMALL_STATE(6496)] = 314858, + [SMALL_STATE(6497)] = 314874, + [SMALL_STATE(6498)] = 314884, + [SMALL_STATE(6499)] = 314898, + [SMALL_STATE(6500)] = 314908, + [SMALL_STATE(6501)] = 314922, + [SMALL_STATE(6502)] = 314938, + [SMALL_STATE(6503)] = 314948, + [SMALL_STATE(6504)] = 314958, + [SMALL_STATE(6505)] = 314968, + [SMALL_STATE(6506)] = 314978, + [SMALL_STATE(6507)] = 314988, + [SMALL_STATE(6508)] = 314998, + [SMALL_STATE(6509)] = 315014, + [SMALL_STATE(6510)] = 315024, + [SMALL_STATE(6511)] = 315034, + [SMALL_STATE(6512)] = 315050, + [SMALL_STATE(6513)] = 315066, + [SMALL_STATE(6514)] = 315076, + [SMALL_STATE(6515)] = 315086, + [SMALL_STATE(6516)] = 315096, + [SMALL_STATE(6517)] = 315106, + [SMALL_STATE(6518)] = 315116, + [SMALL_STATE(6519)] = 315126, + [SMALL_STATE(6520)] = 315136, + [SMALL_STATE(6521)] = 315146, + [SMALL_STATE(6522)] = 315162, + [SMALL_STATE(6523)] = 315172, + [SMALL_STATE(6524)] = 315182, + [SMALL_STATE(6525)] = 315198, + [SMALL_STATE(6526)] = 315208, + [SMALL_STATE(6527)] = 315218, + [SMALL_STATE(6528)] = 315228, + [SMALL_STATE(6529)] = 315238, + [SMALL_STATE(6530)] = 315248, + [SMALL_STATE(6531)] = 315264, + [SMALL_STATE(6532)] = 315276, + [SMALL_STATE(6533)] = 315286, + [SMALL_STATE(6534)] = 315300, + [SMALL_STATE(6535)] = 315310, + [SMALL_STATE(6536)] = 315320, + [SMALL_STATE(6537)] = 315334, + [SMALL_STATE(6538)] = 315344, + [SMALL_STATE(6539)] = 315354, + [SMALL_STATE(6540)] = 315368, + [SMALL_STATE(6541)] = 315378, + [SMALL_STATE(6542)] = 315392, + [SMALL_STATE(6543)] = 315408, + [SMALL_STATE(6544)] = 315422, + [SMALL_STATE(6545)] = 315438, + [SMALL_STATE(6546)] = 315452, + [SMALL_STATE(6547)] = 315462, + [SMALL_STATE(6548)] = 315473, + [SMALL_STATE(6549)] = 315486, + [SMALL_STATE(6550)] = 315497, + [SMALL_STATE(6551)] = 315510, + [SMALL_STATE(6552)] = 315523, + [SMALL_STATE(6553)] = 315536, + [SMALL_STATE(6554)] = 315549, + [SMALL_STATE(6555)] = 315558, + [SMALL_STATE(6556)] = 315567, + [SMALL_STATE(6557)] = 315576, + [SMALL_STATE(6558)] = 315585, + [SMALL_STATE(6559)] = 315598, + [SMALL_STATE(6560)] = 315611, + [SMALL_STATE(6561)] = 315622, + [SMALL_STATE(6562)] = 315631, + [SMALL_STATE(6563)] = 315644, + [SMALL_STATE(6564)] = 315653, + [SMALL_STATE(6565)] = 315662, + [SMALL_STATE(6566)] = 315675, + [SMALL_STATE(6567)] = 315688, + [SMALL_STATE(6568)] = 315701, + [SMALL_STATE(6569)] = 315714, + [SMALL_STATE(6570)] = 315727, + [SMALL_STATE(6571)] = 315740, + [SMALL_STATE(6572)] = 315749, + [SMALL_STATE(6573)] = 315762, + [SMALL_STATE(6574)] = 315771, + [SMALL_STATE(6575)] = 315784, + [SMALL_STATE(6576)] = 315795, + [SMALL_STATE(6577)] = 315808, + [SMALL_STATE(6578)] = 315821, + [SMALL_STATE(6579)] = 315832, + [SMALL_STATE(6580)] = 315845, + [SMALL_STATE(6581)] = 315858, + [SMALL_STATE(6582)] = 315867, + [SMALL_STATE(6583)] = 315880, + [SMALL_STATE(6584)] = 315891, + [SMALL_STATE(6585)] = 315904, + [SMALL_STATE(6586)] = 315915, + [SMALL_STATE(6587)] = 315928, + [SMALL_STATE(6588)] = 315941, + [SMALL_STATE(6589)] = 315954, + [SMALL_STATE(6590)] = 315967, + [SMALL_STATE(6591)] = 315980, + [SMALL_STATE(6592)] = 315993, + [SMALL_STATE(6593)] = 316006, + [SMALL_STATE(6594)] = 316019, + [SMALL_STATE(6595)] = 316032, + [SMALL_STATE(6596)] = 316045, + [SMALL_STATE(6597)] = 316058, + [SMALL_STATE(6598)] = 316071, + [SMALL_STATE(6599)] = 316084, + [SMALL_STATE(6600)] = 316097, + [SMALL_STATE(6601)] = 316110, + [SMALL_STATE(6602)] = 316123, + [SMALL_STATE(6603)] = 316136, + [SMALL_STATE(6604)] = 316147, + [SMALL_STATE(6605)] = 316158, + [SMALL_STATE(6606)] = 316171, + [SMALL_STATE(6607)] = 316184, + [SMALL_STATE(6608)] = 316197, + [SMALL_STATE(6609)] = 316210, + [SMALL_STATE(6610)] = 316221, + [SMALL_STATE(6611)] = 316232, + [SMALL_STATE(6612)] = 316243, + [SMALL_STATE(6613)] = 316256, + [SMALL_STATE(6614)] = 316269, + [SMALL_STATE(6615)] = 316282, + [SMALL_STATE(6616)] = 316291, + [SMALL_STATE(6617)] = 316302, + [SMALL_STATE(6618)] = 316315, + [SMALL_STATE(6619)] = 316328, + [SMALL_STATE(6620)] = 316339, + [SMALL_STATE(6621)] = 316352, + [SMALL_STATE(6622)] = 316365, + [SMALL_STATE(6623)] = 316378, + [SMALL_STATE(6624)] = 316391, + [SMALL_STATE(6625)] = 316404, + [SMALL_STATE(6626)] = 316417, + [SMALL_STATE(6627)] = 316430, + [SMALL_STATE(6628)] = 316443, + [SMALL_STATE(6629)] = 316454, + [SMALL_STATE(6630)] = 316467, + [SMALL_STATE(6631)] = 316480, + [SMALL_STATE(6632)] = 316491, + [SMALL_STATE(6633)] = 316504, + [SMALL_STATE(6634)] = 316517, + [SMALL_STATE(6635)] = 316528, + [SMALL_STATE(6636)] = 316537, + [SMALL_STATE(6637)] = 316548, + [SMALL_STATE(6638)] = 316561, + [SMALL_STATE(6639)] = 316572, + [SMALL_STATE(6640)] = 316585, + [SMALL_STATE(6641)] = 316598, + [SMALL_STATE(6642)] = 316609, + [SMALL_STATE(6643)] = 316622, + [SMALL_STATE(6644)] = 316635, + [SMALL_STATE(6645)] = 316648, + [SMALL_STATE(6646)] = 316657, + [SMALL_STATE(6647)] = 316670, + [SMALL_STATE(6648)] = 316683, + [SMALL_STATE(6649)] = 316696, + [SMALL_STATE(6650)] = 316707, + [SMALL_STATE(6651)] = 316720, + [SMALL_STATE(6652)] = 316731, + [SMALL_STATE(6653)] = 316744, + [SMALL_STATE(6654)] = 316757, + [SMALL_STATE(6655)] = 316770, + [SMALL_STATE(6656)] = 316783, + [SMALL_STATE(6657)] = 316796, + [SMALL_STATE(6658)] = 316809, + [SMALL_STATE(6659)] = 316822, + [SMALL_STATE(6660)] = 316835, + [SMALL_STATE(6661)] = 316848, + [SMALL_STATE(6662)] = 316861, + [SMALL_STATE(6663)] = 316872, + [SMALL_STATE(6664)] = 316881, + [SMALL_STATE(6665)] = 316892, + [SMALL_STATE(6666)] = 316905, + [SMALL_STATE(6667)] = 316916, + [SMALL_STATE(6668)] = 316929, + [SMALL_STATE(6669)] = 316940, + [SMALL_STATE(6670)] = 316953, + [SMALL_STATE(6671)] = 316966, + [SMALL_STATE(6672)] = 316979, + [SMALL_STATE(6673)] = 316990, + [SMALL_STATE(6674)] = 317001, + [SMALL_STATE(6675)] = 317014, + [SMALL_STATE(6676)] = 317027, + [SMALL_STATE(6677)] = 317040, + [SMALL_STATE(6678)] = 317051, + [SMALL_STATE(6679)] = 317064, + [SMALL_STATE(6680)] = 317077, + [SMALL_STATE(6681)] = 317090, + [SMALL_STATE(6682)] = 317103, + [SMALL_STATE(6683)] = 317116, + [SMALL_STATE(6684)] = 317129, + [SMALL_STATE(6685)] = 317142, + [SMALL_STATE(6686)] = 317155, + [SMALL_STATE(6687)] = 317166, + [SMALL_STATE(6688)] = 317179, + [SMALL_STATE(6689)] = 317192, + [SMALL_STATE(6690)] = 317205, + [SMALL_STATE(6691)] = 317218, + [SMALL_STATE(6692)] = 317231, + [SMALL_STATE(6693)] = 317244, + [SMALL_STATE(6694)] = 317257, + [SMALL_STATE(6695)] = 317270, + [SMALL_STATE(6696)] = 317283, + [SMALL_STATE(6697)] = 317294, + [SMALL_STATE(6698)] = 317307, + [SMALL_STATE(6699)] = 317320, + [SMALL_STATE(6700)] = 317333, + [SMALL_STATE(6701)] = 317346, + [SMALL_STATE(6702)] = 317359, + [SMALL_STATE(6703)] = 317372, + [SMALL_STATE(6704)] = 317385, + [SMALL_STATE(6705)] = 317396, + [SMALL_STATE(6706)] = 317407, + [SMALL_STATE(6707)] = 317420, + [SMALL_STATE(6708)] = 317433, + [SMALL_STATE(6709)] = 317446, + [SMALL_STATE(6710)] = 317459, + [SMALL_STATE(6711)] = 317472, + [SMALL_STATE(6712)] = 317485, + [SMALL_STATE(6713)] = 317498, + [SMALL_STATE(6714)] = 317511, + [SMALL_STATE(6715)] = 317524, + [SMALL_STATE(6716)] = 317537, + [SMALL_STATE(6717)] = 317550, + [SMALL_STATE(6718)] = 317561, + [SMALL_STATE(6719)] = 317574, + [SMALL_STATE(6720)] = 317587, + [SMALL_STATE(6721)] = 317600, + [SMALL_STATE(6722)] = 317613, + [SMALL_STATE(6723)] = 317626, + [SMALL_STATE(6724)] = 317639, + [SMALL_STATE(6725)] = 317652, + [SMALL_STATE(6726)] = 317665, + [SMALL_STATE(6727)] = 317673, + [SMALL_STATE(6728)] = 317681, + [SMALL_STATE(6729)] = 317689, + [SMALL_STATE(6730)] = 317699, + [SMALL_STATE(6731)] = 317709, + [SMALL_STATE(6732)] = 317717, + [SMALL_STATE(6733)] = 317727, + [SMALL_STATE(6734)] = 317735, + [SMALL_STATE(6735)] = 317743, + [SMALL_STATE(6736)] = 317751, + [SMALL_STATE(6737)] = 317759, + [SMALL_STATE(6738)] = 317767, + [SMALL_STATE(6739)] = 317775, + [SMALL_STATE(6740)] = 317783, + [SMALL_STATE(6741)] = 317791, + [SMALL_STATE(6742)] = 317799, + [SMALL_STATE(6743)] = 317807, + [SMALL_STATE(6744)] = 317817, + [SMALL_STATE(6745)] = 317827, + [SMALL_STATE(6746)] = 317837, + [SMALL_STATE(6747)] = 317845, + [SMALL_STATE(6748)] = 317855, + [SMALL_STATE(6749)] = 317865, + [SMALL_STATE(6750)] = 317875, + [SMALL_STATE(6751)] = 317883, + [SMALL_STATE(6752)] = 317891, + [SMALL_STATE(6753)] = 317901, + [SMALL_STATE(6754)] = 317909, + [SMALL_STATE(6755)] = 317917, + [SMALL_STATE(6756)] = 317927, + [SMALL_STATE(6757)] = 317935, + [SMALL_STATE(6758)] = 317943, + [SMALL_STATE(6759)] = 317951, + [SMALL_STATE(6760)] = 317959, + [SMALL_STATE(6761)] = 317967, + [SMALL_STATE(6762)] = 317975, + [SMALL_STATE(6763)] = 317983, + [SMALL_STATE(6764)] = 317993, + [SMALL_STATE(6765)] = 318003, + [SMALL_STATE(6766)] = 318011, + [SMALL_STATE(6767)] = 318019, + [SMALL_STATE(6768)] = 318027, + [SMALL_STATE(6769)] = 318035, + [SMALL_STATE(6770)] = 318043, + [SMALL_STATE(6771)] = 318053, + [SMALL_STATE(6772)] = 318061, + [SMALL_STATE(6773)] = 318069, + [SMALL_STATE(6774)] = 318077, + [SMALL_STATE(6775)] = 318085, + [SMALL_STATE(6776)] = 318093, + [SMALL_STATE(6777)] = 318101, + [SMALL_STATE(6778)] = 318111, + [SMALL_STATE(6779)] = 318119, + [SMALL_STATE(6780)] = 318129, + [SMALL_STATE(6781)] = 318139, + [SMALL_STATE(6782)] = 318147, + [SMALL_STATE(6783)] = 318157, + [SMALL_STATE(6784)] = 318167, + [SMALL_STATE(6785)] = 318177, + [SMALL_STATE(6786)] = 318187, + [SMALL_STATE(6787)] = 318195, + [SMALL_STATE(6788)] = 318205, + [SMALL_STATE(6789)] = 318215, + [SMALL_STATE(6790)] = 318225, + [SMALL_STATE(6791)] = 318233, + [SMALL_STATE(6792)] = 318243, + [SMALL_STATE(6793)] = 318250, + [SMALL_STATE(6794)] = 318257, + [SMALL_STATE(6795)] = 318264, + [SMALL_STATE(6796)] = 318271, + [SMALL_STATE(6797)] = 318278, + [SMALL_STATE(6798)] = 318285, + [SMALL_STATE(6799)] = 318292, + [SMALL_STATE(6800)] = 318299, + [SMALL_STATE(6801)] = 318306, + [SMALL_STATE(6802)] = 318313, + [SMALL_STATE(6803)] = 318320, + [SMALL_STATE(6804)] = 318327, + [SMALL_STATE(6805)] = 318334, + [SMALL_STATE(6806)] = 318341, + [SMALL_STATE(6807)] = 318348, + [SMALL_STATE(6808)] = 318355, + [SMALL_STATE(6809)] = 318362, + [SMALL_STATE(6810)] = 318369, + [SMALL_STATE(6811)] = 318376, + [SMALL_STATE(6812)] = 318383, + [SMALL_STATE(6813)] = 318390, + [SMALL_STATE(6814)] = 318397, + [SMALL_STATE(6815)] = 318404, + [SMALL_STATE(6816)] = 318411, + [SMALL_STATE(6817)] = 318418, + [SMALL_STATE(6818)] = 318425, + [SMALL_STATE(6819)] = 318432, + [SMALL_STATE(6820)] = 318439, + [SMALL_STATE(6821)] = 318446, + [SMALL_STATE(6822)] = 318453, + [SMALL_STATE(6823)] = 318460, + [SMALL_STATE(6824)] = 318467, + [SMALL_STATE(6825)] = 318474, + [SMALL_STATE(6826)] = 318481, + [SMALL_STATE(6827)] = 318488, + [SMALL_STATE(6828)] = 318495, + [SMALL_STATE(6829)] = 318502, + [SMALL_STATE(6830)] = 318509, + [SMALL_STATE(6831)] = 318516, + [SMALL_STATE(6832)] = 318523, + [SMALL_STATE(6833)] = 318530, + [SMALL_STATE(6834)] = 318537, + [SMALL_STATE(6835)] = 318544, + [SMALL_STATE(6836)] = 318551, + [SMALL_STATE(6837)] = 318558, + [SMALL_STATE(6838)] = 318565, + [SMALL_STATE(6839)] = 318572, + [SMALL_STATE(6840)] = 318579, + [SMALL_STATE(6841)] = 318586, + [SMALL_STATE(6842)] = 318593, + [SMALL_STATE(6843)] = 318600, + [SMALL_STATE(6844)] = 318607, + [SMALL_STATE(6845)] = 318614, + [SMALL_STATE(6846)] = 318621, + [SMALL_STATE(6847)] = 318628, + [SMALL_STATE(6848)] = 318635, + [SMALL_STATE(6849)] = 318642, + [SMALL_STATE(6850)] = 318649, + [SMALL_STATE(6851)] = 318656, + [SMALL_STATE(6852)] = 318663, + [SMALL_STATE(6853)] = 318670, + [SMALL_STATE(6854)] = 318677, + [SMALL_STATE(6855)] = 318684, + [SMALL_STATE(6856)] = 318691, + [SMALL_STATE(6857)] = 318698, + [SMALL_STATE(6858)] = 318705, + [SMALL_STATE(6859)] = 318712, + [SMALL_STATE(6860)] = 318719, + [SMALL_STATE(6861)] = 318726, + [SMALL_STATE(6862)] = 318733, + [SMALL_STATE(6863)] = 318740, + [SMALL_STATE(6864)] = 318747, + [SMALL_STATE(6865)] = 318754, + [SMALL_STATE(6866)] = 318761, + [SMALL_STATE(6867)] = 318768, + [SMALL_STATE(6868)] = 318775, + [SMALL_STATE(6869)] = 318782, + [SMALL_STATE(6870)] = 318789, + [SMALL_STATE(6871)] = 318796, + [SMALL_STATE(6872)] = 318803, + [SMALL_STATE(6873)] = 318810, + [SMALL_STATE(6874)] = 318817, + [SMALL_STATE(6875)] = 318824, + [SMALL_STATE(6876)] = 318831, + [SMALL_STATE(6877)] = 318838, + [SMALL_STATE(6878)] = 318845, + [SMALL_STATE(6879)] = 318852, + [SMALL_STATE(6880)] = 318859, + [SMALL_STATE(6881)] = 318866, + [SMALL_STATE(6882)] = 318873, + [SMALL_STATE(6883)] = 318880, + [SMALL_STATE(6884)] = 318887, + [SMALL_STATE(6885)] = 318894, + [SMALL_STATE(6886)] = 318901, + [SMALL_STATE(6887)] = 318908, + [SMALL_STATE(6888)] = 318915, + [SMALL_STATE(6889)] = 318922, + [SMALL_STATE(6890)] = 318929, + [SMALL_STATE(6891)] = 318936, + [SMALL_STATE(6892)] = 318943, + [SMALL_STATE(6893)] = 318950, + [SMALL_STATE(6894)] = 318957, + [SMALL_STATE(6895)] = 318964, + [SMALL_STATE(6896)] = 318971, + [SMALL_STATE(6897)] = 318978, + [SMALL_STATE(6898)] = 318985, + [SMALL_STATE(6899)] = 318992, + [SMALL_STATE(6900)] = 318999, + [SMALL_STATE(6901)] = 319006, + [SMALL_STATE(6902)] = 319013, + [SMALL_STATE(6903)] = 319020, + [SMALL_STATE(6904)] = 319027, + [SMALL_STATE(6905)] = 319034, + [SMALL_STATE(6906)] = 319041, + [SMALL_STATE(6907)] = 319048, + [SMALL_STATE(6908)] = 319055, + [SMALL_STATE(6909)] = 319062, + [SMALL_STATE(6910)] = 319069, + [SMALL_STATE(6911)] = 319076, + [SMALL_STATE(6912)] = 319083, + [SMALL_STATE(6913)] = 319090, + [SMALL_STATE(6914)] = 319097, + [SMALL_STATE(6915)] = 319104, + [SMALL_STATE(6916)] = 319111, + [SMALL_STATE(6917)] = 319118, + [SMALL_STATE(6918)] = 319125, + [SMALL_STATE(6919)] = 319132, + [SMALL_STATE(6920)] = 319139, + [SMALL_STATE(6921)] = 319146, + [SMALL_STATE(6922)] = 319153, + [SMALL_STATE(6923)] = 319160, + [SMALL_STATE(6924)] = 319167, + [SMALL_STATE(6925)] = 319174, + [SMALL_STATE(6926)] = 319181, + [SMALL_STATE(6927)] = 319188, + [SMALL_STATE(6928)] = 319195, + [SMALL_STATE(6929)] = 319202, + [SMALL_STATE(6930)] = 319209, + [SMALL_STATE(6931)] = 319216, + [SMALL_STATE(6932)] = 319223, + [SMALL_STATE(6933)] = 319230, + [SMALL_STATE(6934)] = 319237, + [SMALL_STATE(6935)] = 319244, + [SMALL_STATE(6936)] = 319251, + [SMALL_STATE(6937)] = 319258, + [SMALL_STATE(6938)] = 319265, + [SMALL_STATE(6939)] = 319272, + [SMALL_STATE(6940)] = 319279, + [SMALL_STATE(6941)] = 319286, + [SMALL_STATE(6942)] = 319293, + [SMALL_STATE(6943)] = 319300, + [SMALL_STATE(6944)] = 319307, + [SMALL_STATE(6945)] = 319314, + [SMALL_STATE(6946)] = 319321, + [SMALL_STATE(6947)] = 319328, + [SMALL_STATE(6948)] = 319335, + [SMALL_STATE(6949)] = 319342, + [SMALL_STATE(6950)] = 319349, + [SMALL_STATE(6951)] = 319356, + [SMALL_STATE(6952)] = 319363, + [SMALL_STATE(6953)] = 319370, + [SMALL_STATE(6954)] = 319377, + [SMALL_STATE(6955)] = 319384, + [SMALL_STATE(6956)] = 319391, + [SMALL_STATE(6957)] = 319398, + [SMALL_STATE(6958)] = 319405, + [SMALL_STATE(6959)] = 319412, + [SMALL_STATE(6960)] = 319419, + [SMALL_STATE(6961)] = 319426, + [SMALL_STATE(6962)] = 319433, + [SMALL_STATE(6963)] = 319440, + [SMALL_STATE(6964)] = 319447, + [SMALL_STATE(6965)] = 319454, + [SMALL_STATE(6966)] = 319461, + [SMALL_STATE(6967)] = 319468, + [SMALL_STATE(6968)] = 319475, + [SMALL_STATE(6969)] = 319482, + [SMALL_STATE(6970)] = 319489, + [SMALL_STATE(6971)] = 319496, + [SMALL_STATE(6972)] = 319503, + [SMALL_STATE(6973)] = 319510, + [SMALL_STATE(6974)] = 319517, + [SMALL_STATE(6975)] = 319524, + [SMALL_STATE(6976)] = 319531, + [SMALL_STATE(6977)] = 319538, + [SMALL_STATE(6978)] = 319545, + [SMALL_STATE(6979)] = 319552, + [SMALL_STATE(6980)] = 319559, + [SMALL_STATE(6981)] = 319566, + [SMALL_STATE(6982)] = 319573, + [SMALL_STATE(6983)] = 319580, + [SMALL_STATE(6984)] = 319587, + [SMALL_STATE(6985)] = 319594, + [SMALL_STATE(6986)] = 319601, + [SMALL_STATE(6987)] = 319608, + [SMALL_STATE(6988)] = 319615, + [SMALL_STATE(6989)] = 319622, + [SMALL_STATE(6990)] = 319629, + [SMALL_STATE(6991)] = 319636, + [SMALL_STATE(6992)] = 319643, + [SMALL_STATE(6993)] = 319650, + [SMALL_STATE(6994)] = 319657, + [SMALL_STATE(6995)] = 319664, + [SMALL_STATE(6996)] = 319671, + [SMALL_STATE(6997)] = 319678, + [SMALL_STATE(6998)] = 319685, + [SMALL_STATE(6999)] = 319692, + [SMALL_STATE(7000)] = 319699, + [SMALL_STATE(7001)] = 319706, + [SMALL_STATE(7002)] = 319713, + [SMALL_STATE(7003)] = 319720, + [SMALL_STATE(7004)] = 319727, + [SMALL_STATE(7005)] = 319734, + [SMALL_STATE(7006)] = 319741, + [SMALL_STATE(7007)] = 319748, + [SMALL_STATE(7008)] = 319755, + [SMALL_STATE(7009)] = 319762, + [SMALL_STATE(7010)] = 319769, + [SMALL_STATE(7011)] = 319776, + [SMALL_STATE(7012)] = 319783, + [SMALL_STATE(7013)] = 319790, + [SMALL_STATE(7014)] = 319797, + [SMALL_STATE(7015)] = 319804, + [SMALL_STATE(7016)] = 319811, + [SMALL_STATE(7017)] = 319818, + [SMALL_STATE(7018)] = 319825, + [SMALL_STATE(7019)] = 319832, + [SMALL_STATE(7020)] = 319839, + [SMALL_STATE(7021)] = 319846, + [SMALL_STATE(7022)] = 319853, + [SMALL_STATE(7023)] = 319860, + [SMALL_STATE(7024)] = 319867, + [SMALL_STATE(7025)] = 319874, + [SMALL_STATE(7026)] = 319881, + [SMALL_STATE(7027)] = 319888, + [SMALL_STATE(7028)] = 319895, + [SMALL_STATE(7029)] = 319902, + [SMALL_STATE(7030)] = 319909, + [SMALL_STATE(7031)] = 319916, + [SMALL_STATE(7032)] = 319923, + [SMALL_STATE(7033)] = 319930, + [SMALL_STATE(7034)] = 319937, + [SMALL_STATE(7035)] = 319944, + [SMALL_STATE(7036)] = 319951, + [SMALL_STATE(7037)] = 319958, + [SMALL_STATE(7038)] = 319965, + [SMALL_STATE(7039)] = 319972, + [SMALL_STATE(7040)] = 319979, + [SMALL_STATE(7041)] = 319986, + [SMALL_STATE(7042)] = 319993, + [SMALL_STATE(7043)] = 320000, + [SMALL_STATE(7044)] = 320007, + [SMALL_STATE(7045)] = 320014, + [SMALL_STATE(7046)] = 320021, + [SMALL_STATE(7047)] = 320028, + [SMALL_STATE(7048)] = 320035, + [SMALL_STATE(7049)] = 320042, + [SMALL_STATE(7050)] = 320049, + [SMALL_STATE(7051)] = 320056, + [SMALL_STATE(7052)] = 320063, + [SMALL_STATE(7053)] = 320070, + [SMALL_STATE(7054)] = 320077, + [SMALL_STATE(7055)] = 320084, + [SMALL_STATE(7056)] = 320091, + [SMALL_STATE(7057)] = 320098, + [SMALL_STATE(7058)] = 320105, + [SMALL_STATE(7059)] = 320112, + [SMALL_STATE(7060)] = 320119, + [SMALL_STATE(7061)] = 320126, + [SMALL_STATE(7062)] = 320133, + [SMALL_STATE(7063)] = 320140, + [SMALL_STATE(7064)] = 320147, + [SMALL_STATE(7065)] = 320154, + [SMALL_STATE(7066)] = 320161, + [SMALL_STATE(7067)] = 320168, + [SMALL_STATE(7068)] = 320175, + [SMALL_STATE(7069)] = 320182, + [SMALL_STATE(7070)] = 320189, + [SMALL_STATE(7071)] = 320196, + [SMALL_STATE(7072)] = 320203, + [SMALL_STATE(7073)] = 320210, + [SMALL_STATE(7074)] = 320217, + [SMALL_STATE(7075)] = 320224, + [SMALL_STATE(7076)] = 320231, + [SMALL_STATE(7077)] = 320238, + [SMALL_STATE(7078)] = 320245, + [SMALL_STATE(7079)] = 320252, + [SMALL_STATE(7080)] = 320259, + [SMALL_STATE(7081)] = 320266, + [SMALL_STATE(7082)] = 320273, + [SMALL_STATE(7083)] = 320280, + [SMALL_STATE(7084)] = 320287, + [SMALL_STATE(7085)] = 320294, + [SMALL_STATE(7086)] = 320301, + [SMALL_STATE(7087)] = 320308, + [SMALL_STATE(7088)] = 320315, + [SMALL_STATE(7089)] = 320322, + [SMALL_STATE(7090)] = 320329, + [SMALL_STATE(7091)] = 320336, + [SMALL_STATE(7092)] = 320343, + [SMALL_STATE(7093)] = 320350, + [SMALL_STATE(7094)] = 320357, + [SMALL_STATE(7095)] = 320364, + [SMALL_STATE(7096)] = 320371, + [SMALL_STATE(7097)] = 320378, + [SMALL_STATE(7098)] = 320385, + [SMALL_STATE(7099)] = 320392, + [SMALL_STATE(7100)] = 320399, + [SMALL_STATE(7101)] = 320406, + [SMALL_STATE(7102)] = 320413, + [SMALL_STATE(7103)] = 320420, + [SMALL_STATE(7104)] = 320427, + [SMALL_STATE(7105)] = 320434, + [SMALL_STATE(7106)] = 320441, + [SMALL_STATE(7107)] = 320448, + [SMALL_STATE(7108)] = 320455, + [SMALL_STATE(7109)] = 320462, + [SMALL_STATE(7110)] = 320469, + [SMALL_STATE(7111)] = 320476, + [SMALL_STATE(7112)] = 320483, + [SMALL_STATE(7113)] = 320490, + [SMALL_STATE(7114)] = 320497, + [SMALL_STATE(7115)] = 320504, + [SMALL_STATE(7116)] = 320511, + [SMALL_STATE(7117)] = 320518, + [SMALL_STATE(7118)] = 320525, + [SMALL_STATE(7119)] = 320532, + [SMALL_STATE(7120)] = 320539, + [SMALL_STATE(7121)] = 320546, + [SMALL_STATE(7122)] = 320553, + [SMALL_STATE(7123)] = 320560, + [SMALL_STATE(7124)] = 320567, + [SMALL_STATE(7125)] = 320574, + [SMALL_STATE(7126)] = 320581, + [SMALL_STATE(7127)] = 320588, + [SMALL_STATE(7128)] = 320595, + [SMALL_STATE(7129)] = 320602, + [SMALL_STATE(7130)] = 320609, + [SMALL_STATE(7131)] = 320616, + [SMALL_STATE(7132)] = 320623, + [SMALL_STATE(7133)] = 320630, + [SMALL_STATE(7134)] = 320637, + [SMALL_STATE(7135)] = 320644, + [SMALL_STATE(7136)] = 320651, + [SMALL_STATE(7137)] = 320658, + [SMALL_STATE(7138)] = 320665, + [SMALL_STATE(7139)] = 320672, + [SMALL_STATE(7140)] = 320679, + [SMALL_STATE(7141)] = 320686, + [SMALL_STATE(7142)] = 320693, + [SMALL_STATE(7143)] = 320700, + [SMALL_STATE(7144)] = 320707, + [SMALL_STATE(7145)] = 320714, + [SMALL_STATE(7146)] = 320721, + [SMALL_STATE(7147)] = 320728, + [SMALL_STATE(7148)] = 320735, + [SMALL_STATE(7149)] = 320742, + [SMALL_STATE(7150)] = 320749, + [SMALL_STATE(7151)] = 320756, + [SMALL_STATE(7152)] = 320763, + [SMALL_STATE(7153)] = 320770, + [SMALL_STATE(7154)] = 320777, + [SMALL_STATE(7155)] = 320784, + [SMALL_STATE(7156)] = 320791, + [SMALL_STATE(7157)] = 320798, + [SMALL_STATE(7158)] = 320805, + [SMALL_STATE(7159)] = 320812, + [SMALL_STATE(7160)] = 320819, + [SMALL_STATE(7161)] = 320826, + [SMALL_STATE(7162)] = 320833, + [SMALL_STATE(7163)] = 320840, + [SMALL_STATE(7164)] = 320847, + [SMALL_STATE(7165)] = 320854, + [SMALL_STATE(7166)] = 320861, + [SMALL_STATE(7167)] = 320868, + [SMALL_STATE(7168)] = 320875, + [SMALL_STATE(7169)] = 320882, + [SMALL_STATE(7170)] = 320889, + [SMALL_STATE(7171)] = 320896, + [SMALL_STATE(7172)] = 320903, + [SMALL_STATE(7173)] = 320910, + [SMALL_STATE(7174)] = 320917, + [SMALL_STATE(7175)] = 320924, + [SMALL_STATE(7176)] = 320931, + [SMALL_STATE(7177)] = 320938, + [SMALL_STATE(7178)] = 320945, + [SMALL_STATE(7179)] = 320952, + [SMALL_STATE(7180)] = 320959, + [SMALL_STATE(7181)] = 320966, + [SMALL_STATE(7182)] = 320973, + [SMALL_STATE(7183)] = 320980, + [SMALL_STATE(7184)] = 320987, + [SMALL_STATE(7185)] = 320994, + [SMALL_STATE(7186)] = 321001, + [SMALL_STATE(7187)] = 321008, + [SMALL_STATE(7188)] = 321015, + [SMALL_STATE(7189)] = 321022, + [SMALL_STATE(7190)] = 321029, + [SMALL_STATE(7191)] = 321036, + [SMALL_STATE(7192)] = 321043, + [SMALL_STATE(7193)] = 321050, + [SMALL_STATE(7194)] = 321057, + [SMALL_STATE(7195)] = 321064, + [SMALL_STATE(7196)] = 321071, + [SMALL_STATE(7197)] = 321078, + [SMALL_STATE(7198)] = 321085, + [SMALL_STATE(7199)] = 321092, + [SMALL_STATE(7200)] = 321099, + [SMALL_STATE(7201)] = 321106, + [SMALL_STATE(7202)] = 321113, + [SMALL_STATE(7203)] = 321120, + [SMALL_STATE(7204)] = 321127, + [SMALL_STATE(7205)] = 321134, + [SMALL_STATE(7206)] = 321141, + [SMALL_STATE(7207)] = 321148, + [SMALL_STATE(7208)] = 321155, + [SMALL_STATE(7209)] = 321162, + [SMALL_STATE(7210)] = 321169, + [SMALL_STATE(7211)] = 321176, + [SMALL_STATE(7212)] = 321183, + [SMALL_STATE(7213)] = 321190, + [SMALL_STATE(7214)] = 321197, + [SMALL_STATE(7215)] = 321204, + [SMALL_STATE(7216)] = 321211, + [SMALL_STATE(7217)] = 321218, + [SMALL_STATE(7218)] = 321225, + [SMALL_STATE(7219)] = 321232, + [SMALL_STATE(7220)] = 321239, + [SMALL_STATE(7221)] = 321246, + [SMALL_STATE(7222)] = 321253, + [SMALL_STATE(7223)] = 321260, + [SMALL_STATE(7224)] = 321267, + [SMALL_STATE(7225)] = 321274, + [SMALL_STATE(7226)] = 321281, + [SMALL_STATE(7227)] = 321288, + [SMALL_STATE(7228)] = 321295, + [SMALL_STATE(7229)] = 321302, + [SMALL_STATE(7230)] = 321309, + [SMALL_STATE(7231)] = 321316, + [SMALL_STATE(7232)] = 321323, + [SMALL_STATE(7233)] = 321330, + [SMALL_STATE(7234)] = 321337, + [SMALL_STATE(7235)] = 321344, + [SMALL_STATE(7236)] = 321351, + [SMALL_STATE(7237)] = 321358, + [SMALL_STATE(7238)] = 321365, + [SMALL_STATE(7239)] = 321372, + [SMALL_STATE(7240)] = 321379, + [SMALL_STATE(7241)] = 321386, + [SMALL_STATE(7242)] = 321393, + [SMALL_STATE(7243)] = 321400, + [SMALL_STATE(7244)] = 321407, + [SMALL_STATE(7245)] = 321414, + [SMALL_STATE(7246)] = 321421, + [SMALL_STATE(7247)] = 321428, + [SMALL_STATE(7248)] = 321435, + [SMALL_STATE(7249)] = 321442, + [SMALL_STATE(7250)] = 321449, + [SMALL_STATE(7251)] = 321456, + [SMALL_STATE(7252)] = 321463, + [SMALL_STATE(7253)] = 321470, + [SMALL_STATE(7254)] = 321477, + [SMALL_STATE(7255)] = 321484, + [SMALL_STATE(7256)] = 321491, + [SMALL_STATE(7257)] = 321498, + [SMALL_STATE(7258)] = 321505, + [SMALL_STATE(7259)] = 321512, + [SMALL_STATE(7260)] = 321519, + [SMALL_STATE(7261)] = 321526, + [SMALL_STATE(7262)] = 321533, + [SMALL_STATE(7263)] = 321540, + [SMALL_STATE(7264)] = 321547, + [SMALL_STATE(7265)] = 321554, + [SMALL_STATE(7266)] = 321561, + [SMALL_STATE(7267)] = 321568, + [SMALL_STATE(7268)] = 321575, + [SMALL_STATE(7269)] = 321582, + [SMALL_STATE(7270)] = 321589, + [SMALL_STATE(7271)] = 321596, + [SMALL_STATE(7272)] = 321603, + [SMALL_STATE(7273)] = 321610, + [SMALL_STATE(7274)] = 321617, + [SMALL_STATE(7275)] = 321624, + [SMALL_STATE(7276)] = 321631, + [SMALL_STATE(7277)] = 321638, + [SMALL_STATE(7278)] = 321645, + [SMALL_STATE(7279)] = 321652, + [SMALL_STATE(7280)] = 321659, + [SMALL_STATE(7281)] = 321666, + [SMALL_STATE(7282)] = 321673, + [SMALL_STATE(7283)] = 321680, + [SMALL_STATE(7284)] = 321687, + [SMALL_STATE(7285)] = 321694, + [SMALL_STATE(7286)] = 321701, + [SMALL_STATE(7287)] = 321708, + [SMALL_STATE(7288)] = 321715, + [SMALL_STATE(7289)] = 321722, + [SMALL_STATE(7290)] = 321729, + [SMALL_STATE(7291)] = 321736, + [SMALL_STATE(7292)] = 321743, + [SMALL_STATE(7293)] = 321750, + [SMALL_STATE(7294)] = 321757, + [SMALL_STATE(7295)] = 321764, + [SMALL_STATE(7296)] = 321771, + [SMALL_STATE(7297)] = 321778, + [SMALL_STATE(7298)] = 321785, + [SMALL_STATE(7299)] = 321792, + [SMALL_STATE(7300)] = 321799, + [SMALL_STATE(7301)] = 321806, + [SMALL_STATE(7302)] = 321813, + [SMALL_STATE(7303)] = 321820, + [SMALL_STATE(7304)] = 321827, + [SMALL_STATE(7305)] = 321834, + [SMALL_STATE(7306)] = 321841, + [SMALL_STATE(7307)] = 321848, + [SMALL_STATE(7308)] = 321855, + [SMALL_STATE(7309)] = 321862, + [SMALL_STATE(7310)] = 321869, + [SMALL_STATE(7311)] = 321876, + [SMALL_STATE(7312)] = 321883, + [SMALL_STATE(7313)] = 321890, + [SMALL_STATE(7314)] = 321897, + [SMALL_STATE(7315)] = 321904, + [SMALL_STATE(7316)] = 321911, + [SMALL_STATE(7317)] = 321918, + [SMALL_STATE(7318)] = 321925, + [SMALL_STATE(7319)] = 321932, + [SMALL_STATE(7320)] = 321939, + [SMALL_STATE(7321)] = 321946, + [SMALL_STATE(7322)] = 321953, + [SMALL_STATE(7323)] = 321960, + [SMALL_STATE(7324)] = 321967, + [SMALL_STATE(7325)] = 321974, + [SMALL_STATE(7326)] = 321981, + [SMALL_STATE(7327)] = 321988, + [SMALL_STATE(7328)] = 321995, + [SMALL_STATE(7329)] = 322002, + [SMALL_STATE(7330)] = 322009, + [SMALL_STATE(7331)] = 322016, + [SMALL_STATE(7332)] = 322023, + [SMALL_STATE(7333)] = 322030, + [SMALL_STATE(7334)] = 322037, + [SMALL_STATE(7335)] = 322044, + [SMALL_STATE(7336)] = 322051, + [SMALL_STATE(7337)] = 322058, + [SMALL_STATE(7338)] = 322065, + [SMALL_STATE(7339)] = 322072, + [SMALL_STATE(7340)] = 322079, + [SMALL_STATE(7341)] = 322086, + [SMALL_STATE(7342)] = 322093, + [SMALL_STATE(7343)] = 322100, + [SMALL_STATE(7344)] = 322107, + [SMALL_STATE(7345)] = 322114, + [SMALL_STATE(7346)] = 322121, + [SMALL_STATE(7347)] = 322128, + [SMALL_STATE(7348)] = 322135, + [SMALL_STATE(7349)] = 322142, + [SMALL_STATE(7350)] = 322149, + [SMALL_STATE(7351)] = 322156, + [SMALL_STATE(7352)] = 322163, + [SMALL_STATE(7353)] = 322170, + [SMALL_STATE(7354)] = 322177, + [SMALL_STATE(7355)] = 322184, + [SMALL_STATE(7356)] = 322191, + [SMALL_STATE(7357)] = 322198, + [SMALL_STATE(7358)] = 322205, + [SMALL_STATE(7359)] = 322212, + [SMALL_STATE(7360)] = 322219, + [SMALL_STATE(7361)] = 322226, + [SMALL_STATE(7362)] = 322233, + [SMALL_STATE(7363)] = 322240, + [SMALL_STATE(7364)] = 322247, + [SMALL_STATE(7365)] = 322254, + [SMALL_STATE(7366)] = 322261, + [SMALL_STATE(7367)] = 322268, + [SMALL_STATE(7368)] = 322275, + [SMALL_STATE(7369)] = 322282, + [SMALL_STATE(7370)] = 322289, + [SMALL_STATE(7371)] = 322296, + [SMALL_STATE(7372)] = 322303, + [SMALL_STATE(7373)] = 322310, + [SMALL_STATE(7374)] = 322317, + [SMALL_STATE(7375)] = 322324, + [SMALL_STATE(7376)] = 322331, + [SMALL_STATE(7377)] = 322338, + [SMALL_STATE(7378)] = 322345, + [SMALL_STATE(7379)] = 322352, + [SMALL_STATE(7380)] = 322359, + [SMALL_STATE(7381)] = 322366, + [SMALL_STATE(7382)] = 322373, + [SMALL_STATE(7383)] = 322380, + [SMALL_STATE(7384)] = 322387, + [SMALL_STATE(7385)] = 322394, + [SMALL_STATE(7386)] = 322401, + [SMALL_STATE(7387)] = 322408, + [SMALL_STATE(7388)] = 322415, + [SMALL_STATE(7389)] = 322422, + [SMALL_STATE(7390)] = 322429, + [SMALL_STATE(7391)] = 322436, + [SMALL_STATE(7392)] = 322443, + [SMALL_STATE(7393)] = 322450, + [SMALL_STATE(7394)] = 322457, + [SMALL_STATE(7395)] = 322464, + [SMALL_STATE(7396)] = 322471, + [SMALL_STATE(7397)] = 322478, + [SMALL_STATE(7398)] = 322485, + [SMALL_STATE(7399)] = 322492, + [SMALL_STATE(7400)] = 322499, + [SMALL_STATE(7401)] = 322506, + [SMALL_STATE(7402)] = 322513, + [SMALL_STATE(7403)] = 322520, + [SMALL_STATE(7404)] = 322527, + [SMALL_STATE(7405)] = 322534, + [SMALL_STATE(7406)] = 322541, + [SMALL_STATE(7407)] = 322548, + [SMALL_STATE(7408)] = 322555, + [SMALL_STATE(7409)] = 322562, + [SMALL_STATE(7410)] = 322569, + [SMALL_STATE(7411)] = 322576, + [SMALL_STATE(7412)] = 322583, + [SMALL_STATE(7413)] = 322590, + [SMALL_STATE(7414)] = 322597, + [SMALL_STATE(7415)] = 322604, + [SMALL_STATE(7416)] = 322611, + [SMALL_STATE(7417)] = 322618, + [SMALL_STATE(7418)] = 322625, + [SMALL_STATE(7419)] = 322632, + [SMALL_STATE(7420)] = 322639, + [SMALL_STATE(7421)] = 322646, + [SMALL_STATE(7422)] = 322653, + [SMALL_STATE(7423)] = 322660, + [SMALL_STATE(7424)] = 322667, + [SMALL_STATE(7425)] = 322674, + [SMALL_STATE(7426)] = 322681, + [SMALL_STATE(7427)] = 322688, + [SMALL_STATE(7428)] = 322695, + [SMALL_STATE(7429)] = 322702, + [SMALL_STATE(7430)] = 322709, + [SMALL_STATE(7431)] = 322716, + [SMALL_STATE(7432)] = 322723, + [SMALL_STATE(7433)] = 322730, + [SMALL_STATE(7434)] = 322737, + [SMALL_STATE(7435)] = 322744, + [SMALL_STATE(7436)] = 322751, + [SMALL_STATE(7437)] = 322758, + [SMALL_STATE(7438)] = 322765, + [SMALL_STATE(7439)] = 322772, + [SMALL_STATE(7440)] = 322779, + [SMALL_STATE(7441)] = 322786, + [SMALL_STATE(7442)] = 322793, + [SMALL_STATE(7443)] = 322800, + [SMALL_STATE(7444)] = 322807, + [SMALL_STATE(7445)] = 322814, + [SMALL_STATE(7446)] = 322821, + [SMALL_STATE(7447)] = 322828, + [SMALL_STATE(7448)] = 322835, + [SMALL_STATE(7449)] = 322842, + [SMALL_STATE(7450)] = 322849, + [SMALL_STATE(7451)] = 322856, + [SMALL_STATE(7452)] = 322863, + [SMALL_STATE(7453)] = 322870, + [SMALL_STATE(7454)] = 322877, + [SMALL_STATE(7455)] = 322884, + [SMALL_STATE(7456)] = 322891, + [SMALL_STATE(7457)] = 322898, + [SMALL_STATE(7458)] = 322905, + [SMALL_STATE(7459)] = 322912, + [SMALL_STATE(7460)] = 322919, + [SMALL_STATE(7461)] = 322926, + [SMALL_STATE(7462)] = 322933, + [SMALL_STATE(7463)] = 322940, + [SMALL_STATE(7464)] = 322947, + [SMALL_STATE(7465)] = 322954, + [SMALL_STATE(7466)] = 322961, + [SMALL_STATE(7467)] = 322968, + [SMALL_STATE(7468)] = 322975, + [SMALL_STATE(7469)] = 322982, + [SMALL_STATE(7470)] = 322989, + [SMALL_STATE(7471)] = 322996, + [SMALL_STATE(7472)] = 323003, + [SMALL_STATE(7473)] = 323010, + [SMALL_STATE(7474)] = 323017, + [SMALL_STATE(7475)] = 323024, + [SMALL_STATE(7476)] = 323031, + [SMALL_STATE(7477)] = 323038, + [SMALL_STATE(7478)] = 323045, + [SMALL_STATE(7479)] = 323052, + [SMALL_STATE(7480)] = 323059, + [SMALL_STATE(7481)] = 323066, + [SMALL_STATE(7482)] = 323073, + [SMALL_STATE(7483)] = 323080, + [SMALL_STATE(7484)] = 323087, + [SMALL_STATE(7485)] = 323094, + [SMALL_STATE(7486)] = 323101, + [SMALL_STATE(7487)] = 323108, + [SMALL_STATE(7488)] = 323115, + [SMALL_STATE(7489)] = 323122, + [SMALL_STATE(7490)] = 323129, + [SMALL_STATE(7491)] = 323136, + [SMALL_STATE(7492)] = 323143, + [SMALL_STATE(7493)] = 323150, + [SMALL_STATE(7494)] = 323157, + [SMALL_STATE(7495)] = 323164, + [SMALL_STATE(7496)] = 323171, + [SMALL_STATE(7497)] = 323178, + [SMALL_STATE(7498)] = 323185, + [SMALL_STATE(7499)] = 323192, + [SMALL_STATE(7500)] = 323199, + [SMALL_STATE(7501)] = 323206, + [SMALL_STATE(7502)] = 323213, + [SMALL_STATE(7503)] = 323220, + [SMALL_STATE(7504)] = 323227, + [SMALL_STATE(7505)] = 323234, + [SMALL_STATE(7506)] = 323241, + [SMALL_STATE(7507)] = 323248, + [SMALL_STATE(7508)] = 323255, + [SMALL_STATE(7509)] = 323262, + [SMALL_STATE(7510)] = 323269, + [SMALL_STATE(7511)] = 323276, + [SMALL_STATE(7512)] = 323283, + [SMALL_STATE(7513)] = 323290, + [SMALL_STATE(7514)] = 323297, + [SMALL_STATE(7515)] = 323304, + [SMALL_STATE(7516)] = 323311, + [SMALL_STATE(7517)] = 323318, + [SMALL_STATE(7518)] = 323325, + [SMALL_STATE(7519)] = 323332, + [SMALL_STATE(7520)] = 323339, + [SMALL_STATE(7521)] = 323346, + [SMALL_STATE(7522)] = 323353, + [SMALL_STATE(7523)] = 323360, + [SMALL_STATE(7524)] = 323367, + [SMALL_STATE(7525)] = 323374, + [SMALL_STATE(7526)] = 323381, + [SMALL_STATE(7527)] = 323388, + [SMALL_STATE(7528)] = 323395, + [SMALL_STATE(7529)] = 323402, + [SMALL_STATE(7530)] = 323409, + [SMALL_STATE(7531)] = 323416, + [SMALL_STATE(7532)] = 323423, + [SMALL_STATE(7533)] = 323430, + [SMALL_STATE(7534)] = 323437, + [SMALL_STATE(7535)] = 323444, + [SMALL_STATE(7536)] = 323451, + [SMALL_STATE(7537)] = 323458, + [SMALL_STATE(7538)] = 323465, + [SMALL_STATE(7539)] = 323472, + [SMALL_STATE(7540)] = 323479, + [SMALL_STATE(7541)] = 323486, + [SMALL_STATE(7542)] = 323493, + [SMALL_STATE(7543)] = 323500, + [SMALL_STATE(7544)] = 323507, + [SMALL_STATE(7545)] = 323514, + [SMALL_STATE(7546)] = 323521, + [SMALL_STATE(7547)] = 323528, + [SMALL_STATE(7548)] = 323535, + [SMALL_STATE(7549)] = 323542, + [SMALL_STATE(7550)] = 323549, + [SMALL_STATE(7551)] = 323556, + [SMALL_STATE(7552)] = 323563, + [SMALL_STATE(7553)] = 323570, + [SMALL_STATE(7554)] = 323577, + [SMALL_STATE(7555)] = 323584, + [SMALL_STATE(7556)] = 323591, + [SMALL_STATE(7557)] = 323598, + [SMALL_STATE(7558)] = 323605, + [SMALL_STATE(7559)] = 323612, + [SMALL_STATE(7560)] = 323619, + [SMALL_STATE(7561)] = 323626, + [SMALL_STATE(7562)] = 323633, + [SMALL_STATE(7563)] = 323640, + [SMALL_STATE(7564)] = 323647, + [SMALL_STATE(7565)] = 323654, + [SMALL_STATE(7566)] = 323661, + [SMALL_STATE(7567)] = 323668, + [SMALL_STATE(7568)] = 323675, + [SMALL_STATE(7569)] = 323682, + [SMALL_STATE(7570)] = 323689, + [SMALL_STATE(7571)] = 323696, + [SMALL_STATE(7572)] = 323703, + [SMALL_STATE(7573)] = 323710, + [SMALL_STATE(7574)] = 323717, + [SMALL_STATE(7575)] = 323724, + [SMALL_STATE(7576)] = 323731, + [SMALL_STATE(7577)] = 323738, + [SMALL_STATE(7578)] = 323745, + [SMALL_STATE(7579)] = 323752, + [SMALL_STATE(7580)] = 323759, + [SMALL_STATE(7581)] = 323766, + [SMALL_STATE(7582)] = 323773, + [SMALL_STATE(7583)] = 323780, + [SMALL_STATE(7584)] = 323787, + [SMALL_STATE(7585)] = 323794, + [SMALL_STATE(7586)] = 323801, + [SMALL_STATE(7587)] = 323808, + [SMALL_STATE(7588)] = 323815, + [SMALL_STATE(7589)] = 323822, + [SMALL_STATE(7590)] = 323829, + [SMALL_STATE(7591)] = 323836, + [SMALL_STATE(7592)] = 323843, + [SMALL_STATE(7593)] = 323850, + [SMALL_STATE(7594)] = 323857, + [SMALL_STATE(7595)] = 323864, + [SMALL_STATE(7596)] = 323871, + [SMALL_STATE(7597)] = 323878, + [SMALL_STATE(7598)] = 323885, + [SMALL_STATE(7599)] = 323892, + [SMALL_STATE(7600)] = 323899, + [SMALL_STATE(7601)] = 323906, + [SMALL_STATE(7602)] = 323913, + [SMALL_STATE(7603)] = 323920, + [SMALL_STATE(7604)] = 323927, + [SMALL_STATE(7605)] = 323934, + [SMALL_STATE(7606)] = 323941, + [SMALL_STATE(7607)] = 323948, + [SMALL_STATE(7608)] = 323955, + [SMALL_STATE(7609)] = 323962, + [SMALL_STATE(7610)] = 323969, + [SMALL_STATE(7611)] = 323976, + [SMALL_STATE(7612)] = 323983, + [SMALL_STATE(7613)] = 323990, + [SMALL_STATE(7614)] = 323997, + [SMALL_STATE(7615)] = 324004, + [SMALL_STATE(7616)] = 324011, + [SMALL_STATE(7617)] = 324018, + [SMALL_STATE(7618)] = 324025, + [SMALL_STATE(7619)] = 324032, + [SMALL_STATE(7620)] = 324039, + [SMALL_STATE(7621)] = 324046, + [SMALL_STATE(7622)] = 324053, + [SMALL_STATE(7623)] = 324060, + [SMALL_STATE(7624)] = 324067, + [SMALL_STATE(7625)] = 324074, + [SMALL_STATE(7626)] = 324081, + [SMALL_STATE(7627)] = 324088, + [SMALL_STATE(7628)] = 324095, + [SMALL_STATE(7629)] = 324102, + [SMALL_STATE(7630)] = 324109, + [SMALL_STATE(7631)] = 324116, + [SMALL_STATE(7632)] = 324123, + [SMALL_STATE(7633)] = 324130, + [SMALL_STATE(7634)] = 324137, + [SMALL_STATE(7635)] = 324144, + [SMALL_STATE(7636)] = 324151, + [SMALL_STATE(7637)] = 324158, + [SMALL_STATE(7638)] = 324165, + [SMALL_STATE(7639)] = 324172, + [SMALL_STATE(7640)] = 324179, + [SMALL_STATE(7641)] = 324186, + [SMALL_STATE(7642)] = 324193, + [SMALL_STATE(7643)] = 324200, + [SMALL_STATE(7644)] = 324207, + [SMALL_STATE(7645)] = 324214, + [SMALL_STATE(7646)] = 324221, + [SMALL_STATE(7647)] = 324228, + [SMALL_STATE(7648)] = 324235, + [SMALL_STATE(7649)] = 324242, + [SMALL_STATE(7650)] = 324249, + [SMALL_STATE(7651)] = 324256, + [SMALL_STATE(7652)] = 324263, + [SMALL_STATE(7653)] = 324270, + [SMALL_STATE(7654)] = 324277, + [SMALL_STATE(7655)] = 324284, + [SMALL_STATE(7656)] = 324291, + [SMALL_STATE(7657)] = 324298, + [SMALL_STATE(7658)] = 324305, + [SMALL_STATE(7659)] = 324312, + [SMALL_STATE(7660)] = 324319, + [SMALL_STATE(7661)] = 324326, + [SMALL_STATE(7662)] = 324333, + [SMALL_STATE(7663)] = 324340, + [SMALL_STATE(7664)] = 324347, + [SMALL_STATE(7665)] = 324354, + [SMALL_STATE(7666)] = 324361, + [SMALL_STATE(7667)] = 324368, + [SMALL_STATE(7668)] = 324375, + [SMALL_STATE(7669)] = 324382, + [SMALL_STATE(7670)] = 324389, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -285258,6231 +350783,7788 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 110), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 78), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 107), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(924), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5481), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6115), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(564), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3087), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3087), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(307), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(330), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(320), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3121), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5945), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(289), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(530), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1604), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(497), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(583), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(605), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3265), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3443), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3409), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4843), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(894), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4579), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(925), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(920), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5402), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3807), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(156), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(157), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(158), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(159), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4891), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5261), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(935), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6119), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 59), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 82), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 44), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 58), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(924), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5481), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6115), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(564), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3087), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3087), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(307), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(330), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(320), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3121), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5945), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(289), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(530), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1604), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(497), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(583), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(605), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3265), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3443), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3409), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4843), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(894), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4579), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(925), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(920), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5402), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3807), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(156), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(157), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(158), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(159), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4891), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5261), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(935), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6119), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(5823), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3289), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3289), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 30), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 30), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, .production_id = 34), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, .production_id = 34), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(397), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3396), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6002), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(423), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 19), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 19), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(729), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3212), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3090), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3474), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3211), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4728), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(702), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4586), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(696), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5415), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3860), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(166), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(165), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(208), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(299), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5631), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(734), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(977), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6149), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 18), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 18), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 38), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 38), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(764), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3438), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3077), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3374), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3436), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4869), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(773), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4626), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(752), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5478), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3898), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(125), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(126), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(127), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(76), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5552), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(781), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1179), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6157), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(916), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3477), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3476), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4800), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(877), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4606), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(970), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5375), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3886), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(183), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(448), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5339), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(918), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6153), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(947), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3415), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3410), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4834), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1043), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4649), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1062), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5408), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3911), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(134), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(135), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(136), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(309), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(450), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5352), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(946), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6160), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(835), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3443), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3110), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3401), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3409), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4843), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(850), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4579), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(920), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5402), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3807), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(156), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(157), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(158), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(159), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5611), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(840), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1314), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6119), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(875), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3141), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3067), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3338), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3143), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4706), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(889), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4686), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(942), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5480), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3747), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(207), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(206), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(201), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(200), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5976), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(878), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1325), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6118), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(876), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3142), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3138), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4782), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(871), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4601), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(949), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5413), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3885), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(90), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(96), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(197), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(874), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6152), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 21), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 21), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(991), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3094), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3285), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1009), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6110), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(989), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1136), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3464), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3465), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4865), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1058), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4690), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1295), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5407), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3775), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(194), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(195), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(196), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(198), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(476), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5319), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1134), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6122), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1156), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3486), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3487), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4817), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1144), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4684), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1208), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5475), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3840), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(256), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(257), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(239), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(480), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5268), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1158), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6127), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1317), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1240), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(486), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5248), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1318), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(998), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3427), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3422), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4853), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1013), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4637), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1088), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5422), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3909), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(132), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(133), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(988), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6159), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(961), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3475), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3454), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4818), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1000), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4610), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1101), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5399), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3889), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(161), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(960), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6154), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1184), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3405), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3403), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4819), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1173), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4654), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1283), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5391), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3912), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(138), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(139), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(141), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(282), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(509), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1185), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6161), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1186), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3451), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3450), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4835), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1177), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4616), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1404), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5427), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3892), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(112), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(117), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(118), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(151), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1168), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6155), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1091), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3323), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3351), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4765), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1150), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4595), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1255), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5381), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3870), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(57), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(59), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(60), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(61), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1055), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6113), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1174), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3482), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3485), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4826), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1105), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4668), - [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1229), - [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5463), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3836), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(253), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(254), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(232), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1175), - [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6126), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1219), - [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3488), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3490), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4810), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1232), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4701), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1435), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5483), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3855), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(260), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(261), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(262), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(243), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(544), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1218), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6128), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1355), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3395), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3384), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4704), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1222), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4659), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1466), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5487), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3914), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(143), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(145), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(238), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1354), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6162), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1458), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3073), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3192), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1485), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6117), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1449), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1319), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1243), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1320), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1376), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3466), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3467), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4849), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1278), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4682), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1504), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5376), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3780), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(202), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(203), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(204), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(205), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(559), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1200), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6123), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1889), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1876), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(585), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5304), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1878), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1407), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3505), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3506), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4762), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1434), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4607), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1745), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5404), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3862), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(268), - [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(210), - [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(279), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1408), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6135), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1738), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3503), - [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3071), - [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3357), - [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3504), - [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4771), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1749), - [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(4650), - [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1738), - [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1813), - [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5374), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(3893), - [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(317), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(306), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(304), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(267), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(5795), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(1727), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(2050), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), SHIFT_REPEAT(6134), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1510), - [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3515), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3516), - [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4754), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1511), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4639), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1867), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5424), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3804), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(115), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(301), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1505), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6139), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1453), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1500), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(609), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1421), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1641), - [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1615), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1660), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1973), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3499), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3500), - [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4784), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1976), - [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4689), - [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1973), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2031), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5412), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3831), - [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(296), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(297), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(298), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(637), - [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5241), - [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1993), - [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6132), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1896), - [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3493), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3494), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4796), - [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1930), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4643), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1896), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1942), - [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5457), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3918), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(269), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(276), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(277), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(251), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1893), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6130), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5347), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3290), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3290), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1884), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1919), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1883), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(5884), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5346), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(5709), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), - [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1952), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3519), - [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3520), - [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4825), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1940), - [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4675), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1952), - [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2108), - [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5387), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3754), - [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(72), - [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(190), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1953), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6141), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1961), - [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2009), - [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(710), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1956), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3205), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3205), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 35), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 35), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5290), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(5984), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5258), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2101), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2125), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2059), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2019), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3501), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3481), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4777), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2033), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4678), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2019), - [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2219), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5392), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3908), - [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(312), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(314), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(315), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(783), - [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2021), - [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6133), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2023), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3521), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3435), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4851), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2026), - [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4693), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2023), - [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2218), - [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5420), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3746), - [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(311), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(310), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(305), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(172), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2018), - [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6142), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3154), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3154), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(849), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3186), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3186), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5243), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3266), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3266), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6025), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5227), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2229), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3194), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3191), - [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4746), - [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2162), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4581), - [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2229), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2279), - [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5398), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3864), - [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(55), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(56), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(78), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(237), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2230), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6150), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3260), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3260), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(994), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(5949), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3203), - [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3203), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1133), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1127), - [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3202), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3202), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3229), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3229), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3249), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3249), - [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3394), - [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3394), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3181), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3181), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1331), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 9), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 9), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 22), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 22), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3208), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3208), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3128), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3128), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3232), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3232), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1275), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3166), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3166), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1495), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3407), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3407), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1532), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1534), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5331), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3328), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3328), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6044), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2729), - [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3274), - [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3273), - [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4731), - [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2703), - [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4613), - [4749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2891), - [4752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5488), - [4755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3838), - [4758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(199), - [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(300), - [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(303), - [4767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2730), - [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6147), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, .production_id = 65), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2906), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3491), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3492), - [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4804), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2880), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4695), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2906), - [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2948), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5489), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3882), - [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(264), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(265), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(266), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2904), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6129), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1798), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(5231), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1757), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3372), - [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3372), - [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1714), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1658), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3416), - [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3416), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1594), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1567), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3313), - [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1269), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5102), - [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2287), - [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4369), - [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5341), - [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2084), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2761), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4395), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2900), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4563), - [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2464), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1891), - [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1253), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2188), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2403), - [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(691), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2399), - [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2160), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4988), - [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(980), - [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(954), - [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1182), - [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1383), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3587), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3720), - [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(769), - [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3606), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1154), - [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1151), - [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1300), - [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1465), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(902), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1882), - [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(825), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1362), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1887), - [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2740), - [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2200), - [5122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1906), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1533), - [5134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5146), - [5137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1507), - [5140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5309), - [5143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4361), - [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2164), - [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2950), - [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2123), - [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5165), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1990), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(418), - [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1758), - [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2418), - [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1391), - [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(384), - [5190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5149), - [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3744), - [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2803), - [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5007), - [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4133), - [5205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4904), - [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2105), - [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3693), - [5214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1688), - [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2815), - [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1703), - [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2221), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3430), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1989), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3429), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1971), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1943), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3325), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3350), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2155), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2141), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3347), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3471), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3215), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2222), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [5473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3498), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2266), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 40), - [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 40), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 39), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 39), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2299), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 40), - [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 40), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 39), - [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 39), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2342), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3277), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3), - [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 42), - [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 42), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 12), - [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 12), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2280), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2265), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), - [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 39), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 39), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 40), - [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 40), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 75), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 75), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 42), - [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 42), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), - [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2569), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), - [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 75), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 75), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2457), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 42), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 42), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2694), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), - [6153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3092), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3092), - [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(1617), - [6162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3255), - [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(4903), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5271), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3332), - [6340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3332), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3376), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 48), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [6452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3706), - [6455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3513), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3514), - [6461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4727), - [6464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3734), - [6467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4621), - [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3766), - [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5476), - [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3819), - [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(144), - [6482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), - [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(140), - [6488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(316), - [6491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3701), - [6494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6138), - [6497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5014), - [6500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3517), - [6503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2988), - [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3518), - [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4794), - [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5044), - [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4657), - [6518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5014), - [6521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5189), - [6524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5452), - [6527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3778), - [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), - [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [6536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(74), - [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(274), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5012), - [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4923), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6140), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 50), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 88), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 12), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [7019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2982), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 32), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [7148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3007), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 13), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [7199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(4077), - [7202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(3513), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), - [7207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(3514), - [7210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(4727), - [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(4081), - [7216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(4621), - [7219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(3766), - [7222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(5476), - [7225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(3819), - [7228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(144), - [7231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(142), - [7234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(140), - [7237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(316), - [7240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(4082), - [7243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 66), SHIFT_REPEAT(6138), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [7318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4088), - [7321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3509), - [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3510), - [7327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4708), - [7330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4071), - [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4591), - [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4088), - [7339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4179), - [7342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5406), - [7345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3845), - [7348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(171), - [7351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(167), - [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(164), - [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(302), - [7360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4084), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6137), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3204), - [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3204), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [9262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3111), - [9265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3111), - [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [9272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5347), - [9275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5346), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), - [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [9304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [9306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3106), - [9309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6026), - [9312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(573), - [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4881), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [9340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3636), - [9343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3707), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [9350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3207), - [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3207), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [9364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3358), - [9367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3358), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5290), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [9391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3106), - [9394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(573), - [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [9399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4934), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3850), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [9427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3793), - [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5258), - [9433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3377), - [9436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3377), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5227), - [9450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3042), - [9463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(588), - [9466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4886), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 68), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 127), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 43), - [9549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 43), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 97), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 95), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [9591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [9593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 72), - [9595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3042), - [9598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(588), - [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4930), - [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 70), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [9610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [9628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5243), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3075), - [9654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(5981), - [9657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(630), - [9660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4887), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 43), - [9667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 43), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 43), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 56), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), - [9691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), - [9693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(341), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [9710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 60), - [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 60), - [9714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(343), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [9723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [9729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3083), - [9732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(621), - [9735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4880), - [9738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3079), - [9753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(649), - [9756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4884), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 53), - [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 53), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [9773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3083), - [9776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(621), - [9779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4925), - [9782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 45), - [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 45), - [9786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 44), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 44), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 19), - [9794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 19), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3079), - [9817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(649), - [9820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4933), - [9823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 55), - [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 55), - [9827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 46), - [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 46), - [9831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 45), - [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 45), - [9835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 44), - [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 44), - [9839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 41), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 41), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [9867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [9871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [9873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [9875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 67), - [9877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 67), - [9879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 64), - [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 64), - [9883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [9885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [9887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [9891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(339), - [9894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 2), - [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 2), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [9900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 145), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 145), - [9904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 74), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 74), - [9908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 44), - [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 44), - [9912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 45), - [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 45), - [9916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [9920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 83), - [9922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 83), - [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 44), - [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 44), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [9930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 45), - [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 45), - [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), - [9936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), - [9938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 44), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 44), - [9942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3085), - [9945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(684), - [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4885), - [9951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 45), - [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 45), - [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), - [9957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), - [9959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), - [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), - [9965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), - [9971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), - [9973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), - [9975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 91), - [9979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 91), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 92), - [9985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 92), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), - [9991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), - [9993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4072), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [9998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), - [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), - [10002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3075), - [10005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(630), - [10008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4922), - [10011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 120), - [10013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 120), - [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 121), - [10017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 121), - [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 122), - [10021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 122), - [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 123), - [10025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 123), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [10029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), - [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [10045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), - [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [10051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3085), - [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(684), - [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4921), - [10060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(338), - [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(347), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3423), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [10079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(340), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [10094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 103), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 103), - [10098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 78), - [10100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 140), - [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 140), - [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 82), - [10106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 130), - [10108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 130), - [10110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 78), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [10114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 132), - [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 132), - [10118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 44), - [10120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 134), - [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 134), - [10124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 107), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [10154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 149), - [10156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 149), - [10158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 107), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [10166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 136), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 136), - [10170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), - [10172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 151), - [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 151), - [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 110), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [10180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 76), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 76), - [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 58), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 113), - [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 113), - [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 82), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 80), - [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 80), - [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 59), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [10220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(344), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 111), - [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 111), - [10229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 59), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [10253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5331), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [10258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 138), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 138), - [10262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 110), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [10268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 101), - [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 101), - [10272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 58), - [10274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 108), - [10276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 108), - [10278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 105), - [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 105), - [10284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 44), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [10288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 114), - [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 114), - [10292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3086), - [10295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(845), - [10298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4882), - [10301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4349), - [10304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 141), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 141), - [10308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 104), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 104), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [10314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 106), - [10316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 106), - [10318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 131), - [10320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 131), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [10324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 102), - [10326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 102), - [10328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 133), - [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 133), - [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 135), - [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 135), - [10336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 109), - [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 109), - [10340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3333), - [10343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 139), - [10345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 139), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [10349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 152), - [10351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 152), - [10353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3230), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [10358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 150), - [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 150), - [10362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 81), - [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 81), - [10366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3102), - [10369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(5824), - [10372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3102), - [10375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(914), - [10378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(5824), - [10381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4888), - [10384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(5231), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [10389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 137), - [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 137), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [10395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 77), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 77), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [10413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, .production_id = 12), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [10423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 112), - [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 112), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [10447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 63), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [10451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4401), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [10456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3275), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [10461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 50), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [10467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4393), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [10472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3086), - [10475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(845), - [10478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4929), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [10487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3102), - [10490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3102), - [10493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(914), - [10496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4924), - [10499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3062), - [10502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(5950), - [10505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3062), - [10508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1018), - [10511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(5950), - [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4879), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [10519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, .production_id = 48), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [10525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(334), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [10530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3062), - [10533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3062), - [10536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1018), - [10539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4932), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, .production_id = 12), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [10558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4472), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [10605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(341), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [10612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(341), - [10615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(341), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [10640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3317), - [10643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3317), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [10658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3059), - [10661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1450), - [10664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4928), - [10667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4670), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [10742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3468), - [10745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3469), - [10748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4883), - [10751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [10753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4917), - [10756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3816), - [10759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(223), - [10762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(224), - [10765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(229), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(4906), - [11485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3880), - [11488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(84), - [11491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(85), - [11494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(88), - [11497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(4898), - [11500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 50), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [11544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [11558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [11564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [11588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [11604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, .production_id = 12), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [11658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3221), - [11661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3221), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [11688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, .production_id = 7), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [11692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 49), - [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [11698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 12), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, .production_id = 27), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [11706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5042), - [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [11713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, .production_id = 12), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [11741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 50), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 62), - [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 48), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 48), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 50), - [11779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 89), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [11789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 63), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 90), - [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [11811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 88), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [11821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 51), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [11831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 61), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [11835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [11837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(3925), - [11840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [11854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [11874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 119), - [11876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 52), - [11878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3371), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [11885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 31), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [11889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 44), - [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [11897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 45), - [11899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 30), - [11901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [11903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(325), - [11906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 33), - [11908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 33), SHIFT_REPEAT(5183), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 84), - [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), - [11917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(4549), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [11930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5279), - [11933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 59), - [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [11939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 58), - [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 78), - [11947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 44), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [11959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [11961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [11965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 82), - [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 12), - [11975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [11981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [11987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, .production_id = 26), - [11989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, .production_id = 26), - [11991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 12), - [11993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5300), - [11996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 54), - [11998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 54), - [12000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 107), - [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [12008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 110), - [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [12022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [12028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(3312), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 125), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [12037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 126), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [12041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 57), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [12047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 128), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 129), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [12111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [12117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(3995), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [12136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 69), - [12138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 71), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [12146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 73), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [12154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 146), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [12158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 12), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [12162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 147), - [12164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 148), - [12166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 79), SHIFT_REPEAT(2998), - [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 79), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [12189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 124), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [12211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(3934), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [12226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [12228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 94), - [12248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 96), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [12252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 98), - [12254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [12258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 99), - [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 100), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [12264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [12266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 154), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [12290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [12300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [12314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [12318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [12320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [12328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 12), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [12334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 87), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [12338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 117), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [12346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 88), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [12350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 12), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [12384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 144), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [12390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 143), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [12402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 142), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [12444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 118), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 116), - [12450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 115), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [12456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, .production_id = 153), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [12626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 86), - [12628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 85), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [12902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 48), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [12918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 12), - [12920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 47), - [12922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 12), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [13328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [13330] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 112), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 46), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 83), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 79), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 109), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 60), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 59), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1080), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6777), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7604), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(659), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3678), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3678), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(240), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(432), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(428), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4078), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7392), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(154), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(623), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1730), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(602), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(718), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(759), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4030), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4154), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4155), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5968), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1105), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5849), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1078), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1085), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6359), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4814), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(148), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(150), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(151), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(152), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6148), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6616), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1077), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7608), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1080), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6777), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7604), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(659), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3678), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3678), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(240), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(432), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(428), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4078), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7392), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(154), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(623), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1730), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(602), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(718), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(759), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4030), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4154), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4155), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5968), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1105), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5849), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1078), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1085), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6359), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4814), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(148), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(150), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(151), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(152), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6148), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6616), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1077), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7608), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3702), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3702), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7273), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, .production_id = 35), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, .production_id = 35), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 31), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 31), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(495), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7064), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3921), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(525), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 19), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 19), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(874), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3749), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3660), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3799), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3748), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5958), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(834), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5817), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(987), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6354), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4693), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(335), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(334), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(333), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(414), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6813), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(876), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1182), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7654), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 39), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 39), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 18), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 18), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(985), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3809), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3620), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3832), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3812), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6070), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(969), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5788), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1155), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6254), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4675), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(305), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(304), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(303), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(372), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6805), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1003), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1328), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7664), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1067), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3755), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3754), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5924), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1092), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5823), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1235), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6282), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4703), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(348), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(347), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(346), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(285), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(546), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6673), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1068), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7652), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1023), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4184), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3686), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3725), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4183), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5997), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1091), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5729), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1268), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6350), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4641), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(249), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(251), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(253), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(223), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7063), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1021), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1716), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7619), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1171), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3741), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3742), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6085), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1266), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5793), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1469), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6285), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4677), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(311), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(310), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(309), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(381), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(565), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6628), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1170), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7662), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1093), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4211), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3695), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3787), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4212), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5884), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1144), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5746), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1272), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6309), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4841), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(205), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(206), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(207), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(189), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7344), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1094), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1521), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7613), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 21), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 21), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1219), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3682), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4052), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1174), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6955), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1203), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 8), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 8), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1322), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4200), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4204), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6034), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1460), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5722), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1580), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6321), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4765), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(174), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(175), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(176), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(177), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(577), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6704), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1318), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7611), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1360), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4196), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4195), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6071), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1356), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5758), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1571), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6343), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4649), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(236), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(238), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(241), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(214), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(581), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6603), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1362), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7617), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1158), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3764), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3759), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5908), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1089), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5825), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1232), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6255), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4707), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(360), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(358), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(352), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(273), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1163), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7651), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1290), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3724), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3722), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6012), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1234), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5809), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1406), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6305), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4682), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(326), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(324), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(401), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1291), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7657), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1190), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3753), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3751), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5940), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1226), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5819), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1478), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6324), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4696), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(344), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(343), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(338), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(357), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(598), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1191), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7653), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1269), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3729), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3730), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6084), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1264), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5796), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1393), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6311), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4678), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(314), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(313), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(312), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(385), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7661), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1602), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1665), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(612), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6560), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1481), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1394), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3849), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3850), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6044), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1468), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5777), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1616), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6274), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4661), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(292), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(291), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(288), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(349), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1307), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7667), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1370), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4202), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4201), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6038), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1445), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5764), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1702), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6292), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4694), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(229), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(231), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(204), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1372), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7616), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1381), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3744), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3743), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5976), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1308), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5814), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1515), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6272), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4690), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(332), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(331), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(330), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(409), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1388), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7655), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1326), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3786), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3789), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6078), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1369), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5791), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1496), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6251), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4676), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(308), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(307), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(306), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(377), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(633), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1325), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7663), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1399), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4062), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4063), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5930), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1405), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5772), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1605), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6367), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4660), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(128), + [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(132), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1407), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7605), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1526), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3817), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3820), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6061), + [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1725), + [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5784), + [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1782), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6252), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4672), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(302), + [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(301), + [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(300), + [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(368), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1524), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7665), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1681), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4205), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4206), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6007), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1597), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5735), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1726), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6297), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4728), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(180), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(181), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(184), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(185), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(664), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1696), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7612), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1711), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3995), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3994), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6039), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1710), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5720), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1790), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6357), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4851), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(126), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(127), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(375), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1708), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7634), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1630), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4047), + [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4037), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6051), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1675), + [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5783), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1896), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6351), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4843), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(339), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1632), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7629), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1794), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3697), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4138), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1823), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6848), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1795), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1688), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1662), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1575), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1650), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4193), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4192), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6047), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1705), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5736), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1788), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6257), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4624), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(243), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(244), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(245), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(219), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(709), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1647), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7618), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1918), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1786), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1922), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1902), + [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1915), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(731), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1903), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1839), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4000), + [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3997), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6060), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1832), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5733), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2116), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6333), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4854), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(116), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1843), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7633), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2330), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2342), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(746), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6696), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2331), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1846), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4061), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4054), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5926), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1916), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5721), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1946), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6348), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4819), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(374), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(410), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(272), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1845), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7627), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2211), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4082), + [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3672), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3715), + [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4079), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6014), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2033), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5780), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2211), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2268), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6342), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4779), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(340), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(341), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(342), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(258), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6889), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2203), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2558), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7625), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1968), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2074), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1972), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2419), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4114), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4112), + [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5894), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2373), + [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5754), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2419), + [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2469), + [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6298), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4730), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(136), + [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(289), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(248), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(803), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6636), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2395), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7623), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6662), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2337), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2302), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2340), + [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6956), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2271), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4164), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4144), + [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5923), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2298), + [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5730), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2271), + [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2420), + [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6316), + [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4691), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(261), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(262), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(235), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2309), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7621), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3881), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3881), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6619), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3940), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3940), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2369), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3983), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3982), + [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5950), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2396), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5725), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2369), + [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2507), + [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6313), + [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4839), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(140), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(141), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(88), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2371), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7636), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), + [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2422), + [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2389), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2431), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), + [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2367), + [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2386), + [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(875), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2365), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6890), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3896), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3896), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2438), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3945), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3944), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5883), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2356), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5779), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2438), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2560), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6349), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4826), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(178), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(191), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(115), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2437), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7639), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7352), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6668), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2487), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3797), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3793), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5876), + [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2458), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5832), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2487), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2651), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6320), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4729), + [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(376), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(61), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(373), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2493), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7649), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6578), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1052), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3707), + [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3707), + [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2489), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3978), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3977), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5936), + [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2460), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5743), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2489), + [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2604), + [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6283), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4836), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(156), + [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(157), + [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(100), + [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2490), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7637), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3947), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3947), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2572), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2480), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2578), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2539), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4103), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4101), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5879), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2453), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5769), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2539), + [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2667), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6277), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4751), + [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(296), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(297), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(336), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(979), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2538), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7624), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4027), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4027), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7486), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6705), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6604), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3733), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3733), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2613), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3835), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3818), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6082), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2632), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5837), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2613), + [5209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2869), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6366), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4737), + [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(384), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(383), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(382), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(210), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2612), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7647), + [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3891), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3891), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7396), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3894), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3894), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1229), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1260), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4034), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4034), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1351), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [5480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1404), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3895), + [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3895), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3905), + [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3905), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3942), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3942), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3943), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3943), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1338), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1724), + [5559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3093), + [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3875), + [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3874), + [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5952), + [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3110), + [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5850), + [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3184), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6315), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4756), + [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(404), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(403), + [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(402), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(162), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3092), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7644), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3951), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3951), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1656), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3853), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3853), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3798), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3798), + [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4168), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4168), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 22), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 22), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3946), + [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3946), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 9), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 9), + [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1551), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1535), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3899), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3899), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4065), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4065), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1890), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6686), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4127), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4127), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1885), + [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1844), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1835), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3788), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3788), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3948), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3948), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [5934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3837), + [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3837), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, .production_id = 66), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7513), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3766), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3766), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1951), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1994), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2094), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6664), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2182), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [6010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2237), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3480), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4169), + [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4166), + [6036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5971), + [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3476), + [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5716), + [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3480), + [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3516), + [6051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6332), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4668), + [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(255), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(256), + [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(257), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3479), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7620), + [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2215), + [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3829), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3829), + [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2160), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3768), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3774), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3774), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5495), + [6117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2597), + [6120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2317), + [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2310), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2306), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1550), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2882), + [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4448), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4444), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1592), + [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4852), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1761), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1101), + [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1591), + [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1353), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1324), + [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4355), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(928), + [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4329), + [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1365), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4553), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1579), + [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(900), + [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1438), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2305), + [6219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1018), + [6222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2338), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3758), + [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1241), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3505), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6226), + [6239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5433), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1255), + [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5524), + [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2919), + [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(856), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2909), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [6259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2669), + [6262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5669), + [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3253), + [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6436), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2527), + [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6555), + [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2530), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3172), + [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6242), + [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4402), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6532), + [6302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6246), + [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5284), + [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2448), + [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5455), + [6314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2616), + [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2542), + [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6484), + [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1755), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2006), + [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4631), + [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3353), + [6335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5160), + [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4411), + [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(518), + [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1818), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4544), + [6350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2216), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1044), + [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3179), + [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2065), + [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2295), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2628), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1488), + [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(477), + [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2423), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2686), + [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1238), + [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1837), + [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1693), + [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1565), + [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2709), + [6397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1854), + [6400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2822), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2280), + [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3025), + [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1185), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3191), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6538), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6147), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3717), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2418), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4028), + [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2381), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2351), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3864), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2492), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [6634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3869), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3732), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3929), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2584), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3885), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3865), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4016), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3738), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2713), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2), + [6751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2725), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2798), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2819), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3882), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 12), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 12), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), + [6797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2935), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 41), + [6820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 41), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2927), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 40), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 40), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2928), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 41), + [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 41), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 40), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 40), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3), + [6864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3), + [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2796), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [7035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), + [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3149), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), + [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), + [7096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 76), + [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 76), + [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), + [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3055), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 76), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 76), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 43), + [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 43), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2980), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 40), + [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 40), + [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 41), + [7166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 41), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), + [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 43), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 43), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), + [7452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3206), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3878), + [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3878), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), + [7525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3677), + [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3677), + [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2138), + [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3965), + [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(6132), + [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(6634), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 49), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3704), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 51), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [7832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3511), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [7839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6328), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3986), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3609), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3985), + [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5969), + [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6326), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5708), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6328), + [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6523), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6291), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4848), + [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(135), + [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(138), + [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(77), + [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6318), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6164), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7635), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4460), + [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4006), + [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4005), + [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6005), + [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4491), + [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5741), + [7911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4837), + [7914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6352), + [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4857), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), + [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), + [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(113), + [7929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(366), + [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4458), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7632), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 89), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 12), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 13), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 33), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3552), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [8645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5062), + [8648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4006), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), + [8653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4005), + [8656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(6005), + [8659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5034), + [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5741), + [8665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4837), + [8668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(6352), + [8671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4857), + [8674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(110), + [8677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(111), + [8680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(113), + [8683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(366), + [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5048), + [8689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(7632), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [8752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5045), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4012), + [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4008), + [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5903), + [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5097), + [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5762), + [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5045), + [8773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5149), + [8776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6336), + [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4850), + [8782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), + [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(97), + [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(98), + [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(355), + [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5041), + [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7631), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [11288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [11292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6662), + [11295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3912), + [11298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3912), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [11307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [11309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3642), + [11312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(631), + [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [11317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3805), + [11320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6151), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [11327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), + [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [11347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3873), + [11350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3873), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [11363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [11371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3802), + [11374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3802), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3941), + [11384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3941), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4503), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [11398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3952), + [11401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3952), + [11404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3778), + [11407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3778), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [11412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [11420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [11422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3635), + [11425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7487), + [11428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(681), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [11433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6100), + [11436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3654), + [11439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(658), + [11442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3840), + [11445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6133), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [11450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6619), + [11453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), + [11455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [11461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3900), + [11464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3900), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [11495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4577), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [11504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 61), + [11506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 61), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [11518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4563), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [11533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [11535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [11537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4423), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [11546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3953), + [11549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3953), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [11574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6578), + [11577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3950), + [11580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3950), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [11587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3653), + [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7514), + [11593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(724), + [11596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6116), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [11611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4788), + [11614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4846), + [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [11619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4772), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [11628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3670), + [11631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(733), + [11634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4045), + [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6152), + [11640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6668), + [11643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3823), + [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3823), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3625), + [11658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(739), + [11661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3763), + [11664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6145), + [11667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4726), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [11672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3649), + [11675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(785), + [11678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4170), + [11681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6135), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [11706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6705), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [11725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, .production_id = 30), + [11727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, .production_id = 30), + [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [11731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 44), + [11735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 44), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [11739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [11741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [11743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), + [11745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(439), + [11748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), + [11750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [11752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [11770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [11782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [11790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [11792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 97), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [11818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [11828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [11830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [11836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 99), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 44), + [11844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 44), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [11858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(438), + [11861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3684), + [11864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(790), + [11867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4125), + [11870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6136), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [11911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 73), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [11917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3647), + [11920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7349), + [11923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(779), + [11926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6107), + [11929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 57), + [11947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3661), + [11950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(829), + [11953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6115), + [11956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), + [11958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [11970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3645), + [11973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(783), + [11976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6106), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [11985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 131), + [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 69), + [11989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 71), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [12001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [12031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6604), + [12034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [12048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 44), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [12064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), + [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [12094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4913), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [12101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), + [12103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), + [12105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), + [12107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), + [12109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [12111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 45), + [12115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 45), + [12117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 94), + [12119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 94), + [12121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 46), + [12123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 46), + [12125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 46), + [12127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 46), + [12129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 45), + [12131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 45), + [12133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 47), + [12135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 47), + [12137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), + [12139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), + [12141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), + [12143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), + [12145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), + [12147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), + [12149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 45), + [12151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 45), + [12153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 46), + [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 46), + [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 149), + [12159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 149), + [12161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 95), + [12163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 95), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), + [12189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), + [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 46), + [12193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 46), + [12195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 42), + [12197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 42), + [12199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 124), + [12201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 124), + [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [12205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 2), + [12207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 2), + [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), + [12211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), + [12213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 56), + [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 56), + [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), + [12219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [12223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 125), + [12225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 125), + [12227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 68), + [12229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 68), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [12249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 126), + [12251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 126), + [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 75), + [12255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 75), + [12257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 127), + [12259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 127), + [12261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 84), + [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 84), + [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 19), + [12267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 19), + [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 45), + [12271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 45), + [12273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(435), + [12276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [12280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3696), + [12283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(825), + [12286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6113), + [12289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5044), + [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 46), + [12294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 46), + [12296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 45), + [12298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 45), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [12304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [12306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3815), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [12311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [12323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), + [12325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [12331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(437), + [12334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(442), + [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [12341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(448), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 153), + [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 153), + [12354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 109), + [12356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 134), + [12358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 134), + [12360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 79), + [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 155), + [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 155), + [12366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 112), + [12368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 105), + [12370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 105), + [12372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 79), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [12376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 115), + [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 115), + [12380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 83), + [12382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 113), + [12384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 113), + [12386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 60), + [12388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6686), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [12393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 110), + [12395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 110), + [12397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 46), + [12399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 107), + [12401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 107), + [12403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 45), + [12405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 103), + [12407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 103), + [12409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 59), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [12423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 81), + [12425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 81), + [12427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 60), + [12429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 77), + [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 77), + [12433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 59), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [12447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 136), + [12449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 136), + [12451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [12455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3633), + [12458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(908), + [12461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4188), + [12464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6120), + [12467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 144), + [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 144), + [12471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 83), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [12481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3870), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 138), + [12492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 138), + [12494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 109), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [12498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [12518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3669), + [12521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3669), + [12524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(944), + [12527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3716), + [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6118), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [12543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [12553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 64), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [12565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 51), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [12571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(443), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [12604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, .production_id = 49), + [12606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [12632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 140), + [12634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 140), + [12636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 46), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [12640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 142), + [12642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 142), + [12644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 112), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [12652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, .production_id = 12), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [12660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 141), + [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 141), + [12664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 143), + [12666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 143), + [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [12670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 139), + [12672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 139), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [12676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [12678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, .production_id = 12), + [12680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [12682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 135), + [12684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 135), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [12690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 154), + [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 154), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [12698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5416), + [12701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 156), + [12703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 156), + [12705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3890), + [12708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 106), + [12710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 106), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [12714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 116), + [12716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 116), + [12718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 114), + [12720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 114), + [12722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 111), + [12724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 111), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [12728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 108), + [12730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 108), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [12734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 145), + [12736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 145), + [12738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3866), + [12741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 82), + [12743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 82), + [12745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 78), + [12747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 78), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [12761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3624), + [12764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3624), + [12767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1090), + [12770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3769), + [12773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6117), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [12782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3618), + [12785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1111), + [12788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6109), + [12791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3877), + [12794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3689), + [12797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7274), + [12800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3689), + [12803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1117), + [12806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7274), + [12809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6104), + [12812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6664), + [12815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5410), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [12820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 137), + [12822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 137), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [12828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 104), + [12830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 104), + [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3884), + [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [12851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5529), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [12856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 49), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [12860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [12870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, .production_id = 51), + [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [12876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, .production_id = 64), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [12880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3629), + [12883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7397), + [12886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3629), + [12889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1178), + [12892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7397), + [12895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6105), + [12898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5506), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5512), + [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [12928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5607), + [12935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(446), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [12980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(439), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [12987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3880), + [12990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3880), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [13001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [13005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3634), + [13008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1654), + [13011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3739), + [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6155), + [13017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(439), + [13020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(439), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [13033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5701), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [13190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [13194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [13204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [13206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [13210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [13222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [13224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [13232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [13236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [13238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [13240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [13242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [13248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [13254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [13258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [13268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [13270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [13272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [13274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [13276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [13278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [13280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [13282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [13284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [13286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [13288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [13290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [13304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [13308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [13324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4207), + [13327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4209), + [13330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6098), + [13333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [13335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6127), + [13338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4652), + [13341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(196), + [13344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(197), + [13347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(198), + [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [13356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [13384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [13386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [13390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [13758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [13762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [13956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [13964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [13972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [13974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [14018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [14050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [14074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 51), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [14080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [14096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [14100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [14102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [14110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [14118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [14126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [14134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(6110), + [14137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(4715), + [14140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(367), + [14143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(364), + [14146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(362), + [14149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(6137), + [14152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [14162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [14170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [14178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [14186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [14212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [14220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [14228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [14252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [14258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [14276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [14292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [14298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [14310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [14312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [14314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [14316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [14324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, .production_id = 12), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [14338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [14340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [14344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [14346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [14348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [14350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, .production_id = 12), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [14356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [14358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [14362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [14364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [14370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6361), + [14373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(5815), + [14376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6194), + [14379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), + [14381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6361), + [14384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6194), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [14393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [14395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, .production_id = 12), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [14419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [14427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [14431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3776), + [14434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3776), + [14437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [14441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 12), + [14443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, .production_id = 27), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [14449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, .production_id = 7), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [14453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 50), + [14455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6304), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [14470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 90), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [14474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 49), + [14476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 91), + [14478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 49), + [14480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 123), + [14482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 64), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [14492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 63), + [14494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 92), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [14498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [14500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [14512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 64), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [14518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 51), + [14520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [14534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [14558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [14562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 122), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [14592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 89), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [14602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [14622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [14632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [14654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 51), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [14660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 49), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [14676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 51), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [14690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, .production_id = 48), + [14692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, .production_id = 48), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [14718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 85), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [14726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [14738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 52), + [14740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 45), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [14746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [14748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(418), + [14751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 53), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [14769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 121), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [14775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3860), + [14778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [14782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 62), + [14784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [14792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [14794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [14798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), + [14800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(5425), + [14803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), + [14805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4999), + [14808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), + [14810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 32), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [14814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [14816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [14820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 34), + [14822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 34), SHIFT_REPEAT(6489), + [14825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), + [14827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 31), + [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 12), + [14831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 109), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [14839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 83), + [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [14847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, .production_id = 26), + [14849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, .production_id = 26), + [14851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [14857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 12), + [14859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6651), + [14862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 112), + [14864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [14870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [14882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 79), + [14884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [14890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 55), + [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 55), + [14894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 59), + [14896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [14900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), + [14902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 46), + [14908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [14912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 60), + [14914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [14918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [14924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6581), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [14935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4972), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [14944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(4108), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [14981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 12), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [14993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 132), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [15017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 80), SHIFT_REPEAT(3574), + [15020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 80), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [15044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [15056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 102), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [15060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [15072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 101), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [15082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 100), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [15090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [15106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 74), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [15110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 72), + [15112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [15120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 98), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [15128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 70), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [15140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 130), + [15142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [15144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [15150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 150), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [15160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 58), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 96), + [15168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4918), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [15173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 133), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [15189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 158), + [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [15209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 129), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [15221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 151), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [15235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 152), + [15237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 128), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [15241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [15247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [15253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [15265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 119), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [15271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 12), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [15281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 89), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [15289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 12), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [15293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 88), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [15565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 146), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [15585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 86), + [15587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 87), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [15633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 49), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [15651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 12), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [15667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, .production_id = 43), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [15719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, .production_id = 157), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [16023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 147), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [16047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 148), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [16079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 120), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [16353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [16355] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [16457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 117), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [16729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 118), }; enum ts_external_scanner_symbol_identifiers { @@ -291512,7 +358594,9 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_LT_LT = 23, ts_external_token_LT_LT_DASH = 24, ts_external_token_heredoc_redirect_token1 = 25, - ts_external_token___error_recovery = 26, + ts_external_token_LPAREN = 26, + ts_external_token_esac = 27, + ts_external_token___error_recovery = 28, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -291542,10 +358626,12 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = anon_sym_LT_LT, [ts_external_token_LT_LT_DASH] = anon_sym_LT_LT_DASH, [ts_external_token_heredoc_redirect_token1] = aux_sym_heredoc_redirect_token1, + [ts_external_token_LPAREN] = anon_sym_LPAREN, + [ts_external_token_esac] = anon_sym_esac, [ts_external_token___error_recovery] = sym___error_recovery, }; -static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_simple_heredoc_body] = true, @@ -291572,6 +358658,8 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, [ts_external_token___error_recovery] = true, }, [2] = { @@ -291579,6 +358667,7 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, }, [3] = { [ts_external_token_file_descriptor] = true, @@ -291586,6 +358675,7 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, + [ts_external_token_LPAREN] = true, }, [4] = { [ts_external_token_file_descriptor] = true, @@ -291596,6 +358686,7 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [5] = { [ts_external_token_file_descriptor] = true, @@ -291606,109 +358697,138 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [6] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [7] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LPAREN] = true, }, [8] = { - [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [9] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [10] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [11] = { [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [12] = { [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [13] = { - [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [14] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [15] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [16] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [17] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [18] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [19] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, @@ -291717,90 +358837,122 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [20] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [21] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [22] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [23] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [24] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, }, [25] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [26] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, - [ts_external_token__regex_no_space] = true, [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [27] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [28] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [29] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [30] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [31] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [32] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [33] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, @@ -291809,7 +358961,6 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { }, [34] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, @@ -291817,154 +358968,400 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { }, [35] = { [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [36] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + }, + [37] = { + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [38] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, + }, + [39] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [40] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [37] = { + [41] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, - [38] = { + [42] = { + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [43] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, + }, + [44] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [45] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [46] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [47] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [48] = { + [ts_external_token_test_operator] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [39] = { + [49] = { + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [50] = { + [ts_external_token_test_operator] = true, + [ts_external_token__regex_no_space] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [51] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, + }, + [52] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [53] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, }, - [40] = { + [54] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token_LT_LT] = true, + }, + [55] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, - [41] = { + [56] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [57] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, - [42] = { + [58] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_LT_LT] = true, + }, + [59] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [60] = { + [ts_external_token_LT_LT] = true, + }, + [61] = { [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [43] = { + [62] = { + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + }, + [63] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, - [44] = { + [64] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [65] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [66] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [67] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + }, + [68] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [69] = { + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [70] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [45] = { + [71] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [46] = { + [72] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [47] = { + [73] = { + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [74] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__expansion_word] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, }, - [48] = { + [75] = { [ts_external_token__empty_value] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, }, - [49] = { + [76] = { [ts_external_token__immediate_double_hash] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [50] = { + [77] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [78] = { [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, }, - [51] = { - [ts_external_token__immediate_double_hash] = true, - [ts_external_token_RBRACE] = true, + [79] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, }, - [52] = { + [80] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, }, - [53] = { + [81] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [54] = { - [ts_external_token_file_descriptor] = true, + [82] = { + [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, - [55] = { + [83] = { + [ts_external_token_test_operator] = true, + [ts_external_token_regex] = true, + [ts_external_token__brace_start] = true, + }, + [84] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, + }, + [85] = { [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, }, - [56] = { + [86] = { [ts_external_token_variable_name] = true, + [ts_external_token_LPAREN] = true, }, - [57] = { + [87] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [88] = { + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [89] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - }, - [58] = { [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, - [59] = { + [90] = { + [ts_external_token__immediate_double_hash] = true, + }, + [91] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, - [60] = { - [ts_external_token__immediate_double_hash] = true, + [92] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, - [61] = { + [93] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [62] = { + [94] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [63] = { + [95] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [96] = { [ts_external_token__concat] = true, [ts_external_token__immediate_double_hash] = true, [ts_external_token__external_expansion_sym_hash] = true, @@ -291972,124 +359369,158 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [64] = { + [97] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [65] = { + [98] = { [ts_external_token_variable_name] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [66] = { + [99] = { + [ts_external_token_LPAREN] = true, + }, + [100] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [67] = { + [101] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [68] = { + [102] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [103] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [104] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [105] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [69] = { + [106] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [70] = { + [107] = { + [ts_external_token_variable_name] = true, + [ts_external_token__expansion_word] = true, [ts_external_token_RBRACE] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, - [71] = { + [108] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, }, - [72] = { + [109] = { + [ts_external_token_variable_name] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [110] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [111] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [73] = { + [112] = { [ts_external_token_variable_name] = true, - [ts_external_token__expansion_word] = true, }, - [74] = { + [113] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [75] = { + [114] = { + [ts_external_token_RBRACE] = true, + }, + [115] = { [ts_external_token__concat] = true, }, - [76] = { + [116] = { [ts_external_token_heredoc_content] = true, [ts_external_token_heredoc_end] = true, }, - [77] = { + [117] = { + [ts_external_token__regex_no_slash] = true, [ts_external_token_RBRACE] = true, }, - [78] = { + [118] = { [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [79] = { - [ts_external_token__regex_no_slash] = true, - [ts_external_token_RBRACE] = true, - }, - [80] = { + [119] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, - [81] = { + [120] = { + [ts_external_token_heredoc_redirect_token1] = true, + }, + [121] = { [ts_external_token__concat] = true, [ts_external_token__expansion_word] = true, [ts_external_token_RBRACE] = true, }, - [82] = { - [ts_external_token__external_expansion_sym_hash] = true, - [ts_external_token__external_expansion_sym_bang] = true, - [ts_external_token__external_expansion_sym_equal] = true, - [ts_external_token_RBRACE] = true, - }, - [83] = { + [122] = { [ts_external_token_simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, }, - [84] = { + [123] = { [ts_external_token__concat] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [85] = { + [124] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [86] = { - [ts_external_token_extglob_pattern] = true, + [125] = { + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, }, - [87] = { - [ts_external_token_RBRACK] = true, + [126] = { + [ts_external_token_esac] = true, }, - [88] = { + [127] = { + [ts_external_token_extglob_pattern] = true, + }, + [128] = { [ts_external_token_heredoc_end] = true, }, - [89] = { + [129] = { + [ts_external_token_RBRACK] = true, + }, + [130] = { [ts_external_token_heredoc_start] = true, }, }; diff --git a/src/treesitter-bash/src/scanner.c b/src/treesitter-bash/src/scanner.c index 1a86054bd..df721ef81 100644 --- a/src/treesitter-bash/src/scanner.c +++ b/src/treesitter-bash/src/scanner.c @@ -7,69 +7,66 @@ #define MAX(a, b) ((a) > (b) ? (a) : (b)) -#define MIN(a, b) ((a) < (b) ? (a) : (b)) - -#define VEC_RESIZE(vec, _cap) \ - void *tmp = realloc((vec).data, (_cap) * sizeof((vec).data[0])); \ - assert(tmp != NULL); \ - (vec).data = tmp; \ - assert((vec).data != NULL); \ +#define VEC_RESIZE(vec, _cap) \ + void *tmp = realloc((vec).data, (_cap) * sizeof((vec).data[0])); \ + assert(tmp != NULL); \ + (vec).data = tmp; \ + assert((vec).data != NULL); \ (vec).cap = (_cap); -#define VEC_PUSH(vec, el) \ - if ((vec).cap == (vec).len) { \ - VEC_RESIZE((vec), MAX(16, (vec).len * 2)); \ - } \ +#define VEC_PUSH(vec, el) \ + if ((vec).cap == (vec).len) { \ + VEC_RESIZE((vec), MAX(16, (vec).len * 2)); \ + } \ (vec).data[(vec).len++] = (el); -#define VEC_POP(vec) \ +#define VEC_POP(vec) \ { (vec).len--; } #define VEC_BACK(vec) ((vec).data[(vec).len - 1]) -#define VEC_FREE(vec) \ - { \ - if ((vec).data != NULL) \ - free((vec).data); \ - (vec).data = NULL; \ +#define VEC_FREE(vec) \ + { \ + if ((vec).data != NULL) \ + free((vec).data); \ + (vec).data = NULL; \ } -#define VEC_CLEAR(vec) \ - { \ - for (uint32_t i = 0; i < (vec).len; i++) { \ - STRING_FREE((vec).data[i].word); \ - } \ - (vec).len = 0; \ +#define VEC_CLEAR(vec) \ + { \ + for (uint32_t i = 0; i < (vec).len; i++) { \ + STRING_FREE((vec).data[i].word); \ + } \ + (vec).len = 0; \ } -#define STRING_RESIZE(vec, _cap) \ - void *tmp = realloc((vec).data, ((_cap) + 1) * sizeof((vec).data[0])); \ - assert(tmp != NULL); \ - (vec).data = tmp; \ - memset((vec).data + (vec).len, 0, \ - (((_cap) + 1) - (vec).len) * sizeof((vec).data[0])); \ +#define STRING_RESIZE(vec, _cap) \ + void *tmp = realloc((vec).data, ((_cap) + 1) * sizeof((vec).data[0])); \ + assert(tmp != NULL); \ + (vec).data = tmp; \ + memset((vec).data + (vec).len, 0, (((_cap) + 1) - (vec).len) * sizeof((vec).data[0])); \ (vec).cap = (_cap); -#define STRING_GROW(vec, _cap) \ - if ((vec).cap < (_cap)) { \ - STRING_RESIZE((vec), (_cap)); \ +#define STRING_GROW(vec, _cap) \ + if ((vec).cap < (_cap)) { \ + STRING_RESIZE((vec), (_cap)); \ } -#define STRING_PUSH(vec, el) \ - if ((vec).cap == (vec).len) { \ - STRING_RESIZE((vec), MAX(16, (vec).len * 2)); \ - } \ +#define STRING_PUSH(vec, el) \ + if ((vec).cap == (vec).len) { \ + STRING_RESIZE((vec), MAX(16, (vec).len * 2)); \ + } \ (vec).data[(vec).len++] = (el); -#define STRING_FREE(vec) \ - if ((vec).data != NULL) \ - free((vec).data); \ +#define STRING_FREE(vec) \ + if ((vec).data != NULL) \ + free((vec).data); \ (vec).data = NULL; -#define STRING_CLEAR(vec) \ - { \ - (vec).len = 0; \ - memset((vec).data, 0, (vec).cap * sizeof(char)); \ +#define STRING_CLEAR(vec) \ + { \ + (vec).len = 0; \ + memset((vec).data, 0, (vec).cap * sizeof(char)); \ } enum TokenType { @@ -99,6 +96,8 @@ enum TokenType { HEREDOC_ARROW, HEREDOC_ARROW_DASH, NEWLINE, + OPENING_PAREN, + ESAC, ERROR_RECOVERY, }; @@ -108,9 +107,7 @@ typedef struct { char *data; } String; -static String string_new() { - return (String){.cap = 16, .len = 0, .data = calloc(1, sizeof(char) * 17)}; -} +static String string_new() { return (String){.cap = 16, .len = 0, .data = calloc(1, sizeof(char) * 17)}; } typedef struct { bool is_raw; @@ -153,9 +150,8 @@ static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } -static inline bool in_error_recovery(const bool *valid_symbols) { - return valid_symbols[ERROR_RECOVERY]; -} + +static inline bool in_error_recovery(const bool *valid_symbols) { return valid_symbols[ERROR_RECOVERY]; } static inline void reset_heredoc(Heredoc *heredoc) { heredoc->is_raw = false; @@ -178,8 +174,7 @@ static unsigned serialize(Scanner *scanner, char *buffer) { for (uint32_t i = 0; i < scanner->heredocs.len; i++) { Heredoc heredoc = scanner->heredocs.data[i]; - if (heredoc.delimiter.len + 3 + size >= - TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { + if (heredoc.delimiter.len + 3 + size >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { return 0; } @@ -187,7 +182,8 @@ static unsigned serialize(Scanner *scanner, char *buffer) { buffer[size++] = (char)heredoc.started; buffer[size++] = (char)heredoc.allows_indent; - buffer[size++] = (char)heredoc.delimiter.len; + memcpy(&buffer[size], &heredoc.delimiter.len, sizeof(uint32_t)); + size += sizeof(uint32_t); memcpy(&buffer[size], heredoc.delimiter.data, heredoc.delimiter.len); size += heredoc.delimiter.len; } @@ -215,11 +211,12 @@ static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { heredoc->started = buffer[size++]; heredoc->allows_indent = buffer[size++]; - uint32_t delimiter_len = (unsigned char)buffer[size++]; - STRING_GROW(heredoc->delimiter, delimiter_len); - memcpy(heredoc->delimiter.data, &buffer[size], delimiter_len); - heredoc->delimiter.len = delimiter_len; - size += delimiter_len; + memcpy(&heredoc->delimiter.len, &buffer[size], sizeof(uint32_t)); + size += sizeof(uint32_t); + STRING_GROW(heredoc->delimiter, heredoc->delimiter.len); + + memcpy(heredoc->delimiter.data, &buffer[size], heredoc->delimiter.len); + size += heredoc->delimiter.len; } assert(size == length); } @@ -242,7 +239,8 @@ static bool advance_word(TSLexer *lexer, String *unquoted_word) { } while (lexer->lookahead && - !(quote ? lexer->lookahead == quote : iswspace(lexer->lookahead))) { + !(quote ? lexer->lookahead == quote || lexer->lookahead == '\r' || lexer->lookahead == '\n' + : iswspace(lexer->lookahead))) { if (lexer->lookahead == '\\') { advance(lexer); if (!lexer->lookahead) { @@ -262,8 +260,7 @@ static bool advance_word(TSLexer *lexer, String *unquoted_word) { } static inline bool scan_bare_dollar(TSLexer *lexer) { - while (iswspace(lexer->lookahead) && lexer->lookahead != '\n' && - !lexer->eof(lexer)) { + while (iswspace(lexer->lookahead) && lexer->lookahead != '\n' && !lexer->eof(lexer)) { skip(lexer); } @@ -271,8 +268,7 @@ static inline bool scan_bare_dollar(TSLexer *lexer) { advance(lexer); lexer->result_symbol = BARE_DOLLAR; lexer->mark_end(lexer); - return iswspace(lexer->lookahead) || lexer->eof(lexer) || - lexer->lookahead == '\"'; + return iswspace(lexer->lookahead) || lexer->eof(lexer) || lexer->lookahead == '\"'; } return false; @@ -284,8 +280,7 @@ static bool scan_heredoc_start(Heredoc *heredoc, TSLexer *lexer) { } lexer->result_symbol = HEREDOC_START; - heredoc->is_raw = lexer->lookahead == '\'' || lexer->lookahead == '"' || - lexer->lookahead == '\\'; + heredoc->is_raw = lexer->lookahead == '\'' || lexer->lookahead == '"' || lexer->lookahead == '\\'; bool found_delimiter = advance_word(lexer, &heredoc->delimiter); if (!found_delimiter) @@ -304,12 +299,10 @@ static bool scan_heredoc_end_identifier(Heredoc *heredoc, TSLexer *lexer) { STRING_PUSH(heredoc->current_leading_word, lexer->lookahead); advance(lexer); } - return strcmp(heredoc->current_leading_word.data, - heredoc->delimiter.data) == 0; + return strcmp(heredoc->current_leading_word.data, heredoc->delimiter.data) == 0; } -static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, - enum TokenType middle_type, +static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, enum TokenType middle_type, enum TokenType end_type) { bool did_advance = false; Heredoc *heredoc = &VEC_BACK(scanner->heredocs); @@ -343,14 +336,12 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, lexer->result_symbol = middle_type; heredoc->started = true; advance(lexer); - if (isalpha(lexer->lookahead) || lexer->lookahead == '{' || - lexer->lookahead == '(') { + if (iswalpha(lexer->lookahead) || lexer->lookahead == '{' || lexer->lookahead == '(') { return true; } break; } - if (middle_type == HEREDOC_BODY_BEGINNING && - lexer->get_column(lexer) == 0) { + if (middle_type == HEREDOC_BODY_BEGINNING && lexer->get_column(lexer) == 0) { lexer->result_symbol = middle_type; heredoc->started = true; return true; @@ -370,8 +361,7 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, advance(lexer); } } - lexer->result_symbol = - heredoc->started ? middle_type : end_type; + lexer->result_symbol = heredoc->started ? middle_type : end_type; lexer->mark_end(lexer); if (scan_heredoc_end_identifier(heredoc, lexer)) { if (lexer->result_symbol == HEREDOC_END) { @@ -418,17 +408,15 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[CONCAT] && !in_error_recovery(valid_symbols)) { - if (!(lexer->lookahead == 0 || iswspace(lexer->lookahead) || - lexer->lookahead == '>' || lexer->lookahead == '<' || - lexer->lookahead == ')' || lexer->lookahead == '(' || - lexer->lookahead == ';' || lexer->lookahead == '&' || - lexer->lookahead == '|' || + if (!(lexer->lookahead == 0 || iswspace(lexer->lookahead) || lexer->lookahead == '>' || + lexer->lookahead == '<' || lexer->lookahead == ')' || lexer->lookahead == '(' || + lexer->lookahead == ';' || lexer->lookahead == '&' || lexer->lookahead == '|' || (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) || (lexer->lookahead == ']' && valid_symbols[CLOSING_BRACKET]))) { lexer->result_symbol = CONCAT; - // So for a`b`, we want to return a concat. We check if the 2nd - // backtick has whitespace after it, and if it does we return - // concat. + // So for a`b`, we want to return a concat. We check if the + // 2nd backtick has whitespace after it, and if it does we + // return concat. if (lexer->lookahead == '`') { lexer->mark_end(lexer); advance(lexer); @@ -443,13 +431,12 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } return iswspace(lexer->lookahead) || lexer->eof(lexer); } - // strings w/ expansions that contains escaped quotes or backslashes - // need this to return a concat + // strings w/ expansions that contains escaped quotes or + // backslashes need this to return a concat if (lexer->lookahead == '\\') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '"' || lexer->lookahead == '\'' || - lexer->lookahead == '\\') { + if (lexer->lookahead == '"' || lexer->lookahead == '\'' || lexer->lookahead == '\\') { return true; } if (lexer->eof(lexer)) { @@ -459,15 +446,13 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return true; } } - if (iswspace(lexer->lookahead) && valid_symbols[CLOSING_BRACE] && - !valid_symbols[EXPANSION_WORD]) { + if (iswspace(lexer->lookahead) && valid_symbols[CLOSING_BRACE] && !valid_symbols[EXPANSION_WORD]) { lexer->result_symbol = CONCAT; return true; } } - if (valid_symbols[IMMEDIATE_DOUBLE_HASH] && - !in_error_recovery(valid_symbols)) { + if (valid_symbols[IMMEDIATE_DOUBLE_HASH] && !in_error_recovery(valid_symbols)) { // advance two # and ensure not } after if (lexer->lookahead == '#') { lexer->mark_end(lexer); @@ -483,18 +468,14 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - if (valid_symbols[EXTERNAL_EXPANSION_SYM_HASH] && - !in_error_recovery(valid_symbols)) { - if (lexer->lookahead == '#' || lexer->lookahead == '=' || - lexer->lookahead == '!') { - lexer->result_symbol = - lexer->lookahead == '#' ? EXTERNAL_EXPANSION_SYM_HASH - : lexer->lookahead == '!' ? EXTERNAL_EXPANSION_SYM_BANG - : EXTERNAL_EXPANSION_SYM_EQUAL; + if (valid_symbols[EXTERNAL_EXPANSION_SYM_HASH] && !in_error_recovery(valid_symbols)) { + if (lexer->lookahead == '#' || lexer->lookahead == '=' || lexer->lookahead == '!') { + lexer->result_symbol = lexer->lookahead == '#' ? EXTERNAL_EXPANSION_SYM_HASH + : lexer->lookahead == '!' ? EXTERNAL_EXPANSION_SYM_BANG + : EXTERNAL_EXPANSION_SYM_EQUAL; advance(lexer); lexer->mark_end(lexer); - while (lexer->lookahead == '#' || lexer->lookahead == '=' || - lexer->lookahead == '!') { + while (lexer->lookahead == '#' || lexer->lookahead == '=' || lexer->lookahead == '!') { advance(lexer); } while (iswspace(lexer->lookahead)) { @@ -508,19 +489,15 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } if (valid_symbols[EMPTY_VALUE]) { - if (iswspace(lexer->lookahead) || lexer->eof(lexer) || - lexer->lookahead == ';' || lexer->lookahead == '&') { + if (iswspace(lexer->lookahead) || lexer->eof(lexer) || lexer->lookahead == ';' || lexer->lookahead == '&') { lexer->result_symbol = EMPTY_VALUE; return true; } } - if ((valid_symbols[HEREDOC_BODY_BEGINNING] || - valid_symbols[SIMPLE_HEREDOC_BODY]) && - scanner->heredocs.len > 0 && !VEC_BACK(scanner->heredocs).started && - !in_error_recovery(valid_symbols)) { - return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_BEGINNING, - SIMPLE_HEREDOC_BODY); + if ((valid_symbols[HEREDOC_BODY_BEGINNING] || valid_symbols[SIMPLE_HEREDOC_BODY]) && scanner->heredocs.len > 0 && + !VEC_BACK(scanner->heredocs).started && !in_error_recovery(valid_symbols)) { + return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_BEGINNING, SIMPLE_HEREDOC_BODY); } if (valid_symbols[HEREDOC_END] && scanner->heredocs.len > 0) { @@ -534,15 +511,12 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - if (valid_symbols[HEREDOC_CONTENT] && scanner->heredocs.len > 0 && - VEC_BACK(scanner->heredocs).started && + if (valid_symbols[HEREDOC_CONTENT] && scanner->heredocs.len > 0 && VEC_BACK(scanner->heredocs).started && !in_error_recovery(valid_symbols)) { - return scan_heredoc_content(scanner, lexer, HEREDOC_CONTENT, - HEREDOC_END); + return scan_heredoc_content(scanner, lexer, HEREDOC_CONTENT, HEREDOC_END); } - if (valid_symbols[HEREDOC_START] && !in_error_recovery(valid_symbols) && - scanner->heredocs.len > 0) { + if (valid_symbols[HEREDOC_START] && !in_error_recovery(valid_symbols) && scanner->heredocs.len > 0) { return scan_heredoc_start(&VEC_BACK(scanner->heredocs), lexer); } @@ -592,7 +566,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { advance(lexer); bool advanced_once = false; - while (isalpha(lexer->lookahead)) { + while (iswalpha(lexer->lookahead)) { advanced_once = true; advance(lexer); } @@ -617,18 +591,15 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && - scan_bare_dollar(lexer)) { + if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && scan_bare_dollar(lexer)) { return true; } } - if ((valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || - valid_symbols[HEREDOC_ARROW]) && + if ((valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || valid_symbols[HEREDOC_ARROW]) && !valid_symbols[REGEX_NO_SLASH] && !in_error_recovery(valid_symbols)) { for (;;) { - if ((lexer->lookahead == ' ' || lexer->lookahead == '\t' || - lexer->lookahead == '\r' || + if ((lexer->lookahead == ' ' || lexer->lookahead == '\t' || lexer->lookahead == '\r' || (lexer->lookahead == '\n' && !valid_symbols[NEWLINE])) && !valid_symbols[EXPANSION_WORD]) { skip(lexer); @@ -647,8 +618,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '\n') { skip(lexer); } else { - if (lexer->lookahead == '\\' && - valid_symbols[EXPANSION_WORD]) { + if (lexer->lookahead == '\\' && valid_symbols[EXPANSION_WORD]) { goto expansion_word; } return false; @@ -660,14 +630,12 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { // no '*', '@', '?', '-', '$', '0', '_' if (!valid_symbols[EXPANSION_WORD] && - (lexer->lookahead == '*' || lexer->lookahead == '@' || - lexer->lookahead == '?' || lexer->lookahead == '-' || + (lexer->lookahead == '*' || lexer->lookahead == '@' || lexer->lookahead == '?' || lexer->lookahead == '-' || lexer->lookahead == '0' || lexer->lookahead == '_')) { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '=' || lexer->lookahead == '[' || - lexer->lookahead == ':' || lexer->lookahead == '-' || - lexer->lookahead == '%' || lexer->lookahead == '#' || + if (lexer->lookahead == '=' || lexer->lookahead == '[' || lexer->lookahead == ':' || + lexer->lookahead == '-' || lexer->lookahead == '%' || lexer->lookahead == '#' || lexer->lookahead == '/') { return false; } @@ -730,8 +698,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - if (is_number && valid_symbols[FILE_DESCRIPTOR] && - (lexer->lookahead == '>' || lexer->lookahead == '<')) { + if (is_number && valid_symbols[FILE_DESCRIPTOR] && (lexer->lookahead == '>' || lexer->lookahead == '<')) { lexer->result_symbol = FILE_DESCRIPTOR; return true; } @@ -740,8 +707,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '+') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '=' || lexer->lookahead == ':' || - valid_symbols[CLOSING_BRACE]) { + if (lexer->lookahead == '=' || lexer->lookahead == ':' || valid_symbols[CLOSING_BRACE]) { lexer->result_symbol = VARIABLE_NAME; return true; } @@ -751,10 +717,11 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return false; } if (lexer->lookahead == '=' || lexer->lookahead == '[' || - (lexer->lookahead == ':' && !valid_symbols[CLOSING_BRACE]) || + (lexer->lookahead == ':' && !valid_symbols[CLOSING_BRACE] && + !valid_symbols[OPENING_PAREN]) || // TODO(amaanq): more cases for regular word chars but not variable + // names for function words, only handling : for now? #235 lexer->lookahead == '%' || - (lexer->lookahead == '#' && !is_number) || - lexer->lookahead == '@' || + (lexer->lookahead == '#' && !is_number) || lexer->lookahead == '@' || (lexer->lookahead == '-' && valid_symbols[CLOSING_BRACE])) { lexer->mark_end(lexer); lexer->result_symbol = VARIABLE_NAME; @@ -765,21 +732,19 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->mark_end(lexer); advance(lexer); lexer->result_symbol = VARIABLE_NAME; - return isalpha(lexer->lookahead); + return iswalpha(lexer->lookahead); } } return false; } - if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && - scan_bare_dollar(lexer)) { + if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && scan_bare_dollar(lexer)) { return true; } regex: - if ((valid_symbols[REGEX] || valid_symbols[REGEX_NO_SLASH] || - valid_symbols[REGEX_NO_SPACE]) && + if ((valid_symbols[REGEX] || valid_symbols[REGEX_NO_SLASH] || valid_symbols[REGEX_NO_SPACE]) && !in_error_recovery(valid_symbols)) { if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SPACE]) { while (iswspace(lexer->lookahead)) { @@ -788,11 +753,14 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } if ((lexer->lookahead != '"' && lexer->lookahead != '\'') || - (lexer->lookahead == '$' && valid_symbols[REGEX_NO_SLASH])) { + ((lexer->lookahead == '$' || lexer->lookahead == '\'') && valid_symbols[REGEX_NO_SLASH]) || + (lexer->lookahead == '\'' && valid_symbols[REGEX_NO_SPACE])) { typedef struct { bool done; bool advanced_once; bool found_non_alnumdollarunderdash; + bool last_was_escape; + bool in_single_quote; uint32_t paren_depth; uint32_t bracket_depth; uint32_t brace_depth; @@ -808,43 +776,71 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->mark_end(lexer); - State state = {false, false, false, 0, 0, 0}; + State state = {false, false, false, false, false, 0, 0, 0}; while (!state.done) { + if (state.in_single_quote) { + if (lexer->lookahead == '\'') { + state.in_single_quote = false; + advance(lexer); + lexer->mark_end(lexer); + } + } switch (lexer->lookahead) { + case '\\': + state.last_was_escape = true; + break; case '\0': return false; case '(': state.paren_depth++; + state.last_was_escape = false; break; case '[': state.bracket_depth++; + state.last_was_escape = false; break; case '{': - state.brace_depth++; + if (!state.last_was_escape) { + state.brace_depth++; + } + state.last_was_escape = false; break; case ')': if (state.paren_depth == 0) { state.done = true; } state.paren_depth--; + state.last_was_escape = false; break; case ']': if (state.bracket_depth == 0) { state.done = true; } state.bracket_depth--; + state.last_was_escape = false; break; case '}': if (state.brace_depth == 0) { state.done = true; } state.brace_depth--; + state.last_was_escape = false; + break; + case '\'': + // Enter or exit a single-quoted string. + state.in_single_quote = !state.in_single_quote; + advance(lexer); + state.advanced_once = true; + state.last_was_escape = false; + continue; + default: + state.last_was_escape = false; break; } if (!state.done) { if (valid_symbols[REGEX]) { - bool was_space = iswspace(lexer->lookahead); + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); advance(lexer); state.advanced_once = true; if (!was_space || state.paren_depth > 0) { @@ -859,13 +855,12 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '\\') { advance(lexer); state.advanced_once = true; - if (!lexer->eof(lexer) && lexer->lookahead != '[' && - lexer->lookahead != '/') { + if (!lexer->eof(lexer) && lexer->lookahead != '[' && lexer->lookahead != '/') { advance(lexer); lexer->mark_end(lexer); } } else { - bool was_space = iswspace(lexer->lookahead); + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); advance(lexer); state.advanced_once = true; if (!was_space) { @@ -895,15 +890,13 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return true; } } else { - if (iswspace(lexer->lookahead) && - state.paren_depth == 0) { + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); + if (was_space && state.paren_depth == 0) { lexer->mark_end(lexer); lexer->result_symbol = REGEX_NO_SPACE; return state.found_non_alnumdollarunderdash; } - if (!iswalnum(lexer->lookahead) && - lexer->lookahead != '$' && - lexer->lookahead != '-' && + if (!iswalnum(lexer->lookahead) && lexer->lookahead != '$' && lexer->lookahead != '-' && lexer->lookahead != '_') { state.found_non_alnumdollarunderdash = true; } @@ -913,10 +906,9 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - lexer->result_symbol = - valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH - : valid_symbols[REGEX_NO_SPACE] ? REGEX_NO_SPACE - : REGEX; + lexer->result_symbol = valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH + : valid_symbols[REGEX_NO_SPACE] ? REGEX_NO_SPACE + : REGEX; if (valid_symbols[REGEX] && !state.advanced_once) { return false; } @@ -925,29 +917,26 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } extglob_pattern: - if (valid_symbols[EXTGLOB_PATTERN]) { + if (valid_symbols[EXTGLOB_PATTERN] && !in_error_recovery(valid_symbols)) { // first skip ws, then check for ? * + @ ! while (iswspace(lexer->lookahead)) { skip(lexer); } - if (lexer->lookahead == '?' || lexer->lookahead == '*' || - lexer->lookahead == '+' || lexer->lookahead == '@' || - lexer->lookahead == '!' || lexer->lookahead == '-' || - lexer->lookahead == ')' || lexer->lookahead == '\\' || - lexer->lookahead == '.') { + if (lexer->lookahead == '?' || lexer->lookahead == '*' || lexer->lookahead == '+' || lexer->lookahead == '@' || + lexer->lookahead == '!' || lexer->lookahead == '-' || lexer->lookahead == ')' || lexer->lookahead == '\\' || + lexer->lookahead == '.' || lexer->lookahead == '[' || (isalpha(lexer->lookahead))) { if (lexer->lookahead == '\\') { advance(lexer); - if ((iswspace(lexer->lookahead) || lexer->lookahead == '"') && - lexer->lookahead != '\r' && lexer->lookahead != '\n') { + if ((iswspace(lexer->lookahead) || lexer->lookahead == '"') && lexer->lookahead != '\r' && + lexer->lookahead != '\n') { advance(lexer); } else { return false; } } - if (lexer->lookahead == ')' && - scanner->last_glob_paren_depth == 0) { + if (lexer->lookahead == ')' && scanner->last_glob_paren_depth == 0) { lexer->mark_end(lexer); advance(lexer); @@ -957,31 +946,50 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } lexer->mark_end(lexer); - advance(lexer); + bool was_non_alpha = !iswalpha(lexer->lookahead); + if (lexer->lookahead != '[') { + // no esac + if (lexer->lookahead == 'e') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == 's') { + advance(lexer); + if (lexer->lookahead == 'a') { + advance(lexer); + if (lexer->lookahead == 'c') { + advance(lexer); + if (iswspace(lexer->lookahead)) { + return false; + } + } + } + } + } else { + advance(lexer); + } + } // -\w is just a word, find something else special if (lexer->lookahead == '-') { lexer->mark_end(lexer); advance(lexer); - while (isalnum(lexer->lookahead)) { + while (iswalnum(lexer->lookahead)) { advance(lexer); } - if (lexer->lookahead == ')' || lexer->lookahead == '\\' || - lexer->lookahead == '.') { + if (lexer->lookahead == ')' || lexer->lookahead == '\\' || lexer->lookahead == '.') { return false; } lexer->mark_end(lexer); } // case item -) or *) - if (lexer->lookahead == ')' && - scanner->last_glob_paren_depth == 0) { + if (lexer->lookahead == ')' && scanner->last_glob_paren_depth == 0) { lexer->mark_end(lexer); advance(lexer); if (iswspace(lexer->lookahead)) { lexer->result_symbol = EXTGLOB_PATTERN; - return true; + return was_non_alpha; } } @@ -1004,28 +1012,25 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '|') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '\\' || lexer->lookahead == '\r' || - lexer->lookahead == '\n') { - lexer->result_symbol = EXTGLOB_PATTERN; - return true; - } + lexer->result_symbol = EXTGLOB_PATTERN; + return true; } - if (!isalnum(lexer->lookahead) && lexer->lookahead != '(' && - lexer->lookahead != '"' && lexer->lookahead != '[' && - lexer->lookahead != '?' && lexer->lookahead != '/' && - lexer->lookahead != '\\' && lexer->lookahead != '_') { + if (!iswalnum(lexer->lookahead) && lexer->lookahead != '(' && lexer->lookahead != '"' && + lexer->lookahead != '[' && lexer->lookahead != '?' && lexer->lookahead != '/' && + lexer->lookahead != '\\' && lexer->lookahead != '_' && lexer->lookahead != '*') { return false; } typedef struct { bool done; + bool saw_non_alphadot; uint32_t paren_depth; uint32_t bracket_depth; uint32_t brace_depth; } State; - State state = {false, scanner->last_glob_paren_depth, 0, 0}; + State state = {false, was_non_alpha, scanner->last_glob_paren_depth, 0, 0}; while (!state.done) { switch (lexer->lookahead) { case '\0': @@ -1059,37 +1064,53 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { break; } + if (lexer->lookahead == '|') { + lexer->mark_end(lexer); + advance(lexer); + if (state.paren_depth == 0 && state.bracket_depth == 0 && state.brace_depth == 0) { + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + } + if (!state.done) { bool was_space = iswspace(lexer->lookahead); if (lexer->lookahead == '$') { lexer->mark_end(lexer); + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } advance(lexer); - if (lexer->lookahead == '(' || - lexer->lookahead == '{') { + if (lexer->lookahead == '(' || lexer->lookahead == '{') { lexer->result_symbol = EXTGLOB_PATTERN; scanner->last_glob_paren_depth = state.paren_depth; - return true; + return state.saw_non_alphadot; } } if (was_space) { lexer->mark_end(lexer); lexer->result_symbol = EXTGLOB_PATTERN; scanner->last_glob_paren_depth = 0; - return true; + return state.saw_non_alphadot; } if (lexer->lookahead == '"') { lexer->mark_end(lexer); lexer->result_symbol = EXTGLOB_PATTERN; scanner->last_glob_paren_depth = 0; - return true; + return state.saw_non_alphadot; } if (lexer->lookahead == '\\') { + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } advance(lexer); - if (iswspace(lexer->lookahead) || - lexer->lookahead == '"') { + if (iswspace(lexer->lookahead) || lexer->lookahead == '"') { advance(lexer); } } else { + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } advance(lexer); } if (!was_space) { @@ -1100,7 +1121,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->result_symbol = EXTGLOB_PATTERN; scanner->last_glob_paren_depth = 0; - return true; + return state.saw_non_alphadot; } scanner->last_glob_paren_depth = 0; @@ -1118,8 +1139,8 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '$') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '{' || lexer->lookahead == '(' || - lexer->lookahead == '\'' || iswalnum(lexer->lookahead)) { + if (lexer->lookahead == '{' || lexer->lookahead == '(' || lexer->lookahead == '\'' || + iswalnum(lexer->lookahead)) { lexer->result_symbol = EXPANSION_WORD; return advanced_once; } @@ -1132,30 +1153,26 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return advanced_once || advance_once_space; } - if (lexer->lookahead == '(' && - !(advanced_once || advance_once_space)) { + if (lexer->lookahead == '(' && !(advanced_once || advance_once_space)) { lexer->mark_end(lexer); advance(lexer); while (lexer->lookahead != ')' && !lexer->eof(lexer)) { - // if we find a $( or ${ assume this is valid and is a - // garbage concatenation of some weird word + an expansion + // if we find a $( or ${ assume this is valid and is + // a garbage concatenation of some weird word + an + // expansion // I wonder where this can fail if (lexer->lookahead == '$') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '{' || - lexer->lookahead == '(' || - lexer->lookahead == '\'' || + if (lexer->lookahead == '{' || lexer->lookahead == '(' || lexer->lookahead == '\'' || iswalnum(lexer->lookahead)) { lexer->result_symbol = EXPANSION_WORD; return advanced_once; } advanced_once = true; } else { - advanced_once = - advanced_once || !iswspace(lexer->lookahead); - advance_once_space = - advance_once_space || iswspace(lexer->lookahead); + advanced_once = advanced_once || !iswspace(lexer->lookahead); + advance_once_space = advance_once_space || iswspace(lexer->lookahead); advance(lexer); } } @@ -1180,8 +1197,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return false; } advanced_once = advanced_once || !iswspace(lexer->lookahead); - advance_once_space = - advance_once_space || iswspace(lexer->lookahead); + advance_once_space = advance_once_space || iswspace(lexer->lookahead); advance(lexer); } } @@ -1234,21 +1250,17 @@ void *tree_sitter_bash_external_scanner_create() { return scanner; } -bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { +bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { Scanner *scanner = (Scanner *)payload; return scan(scanner, lexer, valid_symbols); } -unsigned tree_sitter_bash_external_scanner_serialize(void *payload, - char *state) { +unsigned tree_sitter_bash_external_scanner_serialize(void *payload, char *state) { Scanner *scanner = (Scanner *)payload; return serialize(scanner, state); } -void tree_sitter_bash_external_scanner_deserialize(void *payload, - const char *state, - unsigned length) { +void tree_sitter_bash_external_scanner_deserialize(void *payload, const char *state, unsigned length) { Scanner *scanner = (Scanner *)payload; deserialize(scanner, state, length); } diff --git a/src/treesitter-bash/src/tree_sitter/parser.h b/src/treesitter-bash/src/tree_sitter/parser.h index d21032599..17b4fde98 100644 --- a/src/treesitter-bash/src/tree_sitter/parser.h +++ b/src/treesitter-bash/src/tree_sitter/parser.h @@ -129,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -139,8 +146,7 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; \ - eof = lexer->eof(lexer); + lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ diff --git a/src/treesitter-bash/test/corpus/commands.txt b/src/treesitter-bash/test/corpus/commands.txt index 5b3a78320..63e95ce2d 100644 --- a/src/treesitter-bash/test/corpus/commands.txt +++ b/src/treesitter-bash/test/corpus/commands.txt @@ -101,6 +101,8 @@ exec {VIRTWL[0]}<&- {VIRTWL[1]}>&- grep 2>/dev/null -q "^/usr/bin/scponly$" /etc/shells +x /dev/null -q "^/usr/bin/scponly$" /etc/shells (file_redirect) (file_redirect)) (redirected_statement - (command - (command_name (word)) + (command (command_name (word)) (concatenation (word) (word) (word) (number) (word) (word))) (file_redirect - (concatenation (word) (word) (word) (number) (word) (word))) + (concatenation + (word) + (word) + (word) + (number) + (word) + (word))) (file_redirect)) (redirected_statement (command (command_name (word))) - (file_redirect (file_descriptor) (word) (word) (string (string_content)) (word)))) + (file_redirect (file_descriptor) (word) + (word) + (string + (string_content)) + (word))) + (redirected_statement + (command (command_name (word))) + (file_redirect (word) + (word) + (word) + (word)))) =============================== File redirects (noclobber override) diff --git a/src/treesitter-bash/test/corpus/literals.txt b/src/treesitter-bash/test/corpus/literals.txt index b753958e7..1b0780ee8 100644 --- a/src/treesitter-bash/test/corpus/literals.txt +++ b/src/treesitter-bash/test/corpus/literals.txt @@ -147,6 +147,7 @@ C="${D%*}" F="${#!}" G=${H,,[I]} J=${K^^[L]} +L="${M/'N'*/O}" -------------------------------------------------------------------------------- @@ -250,7 +251,14 @@ J=${K^^[L]} (variable_name) (expansion (variable_name) - (regex)))) + (regex))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (regex) + (word))))) ================================================================================ More Variable expansions with operators @@ -271,6 +279,7 @@ ${var:pos:len} ${MATRIX:$(($RANDOM%${#MATRIX})):1} ${PKG_CONFIG_LIBDIR:-${ESYSROOT}/usr/$(get_libdir)/pkgconfig} ${ver_str::${#ver_str}-${#not_match}} +${value#\{sd.cicd.} -------------------------------------------------------------------------------- @@ -363,7 +372,12 @@ ${ver_str::${#ver_str}-${#not_match}} (variable_name) (binary_expression (expansion (variable_name)) - (expansion (variable_name))))))) + (expansion (variable_name)))))) + (command + (command_name + (expansion + (variable_name) + (regex))))) ================================================================================ Variable expansions in strings @@ -614,6 +628,7 @@ ${dict_langs:+;} ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} ${id}${2+ ${2}} ${BRANDING_GCC_PKGVERSION/(/(Gentoo ${PVR}${extvers}, } # look at that parenthesis! +some-command ${foo:+--arg <(printf '%s\n' "$foo")} -------------------------------------------------------------------------------- @@ -651,7 +666,18 @@ ${BRANDING_GCC_PKGVERSION/(/(Gentoo ${PVR}${extvers}, } # look at that parenthes (variable_name) (regex) (concatenation (word) (expansion (variable_name)) (expansion (variable_name)) (word))))) - (comment)) + (comment) + (command + (command_name (word)) + (expansion + (variable_name) + (concatenation + (word) + (process_substitution + (command + (command_name (word)) + (raw_string) + (string (simple_expansion (variable_name))))))))) ================================================================================ Variable Expansions: Regex @@ -665,6 +691,8 @@ echo ${LIB_DEPEND//\[static-libs(+)]} ${ALL_LLVM_TARGETS[@]/%/(-)?} filterdiff -p1 ${paths[@]/#/-i } ${cflags//-O? /$(get-flag O) } +curf="${f%'-roff2html'*}.html" +reff="${f/'-roff2html'*/'-ref'}.html" -------------------------------------------------------------------------------- @@ -678,7 +706,13 @@ ${cflags//-O? /$(get-flag O) } (command (command_name (word)) (word) (expansion (subscript (variable_name) (word)) (word))) (command (command_name - (expansion (variable_name) (regex) (command_substitution (command (command_name (word)) (word))) (word))))) + (expansion (variable_name) (regex) (command_substitution (command (command_name (word)) (word))) (word)))) + (variable_assignment + (variable_name) + (string (expansion (variable_name) (raw_string) (regex)) (string_content))) + (variable_assignment + (variable_name) + (string (expansion (variable_name) (regex) (raw_string)) (string_content)))) ================================================================================ Words ending with '$' diff --git a/src/treesitter-bash/test/corpus/statements.txt b/src/treesitter-bash/test/corpus/statements.txt index 726afe4b6..b530fd4e2 100644 --- a/src/treesitter-bash/test/corpus/statements.txt +++ b/src/treesitter-bash/test/corpus/statements.txt @@ -835,7 +835,7 @@ esac (case_item (word) (command (command_name (word)) (word)))) (case_statement (string (simple_expansion (variable_name))) - (case_item (word) (word) (command (command_name (word))))) + (case_item (extglob_pattern) (extglob_pattern) (command (command_name (word))))) (case_statement (simple_expansion (variable_name)) (case_item @@ -1051,6 +1051,8 @@ Test commands with regexes [[ ${file} == @(*${GENTOO_PATCH_NAME}.tar.xz|*.asc|*.sig) ]] [[ $RUBY_TARGETS != *$( eselect ruby show | awk 'NR==2' | tr -d ' ' )* ]] [[ " ${m[0]##*/}" =~ ^(\ ${skip_files[*]/%/.*|\\} ) ]] +[[ ' boop xyz' =~ ' boop '(.*)$ ]] +[[ $b = foo* ]] -------------------------------------------------------------------------------- @@ -1113,7 +1115,9 @@ Test commands with regexes (command (command_name (word)) (word) (raw_string)))) (extglob_pattern))) (test_command - (binary_expression (string (expansion (subscript (variable_name) (number)) (regex))) (regex)))) + (binary_expression (string (expansion (subscript (variable_name) (number)) (regex))) (regex))) + (test_command (binary_expression (raw_string) (regex))) + (test_command (binary_expression (simple_expansion (variable_name)) (regex)))) ================================================================================ Test command paren statefulness with a case glob @@ -1211,6 +1215,19 @@ function do_yet_another_thing { do_nothing() { return 0; } +foo::bar() { + echo what +} + +foo::baz() { + echo how +} + +assert() + if ! $1; then + return 1 + fi + -------------------------------------------------------------------------------- (program @@ -1267,6 +1284,32 @@ do_nothing() { return 0; } (function_definition (word) (compound_statement + (command + (command_name + (word)) + (number)))) + (function_definition + (word) + (compound_statement + (command + (command_name + (word)) + (word)))) + (function_definition + (word) + (compound_statement + (command + (command_name + (word)) + (word)))) + (function_definition + (word) + (if_statement + (negated_command + (command + (command_name + (simple_expansion + (variable_name))))) (command (command_name (word)) @@ -1341,6 +1384,7 @@ Variable declaration: export export PATH export FOOBAR PATH="$PATH:/usr/foobar/bin" +export $FOO:$BAR -------------------------------------------------------------------------------- @@ -1354,7 +1398,14 @@ export FOOBAR PATH="$PATH:/usr/foobar/bin" (string (simple_expansion (variable_name)) - (string_content))))) + (string_content)))) + (declaration_command + (concatenation + (simple_expansion + (variable_name)) + (word) + (simple_expansion + (variable_name))))) ================================================================================ Variable declaration: command substitution with semi-colon